diff --git a/parse/train/519VBzfEaKW/519VBzfEaKW.md b/parse/train/519VBzfEaKW/519VBzfEaKW.md new file mode 100644 index 0000000000000000000000000000000000000000..6eb61184d974de6035616edc61d30ad615722ca9 --- /dev/null +++ b/parse/train/519VBzfEaKW/519VBzfEaKW.md @@ -0,0 +1,219 @@ +# InfoGCL: Information-Aware Graph Contrastive Learning + +Dongkuan $\mathbf { X } \mathbf { u } ^ { 1 }$ Wei Cheng2 Dongsheng Luo1 Haifeng Chen2 Xiang Zhang1 1The Pennsylvania State University 2NEC Labs America 1{dux19,dul262,xzz89}@psu.edu 2{weicheng,haifeng}@nec-labs.com + +# Abstract + +Various graph contrastive learning models have been proposed to improve the performance of learning tasks on graph datasets in recent years. While effective and prevalent, these models are usually carefully customized. In particular, although all recent researches create two contrastive views, they differ greatly in view augmentations, architectures, and objectives. It remains an open question how to build your graph contrastive learning model from scratch for particular graph learning tasks and datasets. In this work, we aim to fill this gap by studying how graph information is transformed and transferred during the contrastive learning process and proposing an information-aware graph contrastive learning framework called InfoGCL. The key point of this framework is to follow the Information Bottleneck principle to reduce the mutual information between contrastive parts while keeping task-relevant information intact at both the levels of the individual module and the entire framework so that the information loss during graph representation learning can be minimized. We show for the first time that all recent graph contrastive learning methods can be unified by our framework. We empirically validate our theoretical analysis on both node and graph classification benchmark datasets, and demonstrate that our algorithm significantly outperforms the state-of-the-arts. + +# 1 Introduction + +Inspired by their success in the vision and language domains, contrastive learning methods have been wildly adopted by recent progress in graph learning to improve the performance of a variety of tasks [42, 13, 22]. In a nutshell, these methods typically learn representations by creating two augmented views of a graph and maximizing the feature consistency between the two views. Inheriting the advantages of self-supervised learning, contrastive learning relieves graph representation learning from its reliance on label information in graph domain, where label information can be very costly or even impossible to collect while unlabeled/partially labeled data is common, such as chemical graph data [28]. Graph contrastive learning methods have achieved similar (and even better) performance as compared to the equivalent methods trained with labels on benchmark graph datasets [42, 13, 6]. + +Despite being effective and prevalent, existing graph contrastive learning models differ mostly in augmented view design, encoding architecture, and contrastive objective (refer to Table 1 in Appendix for more comparisons). For a learning task, it usually requires a substantial degree of domain expertise to carefully design and customize these modules for the specific dataset. For example, while both DGI [33] and InfoGraph [28] seek to obtain graph representations by maximizing the mutual information between patch-level and graph-level representations, they adopt different graph encoders, GCN [15] and GIN [38] respectively. mvgrl [13] applies graph diffusion convolution to construct the augmented view, while GCC [22] and GRACE [45] adopt subgraph sampling and graph perturbation, respectively. + +![](images/31affb98767cd1b70acccd0192dfa07ba19c7212a4703b9817ace38dcc8ae1d7.jpg) +Figure 1: Graph contrastive learning approaches consist of three stages: 1) a graph $\mathcal { G }$ undergoes view augmentation, $q _ { i } ( \cdot ) , q _ { j } ( \cdot )$ , to obtain two semantically similar views, $\mathbf { v } _ { i }$ , $\mathbf { v } _ { j }$ . 2) the two views are fed into view encoder networks, $f _ { i } ( \cdot )$ , $f _ { j } ( \cdot )$ , to extract latent representations, ${ \bf z } _ { i } , { \bf z } _ { j }$ . 3) the feature consistency between representations is maximized to optimize the objective function based on contrastive mode $( c _ { i } ( \cdot ) , c _ { j } ( \cdot ) )$ , where $c _ { i } ( \cdot ) , c _ { j } ( \cdot )$ are aggregation operations applied to representations. + +The main question this paper attempts to answer is: how to perform contrastive learning for your learning tasks on specific graph datasets? However, answering this question is challenging. First, contrastive learning consists of multiple components, such as view augmentation and information encoding. For each of them, there are various choices. Numerous variations make it difficult to design models that are both robust and efficient. Existing graph contrastive learning approaches are carefully designed for different learning tasks on different datasets, however, none of them studies the guiding principles for choosing the best components. Second, graph data has unique properties that distinguish it from other types of data, such as rich structural information and highly diverse distribution [33, 28, 11, 10]. Thus, it is desirable to design the contrastive learning model that fits your graph data properties, even without any domain knowledge of the data. + +We propose to address these challenges via Information Bottleneck (IB) [31], which provides a crucial principle for representation learning. Specifically, IB encourages the representations to be maximally informative about the target in the downstream task, which helps keep task-relevant information. Concurrently, IB discourages the representation learning from acquiring the task-irrelevant information from the input data, which is related to the idea of minimal sufficient statistics [27]. However, different from the typical representation learning, there are two information flows involved in the two augmented views in contrastive learning. Therefore, we extend the previous IB work [37, 43] and propose InfoGCL, an information-aware contrastive learning framework for graph data. + +To study how information is transformed and transferred, we decouple a typical graph contrastive learning model into three sequential modules (as shown in Figure 1): view augmentation, view encoding, and representation contrasting. We further formalize how to find the optimal of the three modules into three optimization problems. To build the optimal graph contrastive learning model for the particular dataset and task, we argue that it is necessary and sufficient to minimize the mutual information between contrastive representations while maximizing task-relevant information at the levels of both individual module and entire framework. Our work is also motivated by the InfoMin theory [30], which suggests that a good set of views for contrastive learning in the vision domain should share the minimal information necessary to perform well at the downstream task. Beyond view selection, our work extends InfoMin to suggest principles of selecting view encodings and contrastive modes for graph learning considering the unique properties of graph data. + +We suggest practically feasible principles to find the optimal modules in graph contrastive learning and show that all recent graph contrastive learning methods can be unified by these principles: i) the augmented views should contain as much task-relevant information as possible, while they should share as little information as possible; ii) the view encoder should be task-relevant and simple as much as possible; iii) the contrastive mode should keep task-relevant information as much as possible after contrasting. Besides, we also investigate the role of negative samples in graph contrastive learning and argue that negative samples are not necessarily required, especially when graph data is not extremely sparse. Our proposed method, InfoGCL, is validated on a rich set of benchmark datasets for both node-level and graph-level tasks, where we analyze its ability to capture the unique structural properties of the graph data. The results demonstrate that our algorithm achieves highly competitive performance with up to $5 . 2 \%$ relative improvement in accuracy on graph classification task and competitive results on node classification task over the state-of-the-art unsupervised methods. + +# 2 Related Work + +Graph Contrastive Learning. Some recent research efforts in graph domain have been attracted by the success of contrastive learning in vision and language domains [3, 8, 4]. A number of graph contrastive learning approaches have been proposed [28, 22, 42, 13]. Despite all of them creating two views and targeting at maximizing the feature disagreement between the two views, these methods are carefully designed and differ in various aspects. Deep graph Infomax (DGI) [33] applied the InfoMax principle [18] to graph data by contrasting the representations of node-level and graph-level for node classification tasks. Different from DGI, InfoGraph [28] aims at node classification tasks and it contrasts the representations of graph-level and substructure-level of different granularity. In addition, DGI and InfoGraph use different graph encoders to extract latent representations. mvgrl [13] studies both node and graph classification tasks. It transforms the adjacency matrix to a diffusion matrix and treat the two matrices as two congruent views. However, in GCC [22] and GRACE [45], subgraph sampling and graph perturbation are used to create the augmented views. GraphCL [42] explores the view augmentations approaches for graph contrastive learning. Specifically, it studies the approaches of node dropping, edge perturbation, attribute masking, and subgraph sampling. A recent work [44] also studies graph data augmentations. However, it focuses on graph neural networks for node classification and does not study the contrastive learning framework. Our method differs from them. We aim to answer the question how to perform contrastive learning for your graph data and tasks. Instead of carefully designing the architectures, we decouple typical graph contrastive learning into three stages and provide our InfoGCL principles to analyze the optimality theoretically and practically. + +Information Bottleneck. Our method is related to the Information Bottleneck (IB) theory [31], which aims to find the best trade-off between accuracy and complexity when summarizing a random variable. IB has been recently used to study the deep learning approaches [26, 37, 43]. Specifically, IB expresses the trade-off between the mutual information measures $I ( \mathbf { D } , \mathbf { Z } )$ and $I ( \mathbf { Z } , \mathbf { y } )$ as + +$$ +\operatorname* { m a x } \mathbf { I } \mathbf { B } _ { \beta } = - I ( \mathbf { D } ; \mathbf { Z } ) + \beta I ( \mathbf { Z } ; \mathbf { y } ) , +$$ + +where D, Z, y are the input, the latent representation and the task label, respectively. $\theta$ is a hyperparameter. In other words, IB aims to learn representation $\mathbf { Z }$ that is maximally expressive about y, while being minimally expressive about $\mathbf { D }$ . More recently, there are some efforts applying the IB theory to graph representation learning. [37] aims to generate both expressive and robust graph representations, while [43] studies the subgraph recognition problem. In contrast, our work focuses on graph contrastive learning, where the two augmented views make the optimization objective (information trade-off) different. Our work is also related to the idea of minimal sufficient statistics [27], which has been recently studied in the vision domain [30], claiming that a good set of image views should share the minimal information necessary to perform well at the downstream task. Different from [30], we focus on the graph domain and propose three stages considering the unique properties of graph data. + +# 3 Preliminaries and Notations + +Graph Representation Learning. A graph is denoted by $\mathcal { G } = \left( \mathbf { A } , \mathbf { X } \right)$ . $\mathbf { A } \in \mathbb { R } ^ { n \times n }$ is the adjacency matrix. $\mathbf { X } \in \mathbb { R } ^ { n \times d }$ is the node attribute matrix, where $d$ is the attribute dimension. In this work, we focus on both node-level and graph-level tasks. For node-level task, given graph $\mathcal { G }$ and the labels of a subset of nodes, denoted by ${ \bf Y } _ { v }$ , the goal is to learn the latent representation $\mathbf { z } _ { v }$ for each node $v$ such that $\mathbf { z } _ { v }$ preserves both network structures and node attributes, which can be further used to predict ${ \bf Y } _ { v }$ . For graph-level task, given a set of graphs $\mathbb { G } = \{ \mathcal { G } ^ { 1 } , \mathcal { G } ^ { 2 } , \cdot \cdot \cdot \mathrm ~ \} \}$ and the labels of some graphs, denoted by $\mathbf { Y } _ { g }$ , the goal is to learn the latent representation $\mathbf { z } _ { g }$ for each graph such that $\mathbf { z } _ { g }$ can be used to predict $\mathbf { Y } _ { g }$ . Typically, the graph data is fed into graph neural networks (GNNs) to generate the representations, such as $\mathbf { z } _ { g } = \mathbf { G } \mathbf { N } \mathbf { N } \mathbf { s } ( \mathcal { G } )$ . + +![](images/31bbe816886e04d01d4fbcb07da4238bee69f393597ea0505da4fb5f0de51ece.jpg) +Figure 2: Illustration of optimal views. (Left) The relationships between graph $\mathcal { G }$ , two views, $\mathbf { v } _ { i }$ , $\mathbf { v } _ { j }$ , and task $y$ in terms of information entropy. A, B, C, D, E are overlapping areas. Two views are contained by graph because views are functions of graph. (Middle) A, B, E become null when Eqs. (4)-(5) hold, which indicates the views and graph share the same amount of task-relevant information. (Right) C further becomes null when Eq. (3) holds, which indicates all the shared information between views is task-relevant, i.e., the views are optimal. + +Graph Contrastive Learning. Given an input graph, graph contrastive learning aims to learn the representations of graph or nodes (for graph-level or node-level tasks respectively) through maximizing the feature consistency between two augmented views of the input graph via contrastive loss in the latent space. We decouple a typical graph contrastive learning model into three sequential modules. + +(i) View augmentation. Graph $\mathcal { G }$ undergoes data augmentation $q ( \cdot )$ to obtain two views $\mathbf { v } _ { i }$ , $\mathbf { v } _ { j }$ , i.e., $\mathbf { v } _ { i } \sim q _ { i } ( \mathcal { G } )$ and $\mathbf { v } _ { j } \sim q _ { j } ( { \mathcal { G } } )$ . A view is represented as graph data, such as $\mathbf { v } _ { i } = ( \mathbf { A } _ { v _ { i } } , \mathbf { X } _ { v _ { i } } )$ , where $\mathbf { A } _ { v _ { i } } \in \mathbb { R } ^ { n \times n }$ and $\mathbf { X } _ { v _ { i } } \in \mathbb { R } ^ { n \times d }$ . In practice, view augmentation approaches include node dropping, edge perturbation, subgraph sampling, etc. + +(ii) View encoding. Graph-level or node-level latent representation is extracted from views $\mathbf { v } _ { i } , \mathbf { v } _ { j }$ by using the view encoder networks $f ( \cdot )$ (a GNN backbone plus a projection MLP), i.e., $\mathbf { z } _ { i } \sim f _ { i } ( \mathbf { v } _ { i } )$ and $\mathbf { z } _ { j } \sim f _ { j } ( \mathbf { v } _ { j } )$ . The two encoders might or might not share parameters depending on whether they are from the same domain. + +(iii) Representation contrasting. Given the latent representations, a contrastive loss is optimized to score the positive pairs $\mathbf { z } _ { i } , \mathbf { z } _ { j }$ higher compared to other negative pairs. Typically, the negative pairs are constructed from the augmented views of other graphs in the same minibatch. The InfoNCE loss [21] has been adopted as one of popular contrastive losses, which is defined as: + +$$ +\mathcal { L } _ { N C E } = - \mathbb { E } \left[ l o g \frac { e x p ( h ( \mathbf { z } _ { i , n } , \mathbf { z } _ { j , n } ) ) } { \sum _ { n ^ { \prime } = 1 } ^ { N } e x p ( h ( \mathbf { z } _ { i , n } , \mathbf { z } _ { j , n ^ { \prime } } ) ) } \right] , +$$ + +where $h ( \cdot )$ is a contrasting operation to score the agreement between two representations. Theoretically, minimizing the InfoNCE loss equivalently maximizes a lower bound on the mutual information between the views of positive pairs. In other words, $I ( \mathbf { z } _ { i } , \mathbf { z } _ { j } ) \geqslant l o g ( N ) - \mathcal { L } _ { N C E }$ , where $I ( \cdot )$ measures the mutual information. + +# 4 Information-Aware Graph Contrastive Learning + +In this paper, we study how to perform contrastive learning for specific graph tasks and datasets. In particular, we attempt to answer the following questions for graph contrastive learning: (i) What is the optimal augmented views? (ii) What is the optimal view encoder? (iii) What is the optimal contrastive mode? + +# 4.1 View Augmentation + +The goal of view augmentation is to create realistically rational data via the transformation approaches that do not affect the semantic label. Compared to the augmentation in other domains, graph view augmentation needs to consider the structural information of graph data, such as the node, the edge, and the subgraph. There are various graph view augmentation methods proposed recently. We follow a similar definition used in [42] to categorize four kinds of view augmentation approaches for graph data. Node dropping discards a certain part of nodes along with their edges in the input graph to create a new graph view. Edge perturbation perturbs the connectivity in the graph via adding or dropping partial edges. Attribute masking masks part of node attributes and assumes that the missing attributes can be well predicted by the remaining ones. Subgraph sampling samples a subgraph from the input graph. The rationale behind these approaches is that the semantic meaning of graph has certain robustness to graph perturbation. + +The augmented views generated in the graph contrastive framework are typically used in a separate downstream task. To characterize what views are optimal for a downstream task, we define the optimality of views. The main motivation is: the optimal augmented views should contain the most task-relevant information, and the information shared between views should only be task-relevant. + +Corollary 1. (Optimal Augmented Views) For a downstream task $T$ whose goal is to predict a semantic label $y$ , the optimal views, $\mathbf { v } _ { i } ^ { * } , \mathbf { v } _ { j } ^ { * } ,$ , generated from the input graph $\mathcal { G }$ are the solutions to the following optimization problem : + +$$ +\begin{array} { c } { { ( \mathbf { v } _ { i } ^ { * } , \mathbf { v } _ { j } ^ { * } ) = \underset { \mathbf { v } _ { i } , \mathbf { v } _ { j } } { \arg \operatorname* { m i n } I ( \mathbf { v } _ { i } ; \mathbf { v } _ { j } ) } } } \\ { { s . t . ~ I ( \mathbf { v } _ { i } ; y ) = I ( \mathbf { v } _ { j } ; y ) } } \\ { { I ( \mathbf { v } _ { i } ; y ) = I ( \mathcal { G } ; y ) } } \end{array} +$$ + +This says that for the optimal graph views, the amount of information shared between them is minimized (Eq. (3)), while the two views contain the same amount of information with respect to $y$ (Eq. (4)), which is also the amount of information that the input gprah contains about the task (Eq. (5)). The illustration of the optimal views is shown in Figure 2 and the proof is in the Appendix. + +# 4.2 View Encoding + +View encoding aims to extract the latent representations of nodes or graphs via feeding the data of two views into view encoder networks such that the generated representations preserve both structure and attribute information in the views. The view encoders are quite flexible in graph contrastive learning and typically they are GCN [15], GAT [32], or GIN [38], etc. + +The representations extracted via view encoding are further utilized to optimize the objective function of contrastive learning. After well trained, the view encoders are used to generate the graph/node representations for a downstream task. To characterize what encoders are optimal, we define the optimality of view encoders for graph contrastive learning. The main motivation is: the representation generated by the optimal encoder for a view should keep all the shared information by the two contrastive views, meanwhile the kept information is all task-relevant. + +Corollary 2. (Optimal View Encoder) Given the optimal views, $\mathbf { v } _ { i } ^ { * } , \mathbf { v } _ { j } ^ { * }$ , for a downstream task $T$ whose goal is to predict a semantic label $y$ , the optimal view encoder for view $\mathbf { v } _ { i } ^ { * }$ is the solution to the following optimization problem : + +$$ +\boldsymbol f _ { i } ^ { * } = \arg \operatorname* { m i n } _ { \boldsymbol f _ { i } } I ( f _ { i } ( \mathbf { v } _ { i } ^ { * } ) ; \mathbf { v } _ { i } ^ { * } ) +$$ + +$$ +s . t . \ I ( f _ { i } ( \mathbf { v } _ { i } ^ { * } ) ; \mathbf { v } _ { j } ^ { * } ) = I ( \mathbf { v } _ { i } ^ { * } ; \mathbf { v } _ { j } ^ { * } ) +$$ + +It indicates that for the optimal view encoder, the amount of information shared between the optimal view and the extracted representation is minimized (Eq. (6)), while the information shared between the two optimal views is kept after the encoding process of one view (Eq. (7)). The illustration of the optimal encoder is shown in Figure 3 and the proof is illustrated in the Appendix. + +# 4.3 Representation Contrasting + +To allow flexible contrasting for graph data, we consider contrastive modes similar to [13]. A contrastive mode is denoted by $( c _ { i } ( \cdot ) , c _ { j } ( \cdot ) )$ , where $c _ { i } ( \cdot )$ , $c _ { j } ( \cdot )$ are the aggregation operations applied to the representations extracted by view encoders, The contrastive modes are unique to graph data because of the structural information inside a graph. Specifically, we consider five contrastive modes. In global-global mode, the graph representations from two views are contrasted. Thus, $c _ { i } ( \cdot )$ , $c _ { j } ( \cdot )$ are averaging aggregation operations in this mode. In local-global mode, we contrast the node representations from one view with the graph representations from the other view. Thus, $c _ { i } ( \cdot )$ , $c _ { j } ( \cdot )$ are the identical transformation and averaging aggregation operations, respectively. In local-local mode, the node representations from two views are contrasted. In multi-scale mode, we contrast graph representation of one view with the intermediate representation from the other. In hybrid mode, both global-global and local-global are applied. + +![](images/a7fd63d27d26cca071ead706f3fd728ce0211916cd89519025b1dee6ce661218.jpg) +Figure 3: Illustration of optimal view encoding. (Left) The relationships between two (optimal) views, $\mathbf { v } _ { i } ^ { * }$ , $\mathbf { v } _ { j } ^ { * }$ , task $y$ , and representation $\mathbf { z } _ { i }$ in terms of information entropy. A, B, C are null because the two views are optimal here. $\mathbf { z } _ { i }$ is contained by view $\mathbf { v } _ { i } ^ { * }$ because representations are functions of views. (Middle) $\mathbf { z } _ { i }$ covers $\mathbf { D }$ when Eq. (7) holds, which indicates the shared information between views is kept after encoding. $( R i g h t )$ View $\mathbf { z } _ { i }$ further exactly covers $\mathbf { D }$ and the view encoding becomes optimal, i.e., $\mathbf { z } _ { i } ^ { * }$ , which indicates all the information shared between view $\mathbf { v } _ { i } ^ { * }$ and representation $\mathbf { z } _ { i } ^ { * }$ is task-relevant. + +To characterize which mode is optimal, we define the optimality of contrastive mode for graph contrastive learning. The main motivation is: the optimal contrastive mode keeps the most taskrelevant information after the representations are aggregated. The proof is included in the Appendix. + +Corollary 3. (Optimal Contrastive Mode) Given the latent representations, $\mathbf { z } _ { i } ^ { * }$ , $\mathbf { z } _ { j } ^ { \ast }$ , extracted by the optimal view encoders, i.e., $\mathbf { z } _ { i } ^ { * } = f _ { i } ^ { * } ( \mathbf { v } _ { i } ^ { * } )$ , $\mathbf { z } _ { j _ { - } } ^ { * } = f _ { j _ { - } } ^ { * } ( \mathbf { v } _ { j } ^ { * } )$ , and a downstream task $T$ with label $y _ { \mathrm { { i } } }$ , the optimal contrastive mode is the solution to the following optimization problem, where $c _ { i }$ , $c _ { j }$ are the aggregation operations applied to the latent representations: + +$$ +\displaystyle ( c _ { i } ^ { * } , c _ { j } ^ { * } ) = \arg \operatorname* { m i n } _ { ( c _ { i } , c _ { j } ) } - I ( c _ { i } ( \mathbf { z } _ { i } ^ { * } ) ; c _ { j } ( \mathbf { z } _ { j } ^ { * } ) ) . +$$ + +# 4.4 InfoGCL Principle + +According to our proposed corollaries, we can theoretically design the optimal contrastive learning approach for our specific graph data and task. However, in real-world scenarios, the conditions to meet the exact optimality of contrastive learning is hard or even not practically possible to reach because of data noise and limited model capability. Therefore, we propose to achieve the optimal for each stage independently and practically, which is an approximation to achieve the original optimality. Specifically, we make the following propositions to address the questions of the optimal views, optimal view encoder, and optimal contrastive mode. + +Proposition 1. For a task $T$ with label $y _ { ; }$ , given a bunch of graph view augmentation methods, $\{ q _ { 1 } ( \cdot ) _ { : }$ , $q _ { 2 } ( \cdot ) , \cdot \cdot \cdot \}$ , that create two views $\mathbf { v } _ { i }$ , $\mathbf { v } _ { j }$ , the recommended augmentation methods are the ones, $q _ { i } ( \cdot )$ , $q _ { j } ( \cdot )$ , that maximize $I ( \mathbf { v } _ { i } ; y ) + I ( \mathbf { v } _ { j } ; y ) - I ( \mathbf { v } _ { i } ; \mathbf { v } _ { j } )$ , i.e., the area of $A { + } B { + } D$ in Figure 2. + +Proposition 2. Given a task $T$ with label $y$ and a set of view encoders, $\{ f _ { i } ^ { 1 } ( \cdot ) , f _ { i } ^ { 2 } ( \cdot ) , \cdot \cdot \cdot \ \} ,$ , that generate representation $\mathbf { z } _ { i }$ via taking view $\mathbf { v } _ { i }$ as input, the recommended view encoder is the one that maximizes the mutual information between $\mathbf { v } _ { i }$ , $\mathbf { z } _ { i }$ and $y$ . Symmetrically the same for view $\mathbf { v } _ { j }$ . + +Proposition 3. Given a task $T$ with label $y$ , the extracted representations, $z _ { i } , \ z _ { j }$ , and a set of aggregation operations, $\{ c _ { 1 } ( \cdot ) , c _ { 2 } ( \cdot ) , \cdot \cdot \cdot \ \} ,$ , the recommended contrastive mode is the one, $( c _ { i } , c _ { j } )$ , that has the largest amount of mutual information between $c _ { i } ( \mathbf { z } _ { i } )$ , $c _ { j } ( \mathbf { z } _ { j } )$ and $y$ . + +The qualitative and quantitative evaluation of these propositions are shown in Section 5.3. + +# 4.5 Role of Negative Samples + +Current graph contrastive learning approaches heavily depend on negative samples. However, recent progresses of contrastive learning in vision domain indicate that negative samples are not necessarily required [8, 4], of which the main benefit is to avoid careful treatment to retrieve the negative pairs. To study the influence of negative samples on graph contrastive learning, we follow the framework of SimSiam [4] to revise the loss function as Eq.(9). A very recent work [29] also studies graph contrastive learning without negative samples. Different from it, we focus on both node and graph classification tasks. + +Table 1: Dataset statistics. + +
Graph Task DatasetsNode Task Datasets
MUTAGPTC-MRIMDB-BIMDB-MNCI1COLLABCoraCiteseerPubmed
#Graphs1883441000150041105000111
#Nodes17.914.319.813.029.974.53327270819717
#Edges19.814.7193.165.91.133.04732542944338
#Classes222223673
+ +$$ +\mathcal { L } = - \frac { 1 } { N } \sum _ { n = 1 } ^ { N } \frac { \mathbf { z } _ { i , n } } { \| \mathbf { z } _ { i , n } \| } \cdot \frac { \mathbf { z } _ { j , n } } { \| \mathbf { z } _ { j , n } \| } , +$$ + +# 5 Experiments + +In this section, we evaluate our InfoGCL with a number of experiments. We first describe datasets, evaluation protocol, and experimental setup. Then, we present the experimental results on both node and graph classification. Last, we analyze our proposed principles via ablation study. + +# 5.1 Setup + +We use both graph classification and node classification benchmark datasets that are widely used in the existing graph contrastive learning approaches. The graph classification datasets include MUTAG [17], PTC-MR [17], IMDB-B [40], IMDB-M [40], NCI1 [34], and COLLAB [40]. MUTAG is a collection of nitroaromatic compounds represented as graphs, where vertices stand for atoms and edges represent bonds between atoms. PTC-MR is a collection of 344 chemical compounds which report the carcinogenicity for rats. IMDB-B and IMDB-M are two movie collaboration datasets, where nodes represent actors/actress and there is an edge between them if they appear in the same movie. In NCI1, graphs are the representation of chemical compounds, where vertices stand for atoms and edges represent bonds between atoms. COLLAB is a collaboration dataset, where researchers are nodes and an edge indicates collaboration between two researchers. The node classification datasets include Citeseer, Cora, and Pubmed [23]. All of them are citation networks, where nodes are documents and edges are citation links. These datasets are summarized in Table 1. + +We closely follow the evaluation protocol of previous state-of-the-art graph contrastive learning approaches. For graph classification, we report the mean 10-fold cross validation accuracy after 5 runs followed by a linear SVM. The linear SVM is trained by applying cross validation on training data folds and the best mean accuracy is reported. For node classification, we report the mean accuracy on test set after 50 runs of training followed by a linear neural network model. To make comparison fair, we adopt the basic setting of InfoGraph for graph classification. We conduct experiment with the values of the number of GNN layers, the number of epochs, batch size, the parameter C of SVM in the sets {2, 4, 8, 12}, {10, 20, 40, 100}, {32, 64, 128, 256} and $\{ 1 0 ^ { - 3 } , \ : \mathrm { { \dot { 1 } 0 ^ { - 2 } } } , . . . , \ : 1 0 ^ { 2 } , 1 0 ^ { 3 } \ : \ : \}$ , respectively. We adopt the basic setting of DGI for node classification. Specifically, we set the number of GNN layers to 1 and experiment with the batch size in the set {2, 4, 8}. The hidden dimension of representations is set to 512. We also apply the early stopping strategy. + +# 5.2 Experimental Results + +To evaluate our method InfoGCL on graph classification, we use thhree categories of baselines. The kernel approaches include shortest path kernel (SP) [2], Graphlet kernel (GK) [25], WeisfeilerLehman sub-tree kernel (WL) [24], deep graph kernels (DGK) [39], and multi-scale Laplacian kernel (MLG) [16]. The supervised baselines include GraphSAGE [12], GCN [15], GIN [38], GAT [32]. We also compare with the unsupervised approaches, including RandomWalk [7], node2vec [9], sub2vec [14], graph2vec [20], InfoGraph [28], GraphCL [42], and mvgrl [13]. Table 2 shows the graph classification results. We observe that our approach achieves the best results compared to other unsupervised approaches. Our approach also outperforms or matches the best kernel approaches across the datasets. Even compared with the supervised ones, our approach achieves the best in 2 out of 6 datasets and the results of our approach on other 4 dataset are among the top. + +Table 2: Graph classification results $( \% )$ + +
MethodMUTAGPTC-MRIMDB-BIMDB-MNCI1COLLAB
Kernel Approaches
SP85.2 ± 2.458.2 ± 2.455.6± 0.238.0±0.373.5 ± 0.1
GK81.7 ± 2.157.3 ± 1.465.9 ± 1.043.9 ± 0.466.0 ± 0.172.8± 0.3
WL80.7 ± 3.058.0 ± 0.572.3 ± 3.447.0 ± 0.580.0± 0.578.9 ± 1.9
DGK87.4 ± 2.760.1 ± 2.667.0 ± 0.644.6 ± 0.580.3 ± 0.573.1 ± 0.3
MLG87.9 ± 1.663.3 ± 1.566.6 ± 0.341.2 ± 0.080.8 ± 1.3
Supervised Approaches
GraphSAGE85.1 ± 7.6 63.9 ± 7.772.3 ± 5.350.9 ± 2.277.7 ± 1.568.3 ± 4.2
GCN85.6 ± 5.864.2 ± 4.374.0± 3.451.9 ± 3.880.2 ± 2.079.0 ± 1.8
GIN-089.4 ± 5.664.6 ± 7.075.1 ± 5.152.3 ± 2.882.7 ± 1.780.2 ± 1.9
GIN-e89.0 ± 6.063.7 ±8.274.3 ± 5.152.1 ± 3.682.7 ± 1.680.1 ± 1.9
GAT89.4 ± 6.166.7 ± 5.170.5 ± 2.347.8 ± 3.166.6 ± 2.267.4 ± 2.9
Unsupervised Approaches
RandomWalk83.7 ± 1.557.9 ± 1.350.7±0.334.7 ± 0.264.3 ± 0.3
node2vec72.6 ±10.258.6±8.050.2 ± 0.936.0 ± 0.754.9 ± 1.656.1 ± 0.2
sub2vec61.1 ± 15.860.0 ± 6.455.3 ± 1.536.7 ± 0.852.8 ±1.5-
graph2vec83.2 ±9.660.2 ± 6.971.1 ± 0.550.4 ± 0.975.4 ±1.2
InfoGraph89.0 ± 1.161.7 ± 1.473.0± 0.949.7 ± 0.576.2 ±1.470.7 ± 1.1
GraphCL86.8 ± 1.361.3 ± 2.171.1 ± 0.449.2 ± 0.677.9 ± 0.471.4 ± 1.2
mvgrl89.7 ± 1.162.5 ± 1.774.2 ± 0.751.2 ± 0.577.0 ± 0.876.0 ± 1.2
51.4 ± 0.880.2 ± 0.6
InfoGCL91.2 ± 1.363.5 ± 1.575.1 ± 0.980.0 ± 1.3
+ +Table 3: Node classification results $( \% )$ . + +
MethodCoraCiteseerPubmed
Supervised Approaches
MLP55.146.571.4
ICA75.169.173.9
LP68.045.363.0
ManiReg59.560.170.7
SemiEmb59.059.671.7
Planetoid75.764.777.2
Chebyshev81.269.874.4
GCN81.570.379.0
JKNet82.7 ± 0.473.0 ± 0.577.9 ± 0.4
GAT83.0 ± 0.772.5± 0.779.0 ± 0.3
Unsupervised Approaches
Linear47.9 ± 0.449.3 ± 0.269.1 ± 0.3
DeepWalk70.7 ± 0.651.4 ± 0.574.3 ± 0.9
GAE71.5 ± 0.465.8 ±0.472.1 ± 0.5
VERSE72.5 ± 0.355.5± 0.4
DGI83.8 ± 0.572.0 ± 0.677.9 ± 0.3
GraphCL82.5 ± 0.173.1 ± 0.2
mvgrl86.8 ± 0.573.3 ± 0.580.1 ± 0.7
InfoGCL83.5 ± 0.373.5 ± 0.479.1 ± 0.2
+ +For node classification tasks, we compare InfoGCL with some supervised approaches and unsupervised approaches. The supervised baselines include a simple MLP model, iterative classification algorithm (ICA) [19], manifold regularization (ManiReg) [1], semi-supervised embedding (SemiEmb) [35], Planetoid [41], Chebyshev [5], GCN, JKNet [36], GAT. Table 3 shows the node classification results. It is observed that our approach achieves the state-of-the-art results and competes the best one with respect to the existing unsupervised approaches. Compared to supervised baselines, our approach outperforms all the baselines. + +
MethodMUTAGIMDB-BCOLLABCoraCiteseerPubmed
InfoGCL (w/o neg)91.0 ± 1.475.1± 0.580.2 ±1.078.6 ± 0.470.4 ± 0.677.4±0.7
InfoGCL (w/ neg)91.2 ± 1.375.1 ± 0.980.0± 1.383.5±0.373.5 ± 0.479.1±0.2
+ +Table 4: Comparison between InfoGCL with negative samples and without negative samples. + +# 5.3 Evaluation of InfoGCL Principle + +We can unify the existing graph contrastive learning methods through the perspective of InfoGCL principle: all recent graph contrastive learning methods can be decoupled into three stages that implicitly follow the InfoGCL principle, though being different in model architecture design and optimization strategies. Below, we analyze some observations from several recent work. Because of the limited space, please refer to the Appendix for more results of the quantitative analysis. + +Obs. i. Composing a graph and its augmentation benefits downstream performance [42]. Compared to composing a graph and the graph itself, augmentation leads to smaller $I ( \mathbf { v } _ { i } ; \mathbf { v } _ { j } )$ (Proposition 1). + +Obs. ii. Composing different augmentations benefits more [42]. Compared to composing a graph and its augmentations, two augmentations further decrease $I ( \mathbf { v } _ { i } ; \mathbf { v } _ { j } )$ (Proposition 1). + +Obs. iii. Node dropping and subgraph sampling are generally beneficial across datasets [42]. When compared to attribute masking and edge perturbation, they change the semantic meaning of the graph relatively slightly, which leads to higher $I ( \mathbf { v } _ { i } ; y )$ , $I ( \mathbf { v } _ { j } ; \bar { y } )$ (Proposition 1). + +Obs. iv. Edge perturbation benefits social networks but hurts some biochemical molecules [42]. The semantic meaning of social networks are robust to edge perturbation. However, the semantic meaning of some biochemical molecules are determined by local connection pattern, where edge perturbation decreases $I ( \mathbf { v } _ { i } ; y )$ (Proposition 1). + +Obs. v. Contrasting node and graph representations consistently performs better than other contrastive modes across benchmarks [13]. Compared to other contrastive modes, node-graph (i.e., local-global) mode generally extracts more graph structure information, which benefits predicting task label $y$ (Proposition 3). + +# 5.4 Effect of Negative Samples + +To study the effect of negative samples on graph contrastive learning, we follow SimSiam [4] and design the objective as Eq. (9). We conduct experiments on three graph task and three node task datasets. The results are reported in Table 4. It is observed that the negative samples show little influence on the three graph task datasets, while performance drops on the three node task datasets, especially the Cora dataset. + +According to the dataset statistics summarized in Table 1, we see the networks of Cora, Citeseer, Pubmed are much sparser (in terms of network topology). Furthermore, we know the node features of these three datasets are also much sparser (one-hot encoding with high dimensionality). We speculate this because the contrastive learning models tends to collapse easier if negative samples are not used, especially when data is too sparse. Therefore,we make the hypothesis: negative samples benefit graph modeling, especially when i) network topology, and ii) node features are extremely sparse. + +# 6 Conclusion and Limitations + +We propose InfoGCL, an information-aware graph contrastive learning framework for graph contrastive learning. Existing graph contrastive learning approaches are usually carefully designed. We aim to answer how to perform contrastive learning for your learning tasks on specific graph data. Our method decouples the typical contrastive learning approaches into three sequential modules and provides the theoretical analysis for reaching the optimality. To address the questions of optimality in a practical way, we propose the InfoGCL principle, which is implicitly followed by all recent graph contrastive learning approaches. In addition, we explore the role of negative samples in graph contrastive learning and find negative samples are not necessarily required. Experiments on both node and graph benchmark datasets demonstrate the effectiveness of our method. Note that our method is not without limitations. We can further improve our method by designing better practical approximations to the theoretical optimality of graph contrastive learning. + +# Funding Transparency Statement + +This project was partially supported by NSF projects IIS-1707548 and CBET-1638320. + +# References + +[1] Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. J. Mach. Learn. Res, 7, 2006. [2] Karsten M. Borgwardt and Hans-Peter Kriegel. Shortest-path kernels on graphs. In ICDM, 2005. [3] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey E. Hinton. A simple framework for contrastive learning of visual representations. ICML, 2020. [4] Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. CoRR, abs/2011.10566, 2020. [5] Michaël Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks on graphs with fast localized spectral filtering. In NIPS, 2016. [6] Yuanqi Du, Shiyu Wang, Xiaojie Guo, Hengning Cao, Shujie Hu, Junji Jiang, Aishwarya Varala, Abhinav Angirekula, and Liang Zhao. Graphgt: Machine learning datasets for deep graph generation and transformation. 2021. [7] Gartner, Flach, and Wrobel. On graph kernels: Hardness results and efficient alternatives. In COLT Workshop, 2003. [8] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre Richemond, Elena Buchatskaya, Carl Doersch, Bernardo Pires, Zhaohan Guo, Mohammad Azar, Bilal Piot, Koray Kavukcuoglu, Rémi Munos, and Michal Valko. Bootstrap your own latent: A new approach to self-supervised learning. 2020. [9] Aditya Grover and Jure Leskovec. node2vec: Scalable feature learning for networks. In KDD, 2016. [10] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Property controllable variational autoencoder via invertible mutual dependence. In International Conference on Learning Representations, 2020. [11] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Deep generative models for spatial networks. In Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining, pages 505–515, 2021. [12] William L. Hamilton, Rex Ying, and Jure Leskovec. Inductive representation learning on large graphs. In NeurIPS, 2017. [13] Kaveh Hassani and Amir Hosein Khasahmadi. Contrastive multi-view representation learning on graphs. In ICML, pages 3451–3461. 2020. [14] Kexin Huang and Marinka Zitnik. Graph meta learning via local subgraphs. CoRR, abs/2006.07889, 2020. [15] Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In ICLR, 2017. [16] Risi Kondor and Horace Pan. The multiscale laplacian graph kernel. In NIPS, 2016. [17] Nils Kriege and Petra Mutzel. Subgraph matching kernels for attributed graphs. In ICML, 2012. [18] R. Linsker. Self-organization in a perceptual network. Computer, 21:105, 1988. [19] Qing Lu and Lise Getoor. Link-based classification. In ICML, 2003. + +[20] Annamalai Narayanan, Mahinthan Chandramohan, Rajasekar Venkatesan, Lihui Chen, Yang Liu, and Shantanu Jaiswal. graph2vec: Learning distributed representations of graphs. CoRR, 2017. +[21] Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. +[22] Jiezhong Qiu, Qibin Chen, Yuxiao Dong, Jing Zhang, Hongxia Yang, Ming Ding, Kuansan Wang, and Jie Tang. Gcc: Graph contrastive coding for graph neural network pre-training. KDD, 2020. +[23] Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina EliassiRad. Collective classification in network data. AI magazine, 29(3):93–93, 2008. +[24] Nino Shervashidze, Pascal Schweitzer, Erik Jan van Leeuwen, Kurt Mehlhorn, and Karsten M. Borgwardt. Weisfeiler-lehman graph kernels. J. Mach. Learn. Res, pages 2539–2561, 2011. +[25] Nino Shervashidze, S. V. N. Vishwanathan, Tobias Petri, Kurt Mehlhorn, and Karsten M. Borgwardt. Efficient graphlet kernels for large graph comparison. In AISTATS, 2009. +[26] Ravid Shwartz-Ziv and Naftali Tishby. Opening the black box of deep neural networks via information. arXiv preprint arXiv:1703.00810, 2017. +[27] Stefano Soatto and Alessandro Chiuso. Modeling visual representations: Defining properties and deep approximations. In ICLR, 2016. +[28] Fan-Yun Sun, Jordan Hoffman, Vikas Verma, and Jian Tang. Infograph: Unsupervised and semi-supervised graph-level representation learning via mutual information maximization. In ICLR, 2019. +[29] Shantanu Thakoor, Corentin Tallec, Mohammad Gheshlaghi Azar, Rémi Munos, Petar Velickovi ˇ c, and Michal Valko. Bootstrapped representation learning on graphs. ´ arXiv preprint arXiv:2102.06514, 2021. +[30] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What makes for good views for contrastive learning. In NeurIPS, volume 33, 2020. +[31] Naftali Tishby, Fernando C. N. Pereira, and William Bialek. The information bottleneck method. CoRR, physics/0004057, 2000. +[32] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´ Bengio. Graph Attention Networks. ICLR, 2018. +[33] Petar Velickovi ˇ c, William Fedus, William L. Hamilton, Pietro Liò, Yoshua Bengio, and R Devon ´ Hjelm. Deep Graph Infomax. In ICLR, 2019. +[34] Nikil Wale, Ian A Watson, and George Karypis. Comparison of descriptor spaces for chemical compound retrieval and classification. Knowledge and Information Systems, 14(3):347–375, 2008. +[35] Jason Weston, Frédéric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via semi-supervised embedding, 2013. +[36] Felix Wu, Tianyi Zhang 0007, Amauri H. Souza Jr., Christopher Fifty, Tao Yu, and Kilian Q. Weinberger. Simplifying graph convolutional networks. ICML, 2019. +[37] Tailin Wu, Hongyu Ren, Pan Li, and Jure Leskovec. Graph information bottleneck. CoRR, 2020. +[38] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In ICLR, 2019. +[39] Pinar Yanardag and S. V. N. Vishwanathan. Deep graph kernels. In KDD, 2015. +[40] Pinar Yanardag and SVN Vishwanathan. Deep graph kernels. In KDD, pages 1365–1374, 2015. +[41] Zhilin Yang, William W. Cohen, and Ruslan Salakhutdinov. Revisiting semi-supervised learning with graph embeddings. ICML, abs/1603.08861, 2016. +[42] Yuning You, Tianlong Chen, Yongduo Sui, Ting Chen, Zhangyang Wang, and Yang Shen. Graph contrastive learning with augmentations. In NeurIPS, volume 33, 2020. +[43] Junchi Yu, Tingyang Xu, Yu Rong, Yatao Bian, Junzhou Huang, and Ran He. Graph information bottleneck for subgraph recognition. ICLR, 2021. +[44] Tong Zhao, Yozen Liu, Leonardo Neves, Oliver Woodford, Meng Jiang, and Neil Shah. Data augmentation for graph neural networks. arXiv preprint arXiv:2006.06830, 2020. +[45] Yanqiao Zhu, Yichen Xu, Feng Yu, Qiang Liu, Shu Wu, and Liang Wang. Deep Graph Contrastive Representation Learning. In ICML Workshop, 2020. \ No newline at end of file diff --git a/parse/train/519VBzfEaKW/519VBzfEaKW_content_list.json b/parse/train/519VBzfEaKW/519VBzfEaKW_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..546aeb0c38f77ac83d6ec3355e15cd48a26d29c8 --- /dev/null +++ b/parse/train/519VBzfEaKW/519VBzfEaKW_content_list.json @@ -0,0 +1,1088 @@ +[ + { + "type": "text", + "text": "InfoGCL: Information-Aware Graph Contrastive Learning ", + "text_level": 1, + "bbox": [ + 200, + 122, + 799, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Dongkuan $\\mathbf { X } \\mathbf { u } ^ { 1 }$ Wei Cheng2 Dongsheng Luo1 Haifeng Chen2 Xiang Zhang1 1The Pennsylvania State University 2NEC Labs America 1{dux19,dul262,xzz89}@psu.edu 2{weicheng,haifeng}@nec-labs.com ", + "bbox": [ + 202, + 224, + 784, + 299 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 333, + 535, + 349 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Various graph contrastive learning models have been proposed to improve the performance of learning tasks on graph datasets in recent years. While effective and prevalent, these models are usually carefully customized. In particular, although all recent researches create two contrastive views, they differ greatly in view augmentations, architectures, and objectives. It remains an open question how to build your graph contrastive learning model from scratch for particular graph learning tasks and datasets. In this work, we aim to fill this gap by studying how graph information is transformed and transferred during the contrastive learning process and proposing an information-aware graph contrastive learning framework called InfoGCL. The key point of this framework is to follow the Information Bottleneck principle to reduce the mutual information between contrastive parts while keeping task-relevant information intact at both the levels of the individual module and the entire framework so that the information loss during graph representation learning can be minimized. We show for the first time that all recent graph contrastive learning methods can be unified by our framework. We empirically validate our theoretical analysis on both node and graph classification benchmark datasets, and demonstrate that our algorithm significantly outperforms the state-of-the-arts. ", + "bbox": [ + 233, + 367, + 766, + 602 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 635, + 310, + 651 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Inspired by their success in the vision and language domains, contrastive learning methods have been wildly adopted by recent progress in graph learning to improve the performance of a variety of tasks [42, 13, 22]. In a nutshell, these methods typically learn representations by creating two augmented views of a graph and maximizing the feature consistency between the two views. Inheriting the advantages of self-supervised learning, contrastive learning relieves graph representation learning from its reliance on label information in graph domain, where label information can be very costly or even impossible to collect while unlabeled/partially labeled data is common, such as chemical graph data [28]. Graph contrastive learning methods have achieved similar (and even better) performance as compared to the equivalent methods trained with labels on benchmark graph datasets [42, 13, 6]. ", + "bbox": [ + 174, + 669, + 825, + 794 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Despite being effective and prevalent, existing graph contrastive learning models differ mostly in augmented view design, encoding architecture, and contrastive objective (refer to Table 1 in Appendix for more comparisons). For a learning task, it usually requires a substantial degree of domain expertise to carefully design and customize these modules for the specific dataset. For example, while both DGI [33] and InfoGraph [28] seek to obtain graph representations by maximizing the mutual information between patch-level and graph-level representations, they adopt different graph encoders, GCN [15] and GIN [38] respectively. mvgrl [13] applies graph diffusion convolution to construct the augmented view, while GCC [22] and GRACE [45] adopt subgraph sampling and graph perturbation, respectively. ", + "bbox": [ + 174, + 800, + 825, + 897 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/31affb98767cd1b70acccd0192dfa07ba19c7212a4703b9817ace38dcc8ae1d7.jpg", + "image_caption": [ + "Figure 1: Graph contrastive learning approaches consist of three stages: 1) a graph $\\mathcal { G }$ undergoes view augmentation, $q _ { i } ( \\cdot ) , q _ { j } ( \\cdot )$ , to obtain two semantically similar views, $\\mathbf { v } _ { i }$ , $\\mathbf { v } _ { j }$ . 2) the two views are fed into view encoder networks, $f _ { i } ( \\cdot )$ , $f _ { j } ( \\cdot )$ , to extract latent representations, ${ \\bf z } _ { i } , { \\bf z } _ { j }$ . 3) the feature consistency between representations is maximized to optimize the objective function based on contrastive mode $( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )$ , where $c _ { i } ( \\cdot ) , c _ { j } ( \\cdot )$ are aggregation operations applied to representations. " + ], + "image_footnote": [], + "bbox": [ + 199, + 80, + 794, + 262 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 359, + 823, + 388 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The main question this paper attempts to answer is: how to perform contrastive learning for your learning tasks on specific graph datasets? However, answering this question is challenging. First, contrastive learning consists of multiple components, such as view augmentation and information encoding. For each of them, there are various choices. Numerous variations make it difficult to design models that are both robust and efficient. Existing graph contrastive learning approaches are carefully designed for different learning tasks on different datasets, however, none of them studies the guiding principles for choosing the best components. Second, graph data has unique properties that distinguish it from other types of data, such as rich structural information and highly diverse distribution [33, 28, 11, 10]. Thus, it is desirable to design the contrastive learning model that fits your graph data properties, even without any domain knowledge of the data. ", + "bbox": [ + 174, + 393, + 825, + 532 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We propose to address these challenges via Information Bottleneck (IB) [31], which provides a crucial principle for representation learning. Specifically, IB encourages the representations to be maximally informative about the target in the downstream task, which helps keep task-relevant information. Concurrently, IB discourages the representation learning from acquiring the task-irrelevant information from the input data, which is related to the idea of minimal sufficient statistics [27]. However, different from the typical representation learning, there are two information flows involved in the two augmented views in contrastive learning. Therefore, we extend the previous IB work [37, 43] and propose InfoGCL, an information-aware contrastive learning framework for graph data. ", + "bbox": [ + 174, + 537, + 825, + 650 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To study how information is transformed and transferred, we decouple a typical graph contrastive learning model into three sequential modules (as shown in Figure 1): view augmentation, view encoding, and representation contrasting. We further formalize how to find the optimal of the three modules into three optimization problems. To build the optimal graph contrastive learning model for the particular dataset and task, we argue that it is necessary and sufficient to minimize the mutual information between contrastive representations while maximizing task-relevant information at the levels of both individual module and entire framework. Our work is also motivated by the InfoMin theory [30], which suggests that a good set of views for contrastive learning in the vision domain should share the minimal information necessary to perform well at the downstream task. Beyond view selection, our work extends InfoMin to suggest principles of selecting view encodings and contrastive modes for graph learning considering the unique properties of graph data. ", + "bbox": [ + 174, + 656, + 825, + 809 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We suggest practically feasible principles to find the optimal modules in graph contrastive learning and show that all recent graph contrastive learning methods can be unified by these principles: i) the augmented views should contain as much task-relevant information as possible, while they should share as little information as possible; ii) the view encoder should be task-relevant and simple as much as possible; iii) the contrastive mode should keep task-relevant information as much as possible after contrasting. Besides, we also investigate the role of negative samples in graph contrastive learning and argue that negative samples are not necessarily required, especially when graph data is not extremely sparse. Our proposed method, InfoGCL, is validated on a rich set of benchmark datasets for both node-level and graph-level tasks, where we analyze its ability to capture the unique structural properties of the graph data. The results demonstrate that our algorithm achieves highly competitive performance with up to $5 . 2 \\%$ relative improvement in accuracy on graph classification task and competitive results on node classification task over the state-of-the-art unsupervised methods. ", + "bbox": [ + 174, + 814, + 823, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 160 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 180, + 321, + 196 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Graph Contrastive Learning. Some recent research efforts in graph domain have been attracted by the success of contrastive learning in vision and language domains [3, 8, 4]. A number of graph contrastive learning approaches have been proposed [28, 22, 42, 13]. Despite all of them creating two views and targeting at maximizing the feature disagreement between the two views, these methods are carefully designed and differ in various aspects. Deep graph Infomax (DGI) [33] applied the InfoMax principle [18] to graph data by contrasting the representations of node-level and graph-level for node classification tasks. Different from DGI, InfoGraph [28] aims at node classification tasks and it contrasts the representations of graph-level and substructure-level of different granularity. In addition, DGI and InfoGraph use different graph encoders to extract latent representations. mvgrl [13] studies both node and graph classification tasks. It transforms the adjacency matrix to a diffusion matrix and treat the two matrices as two congruent views. However, in GCC [22] and GRACE [45], subgraph sampling and graph perturbation are used to create the augmented views. GraphCL [42] explores the view augmentations approaches for graph contrastive learning. Specifically, it studies the approaches of node dropping, edge perturbation, attribute masking, and subgraph sampling. A recent work [44] also studies graph data augmentations. However, it focuses on graph neural networks for node classification and does not study the contrastive learning framework. Our method differs from them. We aim to answer the question how to perform contrastive learning for your graph data and tasks. Instead of carefully designing the architectures, we decouple typical graph contrastive learning into three stages and provide our InfoGCL principles to analyze the optimality theoretically and practically. ", + "bbox": [ + 174, + 210, + 825, + 488 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Information Bottleneck. Our method is related to the Information Bottleneck (IB) theory [31], which aims to find the best trade-off between accuracy and complexity when summarizing a random variable. IB has been recently used to study the deep learning approaches [26, 37, 43]. Specifically, IB expresses the trade-off between the mutual information measures $I ( \\mathbf { D } , \\mathbf { Z } )$ and $I ( \\mathbf { Z } , \\mathbf { y } )$ as ", + "bbox": [ + 174, + 494, + 825, + 550 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/7f84f97e8d7cee3894f71d06c6fa2677f0ffb3b47533ae9a9b4fe1e1c4da0508.jpg", + "text": "$$\n\\operatorname* { m a x } \\mathbf { I } \\mathbf { B } _ { \\beta } = - I ( \\mathbf { D } ; \\mathbf { Z } ) + \\beta I ( \\mathbf { Z } ; \\mathbf { y } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 375, + 558, + 619, + 575 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where D, Z, y are the input, the latent representation and the task label, respectively. $\\theta$ is a hyperparameter. In other words, IB aims to learn representation $\\mathbf { Z }$ that is maximally expressive about y, while being minimally expressive about $\\mathbf { D }$ . More recently, there are some efforts applying the IB theory to graph representation learning. [37] aims to generate both expressive and robust graph representations, while [43] studies the subgraph recognition problem. In contrast, our work focuses on graph contrastive learning, where the two augmented views make the optimization objective (information trade-off) different. Our work is also related to the idea of minimal sufficient statistics [27], which has been recently studied in the vision domain [30], claiming that a good set of image views should share the minimal information necessary to perform well at the downstream task. Different from [30], we focus on the graph domain and propose three stages considering the unique properties of graph data. ", + "bbox": [ + 173, + 582, + 825, + 734 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Preliminaries and Notations ", + "text_level": 1, + "bbox": [ + 176, + 753, + 439, + 770 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Graph Representation Learning. A graph is denoted by $\\mathcal { G } = \\left( \\mathbf { A } , \\mathbf { X } \\right)$ . $\\mathbf { A } \\in \\mathbb { R } ^ { n \\times n }$ is the adjacency matrix. $\\mathbf { X } \\in \\mathbb { R } ^ { n \\times d }$ is the node attribute matrix, where $d$ is the attribute dimension. In this work, we focus on both node-level and graph-level tasks. For node-level task, given graph $\\mathcal { G }$ and the labels of a subset of nodes, denoted by ${ \\bf Y } _ { v }$ , the goal is to learn the latent representation $\\mathbf { z } _ { v }$ for each node $v$ such that $\\mathbf { z } _ { v }$ preserves both network structures and node attributes, which can be further used to predict ${ \\bf Y } _ { v }$ . For graph-level task, given a set of graphs $\\mathbb { G } = \\{ \\mathcal { G } ^ { 1 } , \\mathcal { G } ^ { 2 } , \\cdot \\cdot \\cdot \\mathrm ~ \\} \\}$ and the labels of some graphs, denoted by $\\mathbf { Y } _ { g }$ , the goal is to learn the latent representation $\\mathbf { z } _ { g }$ for each graph such that $\\mathbf { z } _ { g }$ can be used to predict $\\mathbf { Y } _ { g }$ . Typically, the graph data is fed into graph neural networks (GNNs) to generate the representations, such as $\\mathbf { z } _ { g } = \\mathbf { G } \\mathbf { N } \\mathbf { N } \\mathbf { s } ( \\mathcal { G } )$ . ", + "bbox": [ + 174, + 785, + 825, + 912 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/31bbe816886e04d01d4fbcb07da4238bee69f393597ea0505da4fb5f0de51ece.jpg", + "image_caption": [ + "Figure 2: Illustration of optimal views. (Left) The relationships between graph $\\mathcal { G }$ , two views, $\\mathbf { v } _ { i }$ , $\\mathbf { v } _ { j }$ , and task $y$ in terms of information entropy. A, B, C, D, E are overlapping areas. Two views are contained by graph because views are functions of graph. (Middle) A, B, E become null when Eqs. (4)-(5) hold, which indicates the views and graph share the same amount of task-relevant information. (Right) C further becomes null when Eq. (3) holds, which indicates all the shared information between views is task-relevant, i.e., the views are optimal. " + ], + "image_footnote": [], + "bbox": [ + 207, + 71, + 794, + 217 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Graph Contrastive Learning. Given an input graph, graph contrastive learning aims to learn the representations of graph or nodes (for graph-level or node-level tasks respectively) through maximizing the feature consistency between two augmented views of the input graph via contrastive loss in the latent space. We decouple a typical graph contrastive learning model into three sequential modules. ", + "bbox": [ + 173, + 340, + 825, + 410 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(i) View augmentation. Graph $\\mathcal { G }$ undergoes data augmentation $q ( \\cdot )$ to obtain two views $\\mathbf { v } _ { i }$ , $\\mathbf { v } _ { j }$ , i.e., $\\mathbf { v } _ { i } \\sim q _ { i } ( \\mathcal { G } )$ and $\\mathbf { v } _ { j } \\sim q _ { j } ( { \\mathcal { G } } )$ . A view is represented as graph data, such as $\\mathbf { v } _ { i } = ( \\mathbf { A } _ { v _ { i } } , \\mathbf { X } _ { v _ { i } } )$ , where $\\mathbf { A } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times n }$ and $\\mathbf { X } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times d }$ . In practice, view augmentation approaches include node dropping, edge perturbation, subgraph sampling, etc. ", + "bbox": [ + 173, + 415, + 826, + 474 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(ii) View encoding. Graph-level or node-level latent representation is extracted from views $\\mathbf { v } _ { i } , \\mathbf { v } _ { j }$ by using the view encoder networks $f ( \\cdot )$ (a GNN backbone plus a projection MLP), i.e., $\\mathbf { z } _ { i } \\sim f _ { i } ( \\mathbf { v } _ { i } )$ and $\\mathbf { z } _ { j } \\sim f _ { j } ( \\mathbf { v } _ { j } )$ . The two encoders might or might not share parameters depending on whether they are from the same domain. ", + "bbox": [ + 173, + 479, + 825, + 536 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "(iii) Representation contrasting. Given the latent representations, a contrastive loss is optimized to score the positive pairs $\\mathbf { z } _ { i } , \\mathbf { z } _ { j }$ higher compared to other negative pairs. Typically, the negative pairs are constructed from the augmented views of other graphs in the same minibatch. The InfoNCE loss [21] has been adopted as one of popular contrastive losses, which is defined as: ", + "bbox": [ + 173, + 541, + 825, + 598 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d05cd4c4ab1aa019c5cbd7a3e1158215a8e8279c058e4b2ea6f80dbb348a503c.jpg", + "text": "$$\n\\mathcal { L } _ { N C E } = - \\mathbb { E } \\left[ l o g \\frac { e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n } ) ) } { \\sum _ { n ^ { \\prime } = 1 } ^ { N } e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n ^ { \\prime } } ) ) } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 603, + 656, + 646 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $h ( \\cdot )$ is a contrasting operation to score the agreement between two representations. Theoretically, minimizing the InfoNCE loss equivalently maximizes a lower bound on the mutual information between the views of positive pairs. In other words, $I ( \\mathbf { z } _ { i } , \\mathbf { z } _ { j } ) \\geqslant l o g ( N ) - \\mathcal { L } _ { N C E }$ , where $I ( \\cdot )$ measures the mutual information. ", + "bbox": [ + 174, + 652, + 825, + 708 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 Information-Aware Graph Contrastive Learning ", + "text_level": 1, + "bbox": [ + 173, + 727, + 612, + 744 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this paper, we study how to perform contrastive learning for specific graph tasks and datasets. In particular, we attempt to answer the following questions for graph contrastive learning: (i) What is the optimal augmented views? (ii) What is the optimal view encoder? (iii) What is the optimal contrastive mode? ", + "bbox": [ + 174, + 757, + 825, + 814 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 View Augmentation ", + "text_level": 1, + "bbox": [ + 174, + 830, + 349, + 845 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The goal of view augmentation is to create realistically rational data via the transformation approaches that do not affect the semantic label. Compared to the augmentation in other domains, graph view augmentation needs to consider the structural information of graph data, such as the node, the edge, and the subgraph. There are various graph view augmentation methods proposed recently. We follow a similar definition used in [42] to categorize four kinds of view augmentation approaches for graph data. Node dropping discards a certain part of nodes along with their edges in the input graph to create a new graph view. Edge perturbation perturbs the connectivity in the graph via adding or dropping partial edges. Attribute masking masks part of node attributes and assumes that the missing attributes can be well predicted by the remaining ones. Subgraph sampling samples a subgraph from the input graph. The rationale behind these approaches is that the semantic meaning of graph has certain robustness to graph perturbation. ", + "bbox": [ + 174, + 856, + 825, + 911 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 90, + 825, + 189 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The augmented views generated in the graph contrastive framework are typically used in a separate downstream task. To characterize what views are optimal for a downstream task, we define the optimality of views. The main motivation is: the optimal augmented views should contain the most task-relevant information, and the information shared between views should only be task-relevant. ", + "bbox": [ + 174, + 194, + 825, + 251 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Corollary 1. (Optimal Augmented Views) For a downstream task $T$ whose goal is to predict a semantic label $y$ , the optimal views, $\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ,$ , generated from the input graph $\\mathcal { G }$ are the solutions to the following optimization problem : ", + "bbox": [ + 173, + 256, + 825, + 299 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/125154646e54d112b4e2f0b360da0088cfe4aa1ee53731aad8f5655118279355.jpg", + "text": "$$\n\\begin{array} { c } { { ( \\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ) = \\underset { \\mathbf { v } _ { i } , \\mathbf { v } _ { j } } { \\arg \\operatorname* { m i n } I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } ) } } } \\\\ { { s . t . ~ I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathbf { v } _ { j } ; y ) } } \\\\ { { I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathcal { G } ; y ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 400, + 303, + 598, + 369 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This says that for the optimal graph views, the amount of information shared between them is minimized (Eq. (3)), while the two views contain the same amount of information with respect to $y$ (Eq. (4)), which is also the amount of information that the input gprah contains about the task (Eq. (5)). The illustration of the optimal views is shown in Figure 2 and the proof is in the Appendix. ", + "bbox": [ + 173, + 375, + 825, + 431 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 View Encoding ", + "text_level": 1, + "bbox": [ + 174, + 446, + 318, + 462 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "View encoding aims to extract the latent representations of nodes or graphs via feeding the data of two views into view encoder networks such that the generated representations preserve both structure and attribute information in the views. The view encoders are quite flexible in graph contrastive learning and typically they are GCN [15], GAT [32], or GIN [38], etc. ", + "bbox": [ + 174, + 472, + 825, + 529 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The representations extracted via view encoding are further utilized to optimize the objective function of contrastive learning. After well trained, the view encoders are used to generate the graph/node representations for a downstream task. To characterize what encoders are optimal, we define the optimality of view encoders for graph contrastive learning. The main motivation is: the representation generated by the optimal encoder for a view should keep all the shared information by the two contrastive views, meanwhile the kept information is all task-relevant. ", + "bbox": [ + 174, + 534, + 825, + 617 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Corollary 2. (Optimal View Encoder) Given the optimal views, $\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * }$ , for a downstream task $T$ whose goal is to predict a semantic label $y$ , the optimal view encoder for view $\\mathbf { v } _ { i } ^ { * }$ is the solution to the following optimization problem : ", + "bbox": [ + 174, + 623, + 825, + 665 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5d79d772c3dbbfc6cadd034a3c8060d85b65cdbbf856c42f70ed5b69a5848e92.jpg", + "text": "$$\n\\boldsymbol f _ { i } ^ { * } = \\arg \\operatorname* { m i n } _ { \\boldsymbol f _ { i } } I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { i } ^ { * } )\n$$", + "text_format": "latex", + "bbox": [ + 406, + 671, + 598, + 698 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/0d136a4cfea519c254df35fe0488265f4797a827eba594b8a1635cf351fa73ae.jpg", + "text": "$$\ns . t . \\ I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { j } ^ { * } ) = I ( \\mathbf { v } _ { i } ^ { * } ; \\mathbf { v } _ { j } ^ { * } )\n$$", + "text_format": "latex", + "bbox": [ + 393, + 700, + 602, + 719 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "It indicates that for the optimal view encoder, the amount of information shared between the optimal view and the extracted representation is minimized (Eq. (6)), while the information shared between the two optimal views is kept after the encoding process of one view (Eq. (7)). The illustration of the optimal encoder is shown in Figure 3 and the proof is illustrated in the Appendix. ", + "bbox": [ + 174, + 729, + 825, + 786 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 Representation Contrasting ", + "text_level": 1, + "bbox": [ + 176, + 803, + 406, + 818 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To allow flexible contrasting for graph data, we consider contrastive modes similar to [13]. A contrastive mode is denoted by $( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )$ , where $c _ { i } ( \\cdot )$ , $c _ { j } ( \\cdot )$ are the aggregation operations applied to the representations extracted by view encoders, The contrastive modes are unique to graph data because of the structural information inside a graph. Specifically, we consider five contrastive modes. In global-global mode, the graph representations from two views are contrasted. Thus, $c _ { i } ( \\cdot )$ , $c _ { j } ( \\cdot )$ are averaging aggregation operations in this mode. In local-global mode, we contrast the node representations from one view with the graph representations from the other view. Thus, $c _ { i } ( \\cdot )$ , $c _ { j } ( \\cdot )$ are the identical transformation and averaging aggregation operations, respectively. In local-local mode, the node representations from two views are contrasted. In multi-scale mode, we contrast graph representation of one view with the intermediate representation from the other. In hybrid mode, both global-global and local-global are applied. ", + "bbox": [ + 174, + 827, + 825, + 912 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/a7fd63d27d26cca071ead706f3fd728ce0211916cd89519025b1dee6ce661218.jpg", + "image_caption": [ + "Figure 3: Illustration of optimal view encoding. (Left) The relationships between two (optimal) views, $\\mathbf { v } _ { i } ^ { * }$ , $\\mathbf { v } _ { j } ^ { * }$ , task $y$ , and representation $\\mathbf { z } _ { i }$ in terms of information entropy. A, B, C are null because the two views are optimal here. $\\mathbf { z } _ { i }$ is contained by view $\\mathbf { v } _ { i } ^ { * }$ because representations are functions of views. (Middle) $\\mathbf { z } _ { i }$ covers $\\mathbf { D }$ when Eq. (7) holds, which indicates the shared information between views is kept after encoding. $( R i g h t )$ View $\\mathbf { z } _ { i }$ further exactly covers $\\mathbf { D }$ and the view encoding becomes optimal, i.e., $\\mathbf { z } _ { i } ^ { * }$ , which indicates all the information shared between view $\\mathbf { v } _ { i } ^ { * }$ and representation $\\mathbf { z } _ { i } ^ { * }$ is task-relevant. " + ], + "image_footnote": [], + "bbox": [ + 207, + 73, + 792, + 184 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 321, + 825, + 393 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To characterize which mode is optimal, we define the optimality of contrastive mode for graph contrastive learning. The main motivation is: the optimal contrastive mode keeps the most taskrelevant information after the representations are aggregated. The proof is included in the Appendix. ", + "bbox": [ + 173, + 398, + 825, + 441 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Corollary 3. (Optimal Contrastive Mode) Given the latent representations, $\\mathbf { z } _ { i } ^ { * }$ , $\\mathbf { z } _ { j } ^ { \\ast }$ , extracted by the optimal view encoders, i.e., $\\mathbf { z } _ { i } ^ { * } = f _ { i } ^ { * } ( \\mathbf { v } _ { i } ^ { * } )$ , $\\mathbf { z } _ { j _ { - } } ^ { * } = f _ { j _ { - } } ^ { * } ( \\mathbf { v } _ { j } ^ { * } )$ , and a downstream task $T$ with label $y _ { \\mathrm { { i } } }$ , the optimal contrastive mode is the solution to the following optimization problem, where $c _ { i }$ , $c _ { j }$ are the aggregation operations applied to the latent representations: ", + "bbox": [ + 173, + 446, + 825, + 505 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2c3af1818fa8af72de7349137d1173eb8200bc8d576eacace9f582cdf15289e2.jpg", + "text": "$$\n\\displaystyle ( c _ { i } ^ { * } , c _ { j } ^ { * } ) = \\arg \\operatorname* { m i n } _ { ( c _ { i } , c _ { j } ) } - I ( c _ { i } ( \\mathbf { z } _ { i } ^ { * } ) ; c _ { j } ( \\mathbf { z } _ { j } ^ { * } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 369, + 510, + 629, + 537 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.4 InfoGCL Principle ", + "text_level": 1, + "bbox": [ + 174, + 553, + 344, + 568 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "According to our proposed corollaries, we can theoretically design the optimal contrastive learning approach for our specific graph data and task. However, in real-world scenarios, the conditions to meet the exact optimality of contrastive learning is hard or even not practically possible to reach because of data noise and limited model capability. Therefore, we propose to achieve the optimal for each stage independently and practically, which is an approximation to achieve the original optimality. Specifically, we make the following propositions to address the questions of the optimal views, optimal view encoder, and optimal contrastive mode. ", + "bbox": [ + 173, + 577, + 825, + 675 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 1. For a task $T$ with label $y _ { ; }$ , given a bunch of graph view augmentation methods, $\\{ q _ { 1 } ( \\cdot ) _ { : }$ , $q _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\}$ , that create two views $\\mathbf { v } _ { i }$ , $\\mathbf { v } _ { j }$ , the recommended augmentation methods are the ones, $q _ { i } ( \\cdot )$ , $q _ { j } ( \\cdot )$ , that maximize $I ( \\mathbf { v } _ { i } ; y ) + I ( \\mathbf { v } _ { j } ; y ) - I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )$ , i.e., the area of $A { + } B { + } D$ in Figure 2. ", + "bbox": [ + 174, + 681, + 826, + 724 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 2. Given a task $T$ with label $y$ and a set of view encoders, $\\{ f _ { i } ^ { 1 } ( \\cdot ) , f _ { i } ^ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,$ , that generate representation $\\mathbf { z } _ { i }$ via taking view $\\mathbf { v } _ { i }$ as input, the recommended view encoder is the one that maximizes the mutual information between $\\mathbf { v } _ { i }$ , $\\mathbf { z } _ { i }$ and $y$ . Symmetrically the same for view $\\mathbf { v } _ { j }$ . ", + "bbox": [ + 174, + 729, + 826, + 773 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proposition 3. Given a task $T$ with label $y$ , the extracted representations, $z _ { i } , \\ z _ { j }$ , and a set of aggregation operations, $\\{ c _ { 1 } ( \\cdot ) , c _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,$ , the recommended contrastive mode is the one, $( c _ { i } , c _ { j } )$ , that has the largest amount of mutual information between $c _ { i } ( \\mathbf { z } _ { i } )$ , $c _ { j } ( \\mathbf { z } _ { j } )$ and $y$ . ", + "bbox": [ + 173, + 779, + 825, + 821 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The qualitative and quantitative evaluation of these propositions are shown in Section 5.3. ", + "bbox": [ + 173, + 827, + 759, + 842 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.5 Role of Negative Samples ", + "text_level": 1, + "bbox": [ + 174, + 857, + 388, + 872 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Current graph contrastive learning approaches heavily depend on negative samples. However, recent progresses of contrastive learning in vision domain indicate that negative samples are not necessarily required [8, 4], of which the main benefit is to avoid careful treatment to retrieve the negative pairs. To study the influence of negative samples on graph contrastive learning, we follow the framework of SimSiam [4] to revise the loss function as Eq.(9). A very recent work [29] also studies graph contrastive learning without negative samples. Different from it, we focus on both node and graph classification tasks. ", + "bbox": [ + 174, + 882, + 823, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/d27d31742747e95258dc95f8006e5345c23f4824d93edd3c724ac3922de15242.jpg", + "table_caption": [ + "Table 1: Dataset statistics. " + ], + "table_footnote": [], + "table_body": "
Graph Task DatasetsNode Task Datasets
MUTAGPTC-MRIMDB-BIMDB-MNCI1COLLABCoraCiteseerPubmed
#Graphs1883441000150041105000111
#Nodes17.914.319.813.029.974.53327270819717
#Edges19.814.7193.165.91.133.04732542944338
#Classes222223673
", + "bbox": [ + 179, + 88, + 818, + 174 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 217, + 825, + 286 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/43d11dbf627226ec2239c08ec4341ee94a4da08f41197bcd575b09df6f98e01b.jpg", + "text": "$$\n\\mathcal { L } = - \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\frac { \\mathbf { z } _ { i , n } } { \\| \\mathbf { z } _ { i , n } \\| } \\cdot \\frac { \\mathbf { z } _ { j , n } } { \\| \\mathbf { z } _ { j , n } \\| } ,\n$$", + "text_format": "latex", + "bbox": [ + 395, + 290, + 601, + 333 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5 Experiments ", + "text_level": 1, + "bbox": [ + 173, + 347, + 312, + 364 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we evaluate our InfoGCL with a number of experiments. We first describe datasets, evaluation protocol, and experimental setup. Then, we present the experimental results on both node and graph classification. Last, we analyze our proposed principles via ablation study. ", + "bbox": [ + 176, + 378, + 825, + 421 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1 Setup", + "text_level": 1, + "bbox": [ + 174, + 436, + 253, + 452 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We use both graph classification and node classification benchmark datasets that are widely used in the existing graph contrastive learning approaches. The graph classification datasets include MUTAG [17], PTC-MR [17], IMDB-B [40], IMDB-M [40], NCI1 [34], and COLLAB [40]. MUTAG is a collection of nitroaromatic compounds represented as graphs, where vertices stand for atoms and edges represent bonds between atoms. PTC-MR is a collection of 344 chemical compounds which report the carcinogenicity for rats. IMDB-B and IMDB-M are two movie collaboration datasets, where nodes represent actors/actress and there is an edge between them if they appear in the same movie. In NCI1, graphs are the representation of chemical compounds, where vertices stand for atoms and edges represent bonds between atoms. COLLAB is a collaboration dataset, where researchers are nodes and an edge indicates collaboration between two researchers. The node classification datasets include Citeseer, Cora, and Pubmed [23]. All of them are citation networks, where nodes are documents and edges are citation links. These datasets are summarized in Table 1. ", + "bbox": [ + 174, + 462, + 825, + 627 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We closely follow the evaluation protocol of previous state-of-the-art graph contrastive learning approaches. For graph classification, we report the mean 10-fold cross validation accuracy after 5 runs followed by a linear SVM. The linear SVM is trained by applying cross validation on training data folds and the best mean accuracy is reported. For node classification, we report the mean accuracy on test set after 50 runs of training followed by a linear neural network model. To make comparison fair, we adopt the basic setting of InfoGraph for graph classification. We conduct experiment with the values of the number of GNN layers, the number of epochs, batch size, the parameter C of SVM in the sets {2, 4, 8, 12}, {10, 20, 40, 100}, {32, 64, 128, 256} and $\\{ 1 0 ^ { - 3 } , \\ : \\mathrm { { \\dot { 1 } 0 ^ { - 2 } } } , . . . , \\ : 1 0 ^ { 2 } , 1 0 ^ { 3 } \\ : \\ : \\}$ , respectively. We adopt the basic setting of DGI for node classification. Specifically, we set the number of GNN layers to 1 and experiment with the batch size in the set {2, 4, 8}. The hidden dimension of representations is set to 512. We also apply the early stopping strategy. ", + "bbox": [ + 173, + 633, + 825, + 787 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 Experimental Results ", + "text_level": 1, + "bbox": [ + 174, + 803, + 362, + 818 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To evaluate our method InfoGCL on graph classification, we use thhree categories of baselines. The kernel approaches include shortest path kernel (SP) [2], Graphlet kernel (GK) [25], WeisfeilerLehman sub-tree kernel (WL) [24], deep graph kernels (DGK) [39], and multi-scale Laplacian kernel (MLG) [16]. The supervised baselines include GraphSAGE [12], GCN [15], GIN [38], GAT [32]. We also compare with the unsupervised approaches, including RandomWalk [7], node2vec [9], sub2vec [14], graph2vec [20], InfoGraph [28], GraphCL [42], and mvgrl [13]. Table 2 shows the graph classification results. We observe that our approach achieves the best results compared to other unsupervised approaches. Our approach also outperforms or matches the best kernel approaches across the datasets. Even compared with the supervised ones, our approach achieves the best in 2 out of 6 datasets and the results of our approach on other 4 dataset are among the top. ", + "bbox": [ + 174, + 827, + 825, + 912 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/100341ee754bc7ccbfbd5552183bc1ec5e1b1be1a782962292628b2341f3673b.jpg", + "table_caption": [ + "Table 2: Graph classification results $( \\% )$ " + ], + "table_footnote": [], + "table_body": "
MethodMUTAGPTC-MRIMDB-BIMDB-MNCI1COLLAB
Kernel Approaches
SP85.2 ± 2.458.2 ± 2.455.6± 0.238.0±0.373.5 ± 0.1
GK81.7 ± 2.157.3 ± 1.465.9 ± 1.043.9 ± 0.466.0 ± 0.172.8± 0.3
WL80.7 ± 3.058.0 ± 0.572.3 ± 3.447.0 ± 0.580.0± 0.578.9 ± 1.9
DGK87.4 ± 2.760.1 ± 2.667.0 ± 0.644.6 ± 0.580.3 ± 0.573.1 ± 0.3
MLG87.9 ± 1.663.3 ± 1.566.6 ± 0.341.2 ± 0.080.8 ± 1.3
Supervised Approaches
GraphSAGE85.1 ± 7.6 63.9 ± 7.772.3 ± 5.350.9 ± 2.277.7 ± 1.568.3 ± 4.2
GCN85.6 ± 5.864.2 ± 4.374.0± 3.451.9 ± 3.880.2 ± 2.079.0 ± 1.8
GIN-089.4 ± 5.664.6 ± 7.075.1 ± 5.152.3 ± 2.882.7 ± 1.780.2 ± 1.9
GIN-e89.0 ± 6.063.7 ±8.274.3 ± 5.152.1 ± 3.682.7 ± 1.680.1 ± 1.9
GAT89.4 ± 6.166.7 ± 5.170.5 ± 2.347.8 ± 3.166.6 ± 2.267.4 ± 2.9
Unsupervised Approaches
RandomWalk83.7 ± 1.557.9 ± 1.350.7±0.334.7 ± 0.264.3 ± 0.3
node2vec72.6 ±10.258.6±8.050.2 ± 0.936.0 ± 0.754.9 ± 1.656.1 ± 0.2
sub2vec61.1 ± 15.860.0 ± 6.455.3 ± 1.536.7 ± 0.852.8 ±1.5-
graph2vec83.2 ±9.660.2 ± 6.971.1 ± 0.550.4 ± 0.975.4 ±1.2
InfoGraph89.0 ± 1.161.7 ± 1.473.0± 0.949.7 ± 0.576.2 ±1.470.7 ± 1.1
GraphCL86.8 ± 1.361.3 ± 2.171.1 ± 0.449.2 ± 0.677.9 ± 0.471.4 ± 1.2
mvgrl89.7 ± 1.162.5 ± 1.774.2 ± 0.751.2 ± 0.577.0 ± 0.876.0 ± 1.2
51.4 ± 0.880.2 ± 0.6
InfoGCL91.2 ± 1.363.5 ± 1.575.1 ± 0.980.0 ± 1.3
", + "bbox": [ + 183, + 87, + 812, + 367 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/bb3604b9cde8633c8adb22a2b93c182327925e26e7eabc91176a409025cf1d38.jpg", + "table_caption": [ + "Table 3: Node classification results $( \\% )$ . " + ], + "table_footnote": [], + "table_body": "
MethodCoraCiteseerPubmed
Supervised Approaches
MLP55.146.571.4
ICA75.169.173.9
LP68.045.363.0
ManiReg59.560.170.7
SemiEmb59.059.671.7
Planetoid75.764.777.2
Chebyshev81.269.874.4
GCN81.570.379.0
JKNet82.7 ± 0.473.0 ± 0.577.9 ± 0.4
GAT83.0 ± 0.772.5± 0.779.0 ± 0.3
Unsupervised Approaches
Linear47.9 ± 0.449.3 ± 0.269.1 ± 0.3
DeepWalk70.7 ± 0.651.4 ± 0.574.3 ± 0.9
GAE71.5 ± 0.465.8 ±0.472.1 ± 0.5
VERSE72.5 ± 0.355.5± 0.4
DGI83.8 ± 0.572.0 ± 0.677.9 ± 0.3
GraphCL82.5 ± 0.173.1 ± 0.2
mvgrl86.8 ± 0.573.3 ± 0.580.1 ± 0.7
InfoGCL83.5 ± 0.373.5 ± 0.479.1 ± 0.2
", + "bbox": [ + 297, + 422, + 699, + 684 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 752, + 825, + 808 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For node classification tasks, we compare InfoGCL with some supervised approaches and unsupervised approaches. The supervised baselines include a simple MLP model, iterative classification algorithm (ICA) [19], manifold regularization (ManiReg) [1], semi-supervised embedding (SemiEmb) [35], Planetoid [41], Chebyshev [5], GCN, JKNet [36], GAT. Table 3 shows the node classification results. It is observed that our approach achieves the state-of-the-art results and competes the best one with respect to the existing unsupervised approaches. Compared to supervised baselines, our approach outperforms all the baselines. ", + "bbox": [ + 174, + 814, + 825, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/f0477851d52bef85626a9194a114b45dcbb4525569d2ce3f3528abe6efd26a28.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
MethodMUTAGIMDB-BCOLLABCoraCiteseerPubmed
InfoGCL (w/o neg)91.0 ± 1.475.1± 0.580.2 ±1.078.6 ± 0.470.4 ± 0.677.4±0.7
InfoGCL (w/ neg)91.2 ± 1.375.1 ± 0.980.0± 1.383.5±0.373.5 ± 0.479.1±0.2
", + "bbox": [ + 184, + 74, + 813, + 125 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 4: Comparison between InfoGCL with negative samples and without negative samples. ", + "bbox": [ + 183, + 132, + 800, + 146 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.3 Evaluation of InfoGCL Principle ", + "text_level": 1, + "bbox": [ + 174, + 164, + 442, + 179 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We can unify the existing graph contrastive learning methods through the perspective of InfoGCL principle: all recent graph contrastive learning methods can be decoupled into three stages that implicitly follow the InfoGCL principle, though being different in model architecture design and optimization strategies. Below, we analyze some observations from several recent work. Because of the limited space, please refer to the Appendix for more results of the quantitative analysis. ", + "bbox": [ + 173, + 190, + 825, + 260 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Obs. i. Composing a graph and its augmentation benefits downstream performance [42]. Compared to composing a graph and the graph itself, augmentation leads to smaller $I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )$ (Proposition 1). ", + "bbox": [ + 173, + 266, + 821, + 295 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Obs. ii. Composing different augmentations benefits more [42]. Compared to composing a graph and its augmentations, two augmentations further decrease $I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )$ (Proposition 1). ", + "bbox": [ + 173, + 299, + 821, + 329 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Obs. iii. Node dropping and subgraph sampling are generally beneficial across datasets [42]. When compared to attribute masking and edge perturbation, they change the semantic meaning of the graph relatively slightly, which leads to higher $I ( \\mathbf { v } _ { i } ; y )$ , $I ( \\mathbf { v } _ { j } ; \\bar { y } )$ (Proposition 1). ", + "bbox": [ + 174, + 334, + 825, + 377 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Obs. iv. Edge perturbation benefits social networks but hurts some biochemical molecules [42]. The semantic meaning of social networks are robust to edge perturbation. However, the semantic meaning of some biochemical molecules are determined by local connection pattern, where edge perturbation decreases $I ( \\mathbf { v } _ { i } ; y )$ (Proposition 1). ", + "bbox": [ + 174, + 382, + 825, + 439 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Obs. v. Contrasting node and graph representations consistently performs better than other contrastive modes across benchmarks [13]. Compared to other contrastive modes, node-graph (i.e., local-global) mode generally extracts more graph structure information, which benefits predicting task label $y$ (Proposition 3). ", + "bbox": [ + 174, + 444, + 825, + 501 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.4 Effect of Negative Samples ", + "text_level": 1, + "bbox": [ + 174, + 517, + 398, + 531 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To study the effect of negative samples on graph contrastive learning, we follow SimSiam [4] and design the objective as Eq. (9). We conduct experiments on three graph task and three node task datasets. The results are reported in Table 4. It is observed that the negative samples show little influence on the three graph task datasets, while performance drops on the three node task datasets, especially the Cora dataset. ", + "bbox": [ + 174, + 542, + 825, + 611 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "According to the dataset statistics summarized in Table 1, we see the networks of Cora, Citeseer, Pubmed are much sparser (in terms of network topology). Furthermore, we know the node features of these three datasets are also much sparser (one-hot encoding with high dimensionality). We speculate this because the contrastive learning models tends to collapse easier if negative samples are not used, especially when data is too sparse. Therefore,we make the hypothesis: negative samples benefit graph modeling, especially when i) network topology, and ii) node features are extremely sparse. ", + "bbox": [ + 174, + 618, + 825, + 702 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 Conclusion and Limitations ", + "text_level": 1, + "bbox": [ + 176, + 719, + 437, + 738 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We propose InfoGCL, an information-aware graph contrastive learning framework for graph contrastive learning. Existing graph contrastive learning approaches are usually carefully designed. We aim to answer how to perform contrastive learning for your learning tasks on specific graph data. Our method decouples the typical contrastive learning approaches into three sequential modules and provides the theoretical analysis for reaching the optimality. To address the questions of optimality in a practical way, we propose the InfoGCL principle, which is implicitly followed by all recent graph contrastive learning approaches. In addition, we explore the role of negative samples in graph contrastive learning and find negative samples are not necessarily required. Experiments on both node and graph benchmark datasets demonstrate the effectiveness of our method. Note that our method is not without limitations. We can further improve our method by designing better practical approximations to the theoretical optimality of graph contrastive learning. ", + "bbox": [ + 174, + 751, + 825, + 904 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Funding Transparency Statement ", + "text_level": 1, + "bbox": [ + 174, + 89, + 455, + 107 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This project was partially supported by NSF projects IIS-1707548 and CBET-1638320. ", + "bbox": [ + 174, + 121, + 743, + 136 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 156, + 266, + 172 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "[1] Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric framework for learning from labeled and unlabeled examples. J. Mach. Learn. Res, 7, 2006. [2] Karsten M. Borgwardt and Hans-Peter Kriegel. Shortest-path kernels on graphs. In ICDM, 2005. [3] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey E. Hinton. A simple framework for contrastive learning of visual representations. ICML, 2020. [4] Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. CoRR, abs/2011.10566, 2020. [5] Michaël Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks on graphs with fast localized spectral filtering. In NIPS, 2016. [6] Yuanqi Du, Shiyu Wang, Xiaojie Guo, Hengning Cao, Shujie Hu, Junji Jiang, Aishwarya Varala, Abhinav Angirekula, and Liang Zhao. Graphgt: Machine learning datasets for deep graph generation and transformation. 2021. [7] Gartner, Flach, and Wrobel. On graph kernels: Hardness results and efficient alternatives. In COLT Workshop, 2003. [8] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre Richemond, Elena Buchatskaya, Carl Doersch, Bernardo Pires, Zhaohan Guo, Mohammad Azar, Bilal Piot, Koray Kavukcuoglu, Rémi Munos, and Michal Valko. Bootstrap your own latent: A new approach to self-supervised learning. 2020. [9] Aditya Grover and Jure Leskovec. node2vec: Scalable feature learning for networks. In KDD, 2016. [10] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Property controllable variational autoencoder via invertible mutual dependence. In International Conference on Learning Representations, 2020. [11] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Deep generative models for spatial networks. In Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining, pages 505–515, 2021. [12] William L. Hamilton, Rex Ying, and Jure Leskovec. Inductive representation learning on large graphs. In NeurIPS, 2017. [13] Kaveh Hassani and Amir Hosein Khasahmadi. Contrastive multi-view representation learning on graphs. In ICML, pages 3451–3461. 2020. [14] Kexin Huang and Marinka Zitnik. Graph meta learning via local subgraphs. CoRR, abs/2006.07889, 2020. [15] Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In ICLR, 2017. [16] Risi Kondor and Horace Pan. The multiscale laplacian graph kernel. In NIPS, 2016. [17] Nils Kriege and Petra Mutzel. Subgraph matching kernels for attributed graphs. In ICML, 2012. [18] R. Linsker. Self-organization in a perceptual network. Computer, 21:105, 1988. [19] Qing Lu and Lise Getoor. Link-based classification. In ICML, 2003. ", + "bbox": [ + 174, + 166, + 828, + 917 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "[20] Annamalai Narayanan, Mahinthan Chandramohan, Rajasekar Venkatesan, Lihui Chen, Yang Liu, and Shantanu Jaiswal. graph2vec: Learning distributed representations of graphs. CoRR, 2017. \n[21] Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. \n[22] Jiezhong Qiu, Qibin Chen, Yuxiao Dong, Jing Zhang, Hongxia Yang, Ming Ding, Kuansan Wang, and Jie Tang. Gcc: Graph contrastive coding for graph neural network pre-training. KDD, 2020. \n[23] Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina EliassiRad. Collective classification in network data. AI magazine, 29(3):93–93, 2008. \n[24] Nino Shervashidze, Pascal Schweitzer, Erik Jan van Leeuwen, Kurt Mehlhorn, and Karsten M. Borgwardt. Weisfeiler-lehman graph kernels. J. Mach. Learn. Res, pages 2539–2561, 2011. \n[25] Nino Shervashidze, S. V. N. Vishwanathan, Tobias Petri, Kurt Mehlhorn, and Karsten M. Borgwardt. Efficient graphlet kernels for large graph comparison. In AISTATS, 2009. \n[26] Ravid Shwartz-Ziv and Naftali Tishby. Opening the black box of deep neural networks via information. arXiv preprint arXiv:1703.00810, 2017. \n[27] Stefano Soatto and Alessandro Chiuso. Modeling visual representations: Defining properties and deep approximations. In ICLR, 2016. \n[28] Fan-Yun Sun, Jordan Hoffman, Vikas Verma, and Jian Tang. Infograph: Unsupervised and semi-supervised graph-level representation learning via mutual information maximization. In ICLR, 2019. \n[29] Shantanu Thakoor, Corentin Tallec, Mohammad Gheshlaghi Azar, Rémi Munos, Petar Velickovi ˇ c, and Michal Valko. Bootstrapped representation learning on graphs. ´ arXiv preprint arXiv:2102.06514, 2021. \n[30] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What makes for good views for contrastive learning. In NeurIPS, volume 33, 2020. \n[31] Naftali Tishby, Fernando C. N. Pereira, and William Bialek. The information bottleneck method. CoRR, physics/0004057, 2000. \n[32] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´ Bengio. Graph Attention Networks. ICLR, 2018. \n[33] Petar Velickovi ˇ c, William Fedus, William L. Hamilton, Pietro Liò, Yoshua Bengio, and R Devon ´ Hjelm. Deep Graph Infomax. In ICLR, 2019. \n[34] Nikil Wale, Ian A Watson, and George Karypis. Comparison of descriptor spaces for chemical compound retrieval and classification. Knowledge and Information Systems, 14(3):347–375, 2008. \n[35] Jason Weston, Frédéric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via semi-supervised embedding, 2013. \n[36] Felix Wu, Tianyi Zhang 0007, Amauri H. Souza Jr., Christopher Fifty, Tao Yu, and Kilian Q. Weinberger. Simplifying graph convolutional networks. ICML, 2019. \n[37] Tailin Wu, Hongyu Ren, Pan Li, and Jure Leskovec. Graph information bottleneck. CoRR, 2020. \n[38] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In ICLR, 2019. \n[39] Pinar Yanardag and S. V. N. Vishwanathan. Deep graph kernels. In KDD, 2015. \n[40] Pinar Yanardag and SVN Vishwanathan. Deep graph kernels. In KDD, pages 1365–1374, 2015. \n[41] Zhilin Yang, William W. Cohen, and Ruslan Salakhutdinov. Revisiting semi-supervised learning with graph embeddings. ICML, abs/1603.08861, 2016. \n[42] Yuning You, Tianlong Chen, Yongduo Sui, Ting Chen, Zhangyang Wang, and Yang Shen. Graph contrastive learning with augmentations. In NeurIPS, volume 33, 2020. \n[43] Junchi Yu, Tingyang Xu, Yu Rong, Yatao Bian, Junzhou Huang, and Ran He. Graph information bottleneck for subgraph recognition. ICLR, 2021. \n[44] Tong Zhao, Yozen Liu, Leonardo Neves, Oliver Woodford, Meng Jiang, and Neil Shah. Data augmentation for graph neural networks. arXiv preprint arXiv:2006.06830, 2020. \n[45] Yanqiao Zhu, Yichen Xu, Feng Yu, Qiang Liu, Shu Wu, and Liang Wang. Deep Graph Contrastive Representation Learning. In ICML Workshop, 2020. ", + "bbox": [ + 171, + 51, + 828, + 921 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 90, + 828, + 270 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/519VBzfEaKW/519VBzfEaKW_middle.json b/parse/train/519VBzfEaKW/519VBzfEaKW_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..3245a43887e0ef13dd86753145daf248df9860a4 --- /dev/null +++ b/parse/train/519VBzfEaKW/519VBzfEaKW_middle.json @@ -0,0 +1,30267 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 123, + 97, + 489, + 137 + ], + "lines": [ + { + "bbox": [ + 122, + 96, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 122, + 96, + 489, + 118 + ], + "score": 1.0, + "content": "InfoGCL: Information-Aware Graph Contrastive", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 269, + 116, + 343, + 139 + ], + "spans": [ + { + "bbox": [ + 269, + 116, + 343, + 139 + ], + "score": 1.0, + "content": "Learning", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 124, + 178, + 480, + 237 + ], + "lines": [ + { + "bbox": [ + 129, + 177, + 480, + 192 + ], + "spans": [ + { + "bbox": [ + 129, + 177, + 176, + 192 + ], + "score": 1.0, + "content": "Dongkuan", + "type": "text" + }, + { + "bbox": [ + 176, + 178, + 195, + 190 + ], + "score": 0.31, + "content": "\\mathbf { X } \\mathbf { u } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 177, + 480, + 192 + ], + "score": 1.0, + "content": "Wei Cheng2 Dongsheng Luo1 Haifeng Chen2 Xiang Zhang1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 233, + 189, + 378, + 204 + ], + "spans": [ + { + "bbox": [ + 233, + 189, + 378, + 204 + ], + "score": 1.0, + "content": "1The Pennsylvania State University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 262, + 200, + 349, + 214 + ], + "spans": [ + { + "bbox": [ + 262, + 200, + 349, + 214 + ], + "score": 1.0, + "content": "2NEC Labs America", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 228, + 212, + 382, + 227 + ], + "spans": [ + { + "bbox": [ + 228, + 212, + 382, + 227 + ], + "score": 1.0, + "content": "1{dux19,dul262,xzz89}@psu.edu", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 220, + 222, + 391, + 240 + ], + "spans": [ + { + "bbox": [ + 220, + 222, + 391, + 240 + ], + "score": 1.0, + "content": "2{weicheng,haifeng}@nec-labs.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 283, + 264, + 328, + 277 + ], + "lines": [ + { + "bbox": [ + 281, + 264, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 281, + 264, + 330, + 279 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 291, + 469, + 477 + ], + "lines": [ + { + "bbox": [ + 142, + 292, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 292, + 470, + 304 + ], + "score": 1.0, + "content": "Various graph contrastive learning models have been proposed to improve the per-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "score": 1.0, + "content": "formance of learning tasks on graph datasets in recent years. While effective and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 313, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 327 + ], + "score": 1.0, + "content": "prevalent, these models are usually carefully customized. In particular, although", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 323, + 471, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 471, + 339 + ], + "score": 1.0, + "content": "all recent researches create two contrastive views, they differ greatly in view aug-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 335, + 470, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 348 + ], + "score": 1.0, + "content": "mentations, architectures, and objectives. It remains an open question how to build", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "score": 1.0, + "content": "your graph contrastive learning model from scratch for particular graph learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 357, + 469, + 371 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 469, + 371 + ], + "score": 1.0, + "content": "tasks and datasets. In this work, we aim to fill this gap by studying how graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 368, + 469, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 368, + 469, + 381 + ], + "score": 1.0, + "content": "information is transformed and transferred during the contrastive learning process", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 380, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 380, + 469, + 391 + ], + "score": 1.0, + "content": "and proposing an information-aware graph contrastive learning framework called", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 390, + 469, + 402 + ], + "spans": [ + { + "bbox": [ + 142, + 390, + 469, + 402 + ], + "score": 1.0, + "content": "InfoGCL. The key point of this framework is to follow the Information Bottleneck", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 401, + 470, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 414 + ], + "score": 1.0, + "content": "principle to reduce the mutual information between contrastive parts while keeping", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 412, + 469, + 423 + ], + "spans": [ + { + "bbox": [ + 142, + 412, + 469, + 423 + ], + "score": 1.0, + "content": "task-relevant information intact at both the levels of the individual module and the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 421, + 469, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 436 + ], + "score": 1.0, + "content": "entire framework so that the information loss during graph representation learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 435, + 469, + 446 + ], + "spans": [ + { + "bbox": [ + 142, + 435, + 469, + 446 + ], + "score": 1.0, + "content": "can be minimized. We show for the first time that all recent graph contrastive", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 446, + 470, + 456 + ], + "spans": [ + { + "bbox": [ + 142, + 446, + 470, + 456 + ], + "score": 1.0, + "content": "learning methods can be unified by our framework. We empirically validate our", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 456, + 469, + 467 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 469, + 467 + ], + "score": 1.0, + "content": "theoretical analysis on both node and graph classification benchmark datasets, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 468, + 453, + 478 + ], + "spans": [ + { + "bbox": [ + 142, + 468, + 453, + 478 + ], + "score": 1.0, + "content": "demonstrate that our algorithm significantly outperforms the state-of-the-arts.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 190, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "Inspired by their success in the vision and language domains, contrastive learning methods have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 540, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "been wildly adopted by recent progress in graph learning to improve the performance of a variety", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 1.0, + "content": "of tasks [42, 13, 22]. In a nutshell, these methods typically learn representations by creating two", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "augmented views of a graph and maximizing the feature consistency between the two views. Inheriting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "the advantages of self-supervised learning, contrastive learning relieves graph representation learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "from its reliance on label information in graph domain, where label information can be very costly or", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "even impossible to collect while unlabeled/partially labeled data is common, such as chemical graph", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "data [28]. Graph contrastive learning methods have achieved similar (and even better) performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "as compared to the equivalent methods trained with labels on benchmark graph datasets [42, 13, 6].", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "Despite being effective and prevalent, existing graph contrastive learning models differ mostly in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "augmented view design, encoding architecture, and contrastive objective (refer to Table 1 in Appendix", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "for more comparisons). For a learning task, it usually requires a substantial degree of domain", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "expertise to carefully design and customize these modules for the specific dataset. For example, while", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "both DGI [33] and InfoGraph [28] seek to obtain graph representations by maximizing the mutual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "information between patch-level and graph-level representations, they adopt different graph encoders,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "GCN [15] and GIN [38] respectively. mvgrl [13] applies graph diffusion convolution to construct the", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 123, + 97, + 489, + 137 + ], + "lines": [ + { + "bbox": [ + 122, + 96, + 489, + 118 + ], + "spans": [ + { + "bbox": [ + 122, + 96, + 489, + 118 + ], + "score": 1.0, + "content": "InfoGCL: Information-Aware Graph Contrastive", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 269, + 116, + 343, + 139 + ], + "spans": [ + { + "bbox": [ + 269, + 116, + 343, + 139 + ], + "score": 1.0, + "content": "Learning", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 124, + 178, + 480, + 237 + ], + "lines": [ + { + "bbox": [ + 129, + 177, + 480, + 192 + ], + "spans": [ + { + "bbox": [ + 129, + 177, + 176, + 192 + ], + "score": 1.0, + "content": "Dongkuan", + "type": "text" + }, + { + "bbox": [ + 176, + 178, + 195, + 190 + ], + "score": 0.31, + "content": "\\mathbf { X } \\mathbf { u } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 177, + 480, + 192 + ], + "score": 1.0, + "content": "Wei Cheng2 Dongsheng Luo1 Haifeng Chen2 Xiang Zhang1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 233, + 189, + 378, + 204 + ], + "spans": [ + { + "bbox": [ + 233, + 189, + 378, + 204 + ], + "score": 1.0, + "content": "1The Pennsylvania State University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 262, + 200, + 349, + 214 + ], + "spans": [ + { + "bbox": [ + 262, + 200, + 349, + 214 + ], + "score": 1.0, + "content": "2NEC Labs America", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 228, + 212, + 382, + 227 + ], + "spans": [ + { + "bbox": [ + 228, + 212, + 382, + 227 + ], + "score": 1.0, + "content": "1{dux19,dul262,xzz89}@psu.edu", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 220, + 222, + 391, + 240 + ], + "spans": [ + { + "bbox": [ + 220, + 222, + 391, + 240 + ], + "score": 1.0, + "content": "2{weicheng,haifeng}@nec-labs.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 129, + 177, + 480, + 240 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 264, + 328, + 277 + ], + "lines": [ + { + "bbox": [ + 281, + 264, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 281, + 264, + 330, + 279 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 291, + 469, + 477 + ], + "lines": [ + { + "bbox": [ + 142, + 292, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 292, + 470, + 304 + ], + "score": 1.0, + "content": "Various graph contrastive learning models have been proposed to improve the per-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "score": 1.0, + "content": "formance of learning tasks on graph datasets in recent years. While effective and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 313, + 469, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 327 + ], + "score": 1.0, + "content": "prevalent, these models are usually carefully customized. In particular, although", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 323, + 471, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 471, + 339 + ], + "score": 1.0, + "content": "all recent researches create two contrastive views, they differ greatly in view aug-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 335, + 470, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 348 + ], + "score": 1.0, + "content": "mentations, architectures, and objectives. It remains an open question how to build", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 347, + 470, + 360 + ], + "score": 1.0, + "content": "your graph contrastive learning model from scratch for particular graph learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 357, + 469, + 371 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 469, + 371 + ], + "score": 1.0, + "content": "tasks and datasets. In this work, we aim to fill this gap by studying how graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 368, + 469, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 368, + 469, + 381 + ], + "score": 1.0, + "content": "information is transformed and transferred during the contrastive learning process", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 380, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 380, + 469, + 391 + ], + "score": 1.0, + "content": "and proposing an information-aware graph contrastive learning framework called", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 390, + 469, + 402 + ], + "spans": [ + { + "bbox": [ + 142, + 390, + 469, + 402 + ], + "score": 1.0, + "content": "InfoGCL. The key point of this framework is to follow the Information Bottleneck", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 401, + 470, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 470, + 414 + ], + "score": 1.0, + "content": "principle to reduce the mutual information between contrastive parts while keeping", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 412, + 469, + 423 + ], + "spans": [ + { + "bbox": [ + 142, + 412, + 469, + 423 + ], + "score": 1.0, + "content": "task-relevant information intact at both the levels of the individual module and the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 421, + 469, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 469, + 436 + ], + "score": 1.0, + "content": "entire framework so that the information loss during graph representation learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 435, + 469, + 446 + ], + "spans": [ + { + "bbox": [ + 142, + 435, + 469, + 446 + ], + "score": 1.0, + "content": "can be minimized. We show for the first time that all recent graph contrastive", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 446, + 470, + 456 + ], + "spans": [ + { + "bbox": [ + 142, + 446, + 470, + 456 + ], + "score": 1.0, + "content": "learning methods can be unified by our framework. We empirically validate our", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 456, + 469, + 467 + ], + "spans": [ + { + "bbox": [ + 141, + 456, + 469, + 467 + ], + "score": 1.0, + "content": "theoretical analysis on both node and graph classification benchmark datasets, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 468, + 453, + 478 + ], + "spans": [ + { + "bbox": [ + 142, + 468, + 453, + 478 + ], + "score": 1.0, + "content": "demonstrate that our algorithm significantly outperforms the state-of-the-arts.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 16, + "bbox_fs": [ + 141, + 292, + 471, + 478 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 503, + 190, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 192, + 519 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 542 + ], + "score": 1.0, + "content": "Inspired by their success in the vision and language domains, contrastive learning methods have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 540, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "been wildly adopted by recent progress in graph learning to improve the performance of a variety", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 566 + ], + "score": 1.0, + "content": "of tasks [42, 13, 22]. In a nutshell, these methods typically learn representations by creating two", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 577 + ], + "score": 1.0, + "content": "augmented views of a graph and maximizing the feature consistency between the two views. Inheriting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 588 + ], + "score": 1.0, + "content": "the advantages of self-supervised learning, contrastive learning relieves graph representation learning", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "from its reliance on label information in graph domain, where label information can be very costly or", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "even impossible to collect while unlabeled/partially labeled data is common, such as chemical graph", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "data [28]. Graph contrastive learning methods have achieved similar (and even better) performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "as compared to the equivalent methods trained with labels on benchmark graph datasets [42, 13, 6].", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 531, + 506, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "Despite being effective and prevalent, existing graph contrastive learning models differ mostly in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "augmented view design, encoding architecture, and contrastive objective (refer to Table 1 in Appendix", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "for more comparisons). For a learning task, it usually requires a substantial degree of domain", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "expertise to carefully design and customize these modules for the specific dataset. For example, while", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "both DGI [33] and InfoGraph [28] seek to obtain graph representations by maximizing the mutual", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "information between patch-level and graph-level representations, they adopt different graph encoders,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "GCN [15] and GIN [38] respectively. mvgrl [13] applies graph diffusion convolution to construct the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "augmented view, while GCC [22] and GRACE [45] adopt subgraph sampling and graph perturbation,", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 295, + 159, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 159, + 310 + ], + "score": 1.0, + "content": "respectively.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 634, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 64, + 486, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 64, + 486, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 64, + 486, + 208 + ], + "spans": [ + { + "bbox": [ + 122, + 64, + 486, + 208 + ], + "score": 0.971, + "type": "image", + "image_path": "31affb98767cd1b70acccd0192dfa07ba19c7212a4703b9817ace38dcc8ae1d7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 64, + 486, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 112.0, + 486, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 160.0, + 486, + 208.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 273 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 451, + 230 + ], + "score": 1.0, + "content": "Figure 1: Graph contrastive learning approaches consist of three stages: 1) a graph", + "type": "text" + }, + { + "bbox": [ + 451, + 218, + 460, + 228 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "undergoes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 188, + 241 + ], + "score": 1.0, + "content": "view augmentation,", + "type": "text" + }, + { + "bbox": [ + 189, + 228, + 232, + 240 + ], + "score": 0.54, + "content": "q _ { i } ( \\cdot ) , q _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 228, + 405, + 241 + ], + "score": 1.0, + "content": ", to obtain two semantically similar views,", + "type": "text" + }, + { + "bbox": [ + 405, + 230, + 416, + 240 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 228, + 419, + 241 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 419, + 230, + 431, + 240 + ], + "score": 0.72, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 228, + 506, + 241 + ], + "score": 1.0, + "content": ". 2) the two views", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 238, + 259, + 253 + ], + "score": 1.0, + "content": "are fed into view encoder networks,", + "type": "text" + }, + { + "bbox": [ + 259, + 239, + 279, + 252 + ], + "score": 0.8, + "content": "f _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 238, + 284, + 253 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 239, + 305, + 252 + ], + "score": 0.87, + "content": "f _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 238, + 445, + 253 + ], + "score": 1.0, + "content": ", to extract latent representations,", + "type": "text" + }, + { + "bbox": [ + 446, + 241, + 471, + 252 + ], + "score": 0.25, + "content": "{ \\bf z } _ { i } , { \\bf z } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 238, + 506, + 253 + ], + "score": 1.0, + "content": ". 3) the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "feature consistency between representations is maximized to optimize the objective function based on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 261, + 507, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 175, + 274 + ], + "score": 1.0, + "content": "contrastive mode", + "type": "text" + }, + { + "bbox": [ + 175, + 261, + 224, + 273 + ], + "score": 0.94, + "content": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 253, + 274 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 254, + 261, + 297, + 273 + ], + "score": 0.76, + "content": "c _ { i } ( \\cdot ) , c _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 261, + 507, + 274 + ], + "score": 1.0, + "content": "are aggregation operations applied to representations.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 504, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "augmented view, while GCC [22] and GRACE [45] adopt subgraph sampling and graph perturbation,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 295, + 159, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 159, + 310 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "The main question this paper attempts to answer is: how to perform contrastive learning for your", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "learning tasks on specific graph datasets? However, answering this question is challenging. First,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "contrastive learning consists of multiple components, such as view augmentation and information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "encoding. For each of them, there are various choices. Numerous variations make it difficult to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "design models that are both robust and efficient. Existing graph contrastive learning approaches are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "carefully designed for different learning tasks on different datasets, however, none of them studies", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "the guiding principles for choosing the best components. Second, graph data has unique properties", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "that distinguish it from other types of data, such as rich structural information and highly diverse", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "distribution [33, 28, 11, 10]. Thus, it is desirable to design the contrastive learning model that fits", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 410, + 412, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 412, + 424 + ], + "score": 1.0, + "content": "your graph data properties, even without any domain knowledge of the data.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "We propose to address these challenges via Information Bottleneck (IB) [31], which provides a crucial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "principle for representation learning. Specifically, IB encourages the representations to be maximally", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 450, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 506, + 461 + ], + "score": 1.0, + "content": "informative about the target in the downstream task, which helps keep task-relevant information.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 461, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 471 + ], + "score": 1.0, + "content": "Concurrently, IB discourages the representation learning from acquiring the task-irrelevant informa-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "tion from the input data, which is related to the idea of minimal sufficient statistics [27]. However,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "score": 1.0, + "content": "different from the typical representation learning, there are two information flows involved in the two", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "augmented views in contrastive learning. Therefore, we extend the previous IB work [37, 43] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 504, + 458, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 458, + 516 + ], + "score": 1.0, + "content": "propose InfoGCL, an information-aware contrastive learning framework for graph data.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "To study how information is transformed and transferred, we decouple a typical graph contrastive", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "learning model into three sequential modules (as shown in Figure 1): view augmentation, view", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "encoding, and representation contrasting. We further formalize how to find the optimal of the three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "modules into three optimization problems. To build the optimal graph contrastive learning model for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "the particular dataset and task, we argue that it is necessary and sufficient to minimize the mutual", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "information between contrastive representations while maximizing task-relevant information at the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 504, + 597 + ], + "score": 1.0, + "content": "levels of both individual module and entire framework. Our work is also motivated by the InfoMin", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "theory [30], which suggests that a good set of views for contrastive learning in the vision domain", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "should share the minimal information necessary to perform well at the downstream task. Beyond", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "view selection, our work extends InfoMin to suggest principles of selecting view encodings and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 629, + 448, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 448, + 642 + ], + "score": 1.0, + "content": "contrastive modes for graph learning considering the unique properties of graph data.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "score": 1.0, + "content": "We suggest practically feasible principles to find the optimal modules in graph contrastive learning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "score": 1.0, + "content": "and show that all recent graph contrastive learning methods can be unified by these principles: i) the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "score": 1.0, + "content": "augmented views should contain as much task-relevant information as possible, while they should", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "share as little information as possible; ii) the view encoder should be task-relevant and simple as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "much as possible; iii) the contrastive mode should keep task-relevant information as much as possible", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "after contrasting. Besides, we also investigate the role of negative samples in graph contrastive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "learning and argue that negative samples are not necessarily required, especially when graph data", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "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": "image", + "bbox": [ + 122, + 64, + 486, + 208 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 64, + 486, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 64, + 486, + 208 + ], + "spans": [ + { + "bbox": [ + 122, + 64, + 486, + 208 + ], + "score": 0.971, + "type": "image", + "image_path": "31affb98767cd1b70acccd0192dfa07ba19c7212a4703b9817ace38dcc8ae1d7.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 64, + 486, + 112.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 112.0, + 486, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 160.0, + 486, + 208.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 273 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 451, + 230 + ], + "score": 1.0, + "content": "Figure 1: Graph contrastive learning approaches consist of three stages: 1) a graph", + "type": "text" + }, + { + "bbox": [ + 451, + 218, + 460, + 228 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "undergoes", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 188, + 241 + ], + "score": 1.0, + "content": "view augmentation,", + "type": "text" + }, + { + "bbox": [ + 189, + 228, + 232, + 240 + ], + "score": 0.54, + "content": "q _ { i } ( \\cdot ) , q _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 228, + 405, + 241 + ], + "score": 1.0, + "content": ", to obtain two semantically similar views,", + "type": "text" + }, + { + "bbox": [ + 405, + 230, + 416, + 240 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 228, + 419, + 241 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 419, + 230, + 431, + 240 + ], + "score": 0.72, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 228, + 506, + 241 + ], + "score": 1.0, + "content": ". 2) the two views", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 238, + 259, + 253 + ], + "score": 1.0, + "content": "are fed into view encoder networks,", + "type": "text" + }, + { + "bbox": [ + 259, + 239, + 279, + 252 + ], + "score": 0.8, + "content": "f _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 238, + 284, + 253 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 285, + 239, + 305, + 252 + ], + "score": 0.87, + "content": "f _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 238, + 445, + 253 + ], + "score": 1.0, + "content": ", to extract latent representations,", + "type": "text" + }, + { + "bbox": [ + 446, + 241, + 471, + 252 + ], + "score": 0.25, + "content": "{ \\bf z } _ { i } , { \\bf z } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 238, + 506, + 253 + ], + "score": 1.0, + "content": ". 3) the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 262 + ], + "score": 1.0, + "content": "feature consistency between representations is maximized to optimize the objective function based on", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 261, + 507, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 175, + 274 + ], + "score": 1.0, + "content": "contrastive mode", + "type": "text" + }, + { + "bbox": [ + 175, + 261, + 224, + 273 + ], + "score": 0.94, + "content": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 253, + 274 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 254, + 261, + 297, + 273 + ], + "score": 0.76, + "content": "c _ { i } ( \\cdot ) , c _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 261, + 507, + 274 + ], + "score": 1.0, + "content": "are aggregation operations applied to representations.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 504, + 308 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 105, + 284, + 506, + 310 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "The main question this paper attempts to answer is: how to perform contrastive learning for your", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 336 + ], + "score": 1.0, + "content": "learning tasks on specific graph datasets? However, answering this question is challenging. First,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "contrastive learning consists of multiple components, such as view augmentation and information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "encoding. For each of them, there are various choices. Numerous variations make it difficult to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "design models that are both robust and efficient. Existing graph contrastive learning approaches are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "carefully designed for different learning tasks on different datasets, however, none of them studies", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "the guiding principles for choosing the best components. Second, graph data has unique properties", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "that distinguish it from other types of data, such as rich structural information and highly diverse", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "distribution [33, 28, 11, 10]. Thus, it is desirable to design the contrastive learning model that fits", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 410, + 412, + 424 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 412, + 424 + ], + "score": 1.0, + "content": "your graph data properties, even without any domain knowledge of the data.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 312, + 506, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 426, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "We propose to address these challenges via Information Bottleneck (IB) [31], which provides a crucial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "principle for representation learning. Specifically, IB encourages the representations to be maximally", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 450, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 506, + 461 + ], + "score": 1.0, + "content": "informative about the target in the downstream task, which helps keep task-relevant information.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 461, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 506, + 471 + ], + "score": 1.0, + "content": "Concurrently, IB discourages the representation learning from acquiring the task-irrelevant informa-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "tion from the input data, which is related to the idea of minimal sufficient statistics [27]. However,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "score": 1.0, + "content": "different from the typical representation learning, there are two information flows involved in the two", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "augmented views in contrastive learning. Therefore, we extend the previous IB work [37, 43] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 504, + 458, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 458, + 516 + ], + "score": 1.0, + "content": "propose InfoGCL, an information-aware contrastive learning framework for graph data.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 427, + 506, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "To study how information is transformed and transferred, we decouple a typical graph contrastive", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "learning model into three sequential modules (as shown in Figure 1): view augmentation, view", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "encoding, and representation contrasting. We further formalize how to find the optimal of the three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "modules into three optimization problems. To build the optimal graph contrastive learning model for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "the particular dataset and task, we argue that it is necessary and sufficient to minimize the mutual", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "information between contrastive representations while maximizing task-relevant information at the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 504, + 597 + ], + "score": 1.0, + "content": "levels of both individual module and entire framework. Our work is also motivated by the InfoMin", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "theory [30], which suggests that a good set of views for contrastive learning in the vision domain", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "should share the minimal information necessary to perform well at the downstream task. Beyond", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "view selection, our work extends InfoMin to suggest principles of selecting view encodings and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 629, + 448, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 448, + 642 + ], + "score": 1.0, + "content": "contrastive modes for graph learning considering the unique properties of graph data.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 519, + 506, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 659 + ], + "score": 1.0, + "content": "We suggest practically feasible principles to find the optimal modules in graph contrastive learning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 669 + ], + "score": 1.0, + "content": "and show that all recent graph contrastive learning methods can be unified by these principles: i) the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "score": 1.0, + "content": "augmented views should contain as much task-relevant information as possible, while they should", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "share as little information as possible; ii) the view encoder should be task-relevant and simple as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "much as possible; iii) the contrastive mode should keep task-relevant information as much as possible", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "after contrasting. Besides, we also investigate the role of negative samples in graph contrastive", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "learning and argue that negative samples are not necessarily required, especially when graph data", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "score": 1.0, + "content": "is not extremely sparse. Our proposed method, InfoGCL, is validated on a rich set of benchmark", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "datasets for both node-level and graph-level tasks, where we analyze its ability to capture the unique", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "structural properties of the graph data. The results demonstrate that our algorithm achieves highly", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 252, + 118 + ], + "score": 1.0, + "content": "competitive performance with up to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 252, + 106, + 275, + 116 + ], + "score": 0.87, + "content": "5 . 2 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 275, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "relative improvement in accuracy on graph classification", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "task and competitive results on node classification task over the state-of-the-art unsupervised methods.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 644, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 84 + ], + "score": 1.0, + "content": "is not extremely sparse. Our proposed method, InfoGCL, is validated on a rich set of benchmark", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "datasets for both node-level and graph-level tasks, where we analyze its ability to capture the unique", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "structural properties of the graph data. The results demonstrate that our algorithm achieves highly", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 252, + 118 + ], + "score": 1.0, + "content": "competitive performance with up to", + "type": "text" + }, + { + "bbox": [ + 252, + 106, + 275, + 116 + ], + "score": 0.87, + "content": "5 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "relative improvement in accuracy on graph classification", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "task and competitive results on node classification task over the state-of-the-art unsupervised methods.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 143, + 197, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 198, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 198, + 158 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "Graph Contrastive Learning. Some recent research efforts in graph domain have been attracted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 180, + 504, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 504, + 191 + ], + "score": 1.0, + "content": "by the success of contrastive learning in vision and language domains [3, 8, 4]. A number of graph", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 191, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 202 + ], + "score": 1.0, + "content": "contrastive learning approaches have been proposed [28, 22, 42, 13]. Despite all of them creating two", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "score": 1.0, + "content": "views and targeting at maximizing the feature disagreement between the two views, these methods", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "are carefully designed and differ in various aspects. Deep graph Infomax (DGI) [33] applied the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "InfoMax principle [18] to graph data by contrasting the representations of node-level and graph-level", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 235, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 245 + ], + "score": 1.0, + "content": "for node classification tasks. Different from DGI, InfoGraph [28] aims at node classification tasks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "and it contrasts the representations of graph-level and substructure-level of different granularity. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "addition, DGI and InfoGraph use different graph encoders to extract latent representations. mvgrl [13]", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "studies both node and graph classification tasks. It transforms the adjacency matrix to a diffusion", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 507, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 507, + 291 + ], + "score": 1.0, + "content": "matrix and treat the two matrices as two congruent views. However, in GCC [22] and GRACE [45],", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "subgraph sampling and graph perturbation are used to create the augmented views. GraphCL [42]", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "explores the view augmentations approaches for graph contrastive learning. Specifically, it studies the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "score": 1.0, + "content": "approaches of node dropping, edge perturbation, attribute masking, and subgraph sampling. A recent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "work [44] also studies graph data augmentations. However, it focuses on graph neural networks for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "node classification and does not study the contrastive learning framework. Our method differs from", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "them. We aim to answer the question how to perform contrastive learning for your graph data and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "score": 1.0, + "content": "tasks. Instead of carefully designing the architectures, we decouple typical graph contrastive learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "into three stages and provide our InfoGCL principles to analyze the optimality theoretically and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 376, + 154, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 154, + 388 + ], + "score": 1.0, + "content": "practically.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 507, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 507, + 405 + ], + "score": 1.0, + "content": "Information Bottleneck. Our method is related to the Information Bottleneck (IB) theory [31],", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "which aims to find the best trade-off between accuracy and complexity when summarizing a random", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "variable. IB has been recently used to study the deep learning approaches [26, 37, 43]. Specifically,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 424, + 479, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 380, + 438 + ], + "score": 1.0, + "content": "IB expresses the trade-off between the mutual information measures", + "type": "text" + }, + { + "bbox": [ + 381, + 425, + 416, + 437 + ], + "score": 0.93, + "content": "I ( \\mathbf { D } , \\mathbf { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 424, + 434, + 438 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 425, + 466, + 437 + ], + "score": 0.93, + "content": "I ( \\mathbf { Z } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 424, + 479, + 438 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 442, + 379, + 456 + ], + "lines": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "spans": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } \\mathbf { I } \\mathbf { B } _ { \\beta } = - I ( \\mathbf { D } ; \\mathbf { Z } ) + \\beta I ( \\mathbf { Z } ; \\mathbf { y } ) ,", + "type": "interline_equation", + "image_path": "7f84f97e8d7cee3894f71d06c6fa2677f0ffb3b47533ae9a9b4fe1e1c4da0508.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 461, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 478, + 474 + ], + "score": 1.0, + "content": "where D, Z, y are the input, the latent representation and the task label, respectively.", + "type": "text" + }, + { + "bbox": [ + 478, + 462, + 485, + 471 + ], + "score": 0.75, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 375, + 484 + ], + "score": 1.0, + "content": "hyperparameter. In other words, IB aims to learn representation", + "type": "text" + }, + { + "bbox": [ + 375, + 472, + 383, + 482 + ], + "score": 0.53, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "that is maximally expressive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 303, + 497 + ], + "score": 1.0, + "content": "about y, while being minimally expressive about", + "type": "text" + }, + { + "bbox": [ + 304, + 483, + 314, + 493 + ], + "score": 0.3, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 482, + 506, + 497 + ], + "score": 1.0, + "content": ". More recently, there are some efforts applying", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "the IB theory to graph representation learning. [37] aims to generate both expressive and robust", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "graph representations, while [43] studies the subgraph recognition problem. In contrast, our work", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "focuses on graph contrastive learning, where the two augmented views make the optimization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "objective (information trade-off) different. Our work is also related to the idea of minimal sufficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "statistics [27], which has been recently studied in the vision domain [30], claiming that a good set of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "image views should share the minimal information necessary to perform well at the downstream task.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "Different from [30], we focus on the graph domain and propose three stages considering the unique", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 571, + 206, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 206, + 582 + ], + "score": 1.0, + "content": "properties of graph data.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36 + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 269, + 610 + ], + "lines": [ + { + "bbox": [ + 104, + 596, + 270, + 612 + ], + "spans": [ + { + "bbox": [ + 104, + 596, + 270, + 612 + ], + "score": 1.0, + "content": "3 Preliminaries and Notations", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 339, + 636 + ], + "score": 1.0, + "content": "Graph Representation Learning. A graph is denoted by", + "type": "text" + }, + { + "bbox": [ + 340, + 622, + 388, + 634 + ], + "score": 0.87, + "content": "\\mathcal { G } = \\left( \\mathbf { A } , \\mathbf { X } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 620, + 393, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 393, + 622, + 438, + 633 + ], + "score": 0.86, + "content": "\\mathbf { A } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 620, + 506, + 636 + ], + "score": 1.0, + "content": "is the adjacency", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 632, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 138, + 648 + ], + "score": 1.0, + "content": "matrix.", + "type": "text" + }, + { + "bbox": [ + 138, + 633, + 183, + 645 + ], + "score": 0.92, + "content": "\\mathbf { X } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 632, + 323, + 648 + ], + "score": 1.0, + "content": "is the node attribute matrix, where", + "type": "text" + }, + { + "bbox": [ + 324, + 635, + 330, + 644 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 632, + 506, + 648 + ], + "score": 1.0, + "content": "is the attribute dimension. In this work, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 422, + 658 + ], + "score": 1.0, + "content": "focus on both node-level and graph-level tasks. For node-level task, given graph", + "type": "text" + }, + { + "bbox": [ + 422, + 646, + 430, + 656 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 644, + 505, + 658 + ], + "score": 1.0, + "content": "and the labels of a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 218, + 669 + ], + "score": 1.0, + "content": "subset of nodes, denoted by", + "type": "text" + }, + { + "bbox": [ + 218, + 657, + 232, + 667 + ], + "score": 0.89, + "content": "{ \\bf Y } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 655, + 408, + 669 + ], + "score": 1.0, + "content": ", the goal is to learn the latent representation", + "type": "text" + }, + { + "bbox": [ + 408, + 658, + 419, + 667 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 655, + 477, + 669 + ], + "score": 1.0, + "content": "for each node", + "type": "text" + }, + { + "bbox": [ + 477, + 658, + 483, + 666 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 124, + 679 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 668, + 135, + 678 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "preserves both network structures and node attributes, which can be further used to predict", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 120, + 689 + ], + "score": 0.88, + "content": "{ \\bf Y } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 676, + 299, + 691 + ], + "score": 1.0, + "content": ". For graph-level task, given a set of graphs", + "type": "text" + }, + { + "bbox": [ + 300, + 677, + 378, + 690 + ], + "score": 0.92, + "content": "\\mathbb { G } = \\{ \\mathcal { G } ^ { 1 } , \\mathcal { G } ^ { 2 } , \\cdot \\cdot \\cdot \\mathrm ~ \\} \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "and the labels of some graphs,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 154, + 702 + ], + "score": 1.0, + "content": "denoted by", + "type": "text" + }, + { + "bbox": [ + 154, + 689, + 168, + 701 + ], + "score": 0.89, + "content": "\\mathbf { Y } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 688, + 351, + 702 + ], + "score": 1.0, + "content": ", the goal is to learn the latent representation", + "type": "text" + }, + { + "bbox": [ + 351, + 691, + 362, + 702 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 688, + 463, + 702 + ], + "score": 1.0, + "content": "for each graph such that", + "type": "text" + }, + { + "bbox": [ + 464, + 690, + 475, + 702 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 168, + 714 + ], + "score": 1.0, + "content": "used to predict", + "type": "text" + }, + { + "bbox": [ + 168, + 700, + 182, + 712 + ], + "score": 0.89, + "content": "\\mathbf { Y } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 699, + 506, + 714 + ], + "score": 1.0, + "content": ". Typically, the graph data is fed into graph neural networks (GNNs) to generate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 284, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 218, + 725 + ], + "score": 1.0, + "content": "the representations, such as", + "type": "text" + }, + { + "bbox": [ + 218, + 711, + 279, + 723 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { g } = \\mathbf { G } \\mathbf { N } \\mathbf { N } \\mathbf { s } ( \\mathcal { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 709, + 284, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "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": [ + 107, + 72, + 505, + 127 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 73, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 143, + 197, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 198, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 198, + 158 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "Graph Contrastive Learning. Some recent research efforts in graph domain have been attracted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 180, + 504, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 504, + 191 + ], + "score": 1.0, + "content": "by the success of contrastive learning in vision and language domains [3, 8, 4]. A number of graph", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 191, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 202 + ], + "score": 1.0, + "content": "contrastive learning approaches have been proposed [28, 22, 42, 13]. Despite all of them creating two", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 213 + ], + "score": 1.0, + "content": "views and targeting at maximizing the feature disagreement between the two views, these methods", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "are carefully designed and differ in various aspects. Deep graph Infomax (DGI) [33] applied the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 506, + 236 + ], + "score": 1.0, + "content": "InfoMax principle [18] to graph data by contrasting the representations of node-level and graph-level", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 235, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 505, + 245 + ], + "score": 1.0, + "content": "for node classification tasks. Different from DGI, InfoGraph [28] aims at node classification tasks", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "and it contrasts the representations of graph-level and substructure-level of different granularity. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "addition, DGI and InfoGraph use different graph encoders to extract latent representations. mvgrl [13]", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "studies both node and graph classification tasks. It transforms the adjacency matrix to a diffusion", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 507, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 507, + 291 + ], + "score": 1.0, + "content": "matrix and treat the two matrices as two congruent views. However, in GCC [22] and GRACE [45],", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "subgraph sampling and graph perturbation are used to create the augmented views. GraphCL [42]", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "explores the view augmentations approaches for graph contrastive learning. Specifically, it studies the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 506, + 323 + ], + "score": 1.0, + "content": "approaches of node dropping, edge perturbation, attribute masking, and subgraph sampling. A recent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "work [44] also studies graph data augmentations. However, it focuses on graph neural networks for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "node classification and does not study the contrastive learning framework. Our method differs from", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 355 + ], + "score": 1.0, + "content": "them. We aim to answer the question how to perform contrastive learning for your graph data and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 368 + ], + "score": 1.0, + "content": "tasks. Instead of carefully designing the architectures, we decouple typical graph contrastive learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "into three stages and provide our InfoGCL principles to analyze the optimality theoretically and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 376, + 154, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 154, + 388 + ], + "score": 1.0, + "content": "practically.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 168, + 507, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 507, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 507, + 405 + ], + "score": 1.0, + "content": "Information Bottleneck. Our method is related to the Information Bottleneck (IB) theory [31],", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "which aims to find the best trade-off between accuracy and complexity when summarizing a random", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 426 + ], + "score": 1.0, + "content": "variable. IB has been recently used to study the deep learning approaches [26, 37, 43]. Specifically,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 424, + 479, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 380, + 438 + ], + "score": 1.0, + "content": "IB expresses the trade-off between the mutual information measures", + "type": "text" + }, + { + "bbox": [ + 381, + 425, + 416, + 437 + ], + "score": 0.93, + "content": "I ( \\mathbf { D } , \\mathbf { Z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 424, + 434, + 438 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 425, + 466, + 437 + ], + "score": 0.93, + "content": "I ( \\mathbf { Z } , \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 424, + 479, + 438 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 390, + 507, + 438 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 442, + 379, + 456 + ], + "lines": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "spans": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } \\mathbf { I } \\mathbf { B } _ { \\beta } = - I ( \\mathbf { D } ; \\mathbf { Z } ) + \\beta I ( \\mathbf { Z } ; \\mathbf { y } ) ,", + "type": "interline_equation", + "image_path": "7f84f97e8d7cee3894f71d06c6fa2677f0ffb3b47533ae9a9b4fe1e1c4da0508.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 230, + 442, + 379, + 456 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 461, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 478, + 474 + ], + "score": 1.0, + "content": "where D, Z, y are the input, the latent representation and the task label, respectively.", + "type": "text" + }, + { + "bbox": [ + 478, + 462, + 485, + 471 + ], + "score": 0.75, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 375, + 484 + ], + "score": 1.0, + "content": "hyperparameter. In other words, IB aims to learn representation", + "type": "text" + }, + { + "bbox": [ + 375, + 472, + 383, + 482 + ], + "score": 0.53, + "content": "\\mathbf { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "that is maximally expressive", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 482, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 303, + 497 + ], + "score": 1.0, + "content": "about y, while being minimally expressive about", + "type": "text" + }, + { + "bbox": [ + 304, + 483, + 314, + 493 + ], + "score": 0.3, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 482, + 506, + 497 + ], + "score": 1.0, + "content": ". More recently, there are some efforts applying", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 506, + 507 + ], + "score": 1.0, + "content": "the IB theory to graph representation learning. [37] aims to generate both expressive and robust", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "graph representations, while [43] studies the subgraph recognition problem. In contrast, our work", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "focuses on graph contrastive learning, where the two augmented views make the optimization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "objective (information trade-off) different. Our work is also related to the idea of minimal sufficient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "statistics [27], which has been recently studied in the vision domain [30], claiming that a good set of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "image views should share the minimal information necessary to perform well at the downstream task.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "Different from [30], we focus on the graph domain and propose three stages considering the unique", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 571, + 206, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 206, + 582 + ], + "score": 1.0, + "content": "properties of graph data.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 461, + 506, + 582 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 269, + 610 + ], + "lines": [ + { + "bbox": [ + 104, + 596, + 270, + 612 + ], + "spans": [ + { + "bbox": [ + 104, + 596, + 270, + 612 + ], + "score": 1.0, + "content": "3 Preliminaries and Notations", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 339, + 636 + ], + "score": 1.0, + "content": "Graph Representation Learning. A graph is denoted by", + "type": "text" + }, + { + "bbox": [ + 340, + 622, + 388, + 634 + ], + "score": 0.87, + "content": "\\mathcal { G } = \\left( \\mathbf { A } , \\mathbf { X } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 620, + 393, + 636 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 393, + 622, + 438, + 633 + ], + "score": 0.86, + "content": "\\mathbf { A } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 620, + 506, + 636 + ], + "score": 1.0, + "content": "is the adjacency", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 632, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 138, + 648 + ], + "score": 1.0, + "content": "matrix.", + "type": "text" + }, + { + "bbox": [ + 138, + 633, + 183, + 645 + ], + "score": 0.92, + "content": "\\mathbf { X } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 632, + 323, + 648 + ], + "score": 1.0, + "content": "is the node attribute matrix, where", + "type": "text" + }, + { + "bbox": [ + 324, + 635, + 330, + 644 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 632, + 506, + 648 + ], + "score": 1.0, + "content": "is the attribute dimension. In this work, we", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 422, + 658 + ], + "score": 1.0, + "content": "focus on both node-level and graph-level tasks. For node-level task, given graph", + "type": "text" + }, + { + "bbox": [ + 422, + 646, + 430, + 656 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 644, + 505, + 658 + ], + "score": 1.0, + "content": "and the labels of a", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 218, + 669 + ], + "score": 1.0, + "content": "subset of nodes, denoted by", + "type": "text" + }, + { + "bbox": [ + 218, + 657, + 232, + 667 + ], + "score": 0.89, + "content": "{ \\bf Y } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 655, + 408, + 669 + ], + "score": 1.0, + "content": ", the goal is to learn the latent representation", + "type": "text" + }, + { + "bbox": [ + 408, + 658, + 419, + 667 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 655, + 477, + 669 + ], + "score": 1.0, + "content": "for each node", + "type": "text" + }, + { + "bbox": [ + 477, + 658, + 483, + 666 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "such", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 124, + 679 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 668, + 135, + 678 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "preserves both network structures and node attributes, which can be further used to predict", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 120, + 689 + ], + "score": 0.88, + "content": "{ \\bf Y } _ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 676, + 299, + 691 + ], + "score": 1.0, + "content": ". For graph-level task, given a set of graphs", + "type": "text" + }, + { + "bbox": [ + 300, + 677, + 378, + 690 + ], + "score": 0.92, + "content": "\\mathbb { G } = \\{ \\mathcal { G } ^ { 1 } , \\mathcal { G } ^ { 2 } , \\cdot \\cdot \\cdot \\mathrm ~ \\} \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "and the labels of some graphs,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 154, + 702 + ], + "score": 1.0, + "content": "denoted by", + "type": "text" + }, + { + "bbox": [ + 154, + 689, + 168, + 701 + ], + "score": 0.89, + "content": "\\mathbf { Y } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 688, + 351, + 702 + ], + "score": 1.0, + "content": ", the goal is to learn the latent representation", + "type": "text" + }, + { + "bbox": [ + 351, + 691, + 362, + 702 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 688, + 463, + 702 + ], + "score": 1.0, + "content": "for each graph such that", + "type": "text" + }, + { + "bbox": [ + 464, + 690, + 475, + 702 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 168, + 714 + ], + "score": 1.0, + "content": "used to predict", + "type": "text" + }, + { + "bbox": [ + 168, + 700, + 182, + 712 + ], + "score": 0.89, + "content": "\\mathbf { Y } _ { g }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 699, + 506, + 714 + ], + "score": 1.0, + "content": ". Typically, the graph data is fed into graph neural networks (GNNs) to generate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 284, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 218, + 725 + ], + "score": 1.0, + "content": "the representations, such as", + "type": "text" + }, + { + "bbox": [ + 218, + 711, + 279, + 723 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { g } = \\mathbf { G } \\mathbf { N } \\mathbf { N } \\mathbf { s } ( \\mathcal { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 709, + 284, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47, + "bbox_fs": [ + 104, + 620, + 506, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 127, + 57, + 486, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 57, + 486, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 57, + 486, + 172 + ], + "spans": [ + { + "bbox": [ + 127, + 57, + 486, + 172 + ], + "score": 0.934, + "type": "image", + "image_path": "31bbe816886e04d01d4fbcb07da4238bee69f393597ea0505da4fb5f0de51ece.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 57, + 486, + 95.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 95.33333333333334, + 486, + 133.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 133.66666666666669, + 486, + 172.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 180, + 506, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 432, + 194 + ], + "score": 1.0, + "content": "Figure 2: Illustration of optimal views. (Left) The relationships between graph", + "type": "text" + }, + { + "bbox": [ + 433, + 181, + 441, + 191 + ], + "score": 0.78, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 178, + 491, + 194 + ], + "score": 1.0, + "content": ", two views,", + "type": "text" + }, + { + "bbox": [ + 492, + 182, + 502, + 191 + ], + "score": 0.84, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 178, + 507, + 194 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 117, + 203 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 190, + 159, + 204 + ], + "score": 1.0, + "content": ", and task", + "type": "text" + }, + { + "bbox": [ + 159, + 193, + 166, + 203 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 190, + 506, + 204 + ], + "score": 1.0, + "content": "in terms of information entropy. A, B, C, D, E are overlapping areas. Two views", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "are contained by graph because views are functions of graph. (Middle) A, B, E become null when", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Eqs. (4)-(5) hold, which indicates the views and graph share the same amount of task-relevant", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "score": 1.0, + "content": "information. (Right) C further becomes null when Eq. (3) holds, which indicates all the shared", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 389, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 389, + 246 + ], + "score": 1.0, + "content": "information between views is task-relevant, i.e., the views are optimal.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "Graph Contrastive Learning. Given an input graph, graph contrastive learning aims to learn", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "the representations of graph or nodes (for graph-level or node-level tasks respectively) through", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "maximizing the feature consistency between two augmented views of the input graph via contrastive", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "loss in the latent space. We decouple a typical graph contrastive learning model into three sequential", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 145, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 145, + 326 + ], + "score": 1.0, + "content": "modules.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 506, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 233, + 343 + ], + "score": 1.0, + "content": "(i) View augmentation. Graph", + "type": "text" + }, + { + "bbox": [ + 233, + 331, + 241, + 341 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 330, + 361, + 343 + ], + "score": 1.0, + "content": "undergoes data augmentation", + "type": "text" + }, + { + "bbox": [ + 361, + 330, + 378, + 342 + ], + "score": 0.93, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 330, + 459, + 343 + ], + "score": 1.0, + "content": "to obtain two views", + "type": "text" + }, + { + "bbox": [ + 460, + 333, + 470, + 341 + ], + "score": 0.67, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 330, + 473, + 343 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 474, + 332, + 485, + 342 + ], + "score": 0.72, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 330, + 506, + 343 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 152, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { i } \\sim q _ { i } ( \\mathcal { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 340, + 171, + 354 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 341, + 218, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { j } \\sim q _ { j } ( { \\mathcal { G } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 340, + 406, + 354 + ], + "score": 1.0, + "content": ". A view is represented as graph data, such as", + "type": "text" + }, + { + "bbox": [ + 406, + 341, + 473, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { i } = ( \\mathbf { A } _ { v _ { i } } , \\mathbf { X } _ { v _ { i } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 340, + 506, + 354 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 350, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 159, + 365 + ], + "score": 0.9, + "content": "\\mathbf { A } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 350, + 178, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 353, + 230, + 365 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 350, + 507, + 367 + ], + "score": 1.0, + "content": ". In practice, view augmentation approaches include node dropping,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 364, + 279, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 279, + 378 + ], + "score": 1.0, + "content": "edge perturbation, subgraph sampling, etc.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 465, + 393 + ], + "score": 1.0, + "content": "(ii) View encoding. Graph-level or node-level latent representation is extracted from views", + "type": "text" + }, + { + "bbox": [ + 466, + 382, + 492, + 392 + ], + "score": 0.28, + "content": "\\mathbf { v } _ { i } , \\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 390, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 243, + 405 + ], + "score": 1.0, + "content": "using the view encoder networks", + "type": "text" + }, + { + "bbox": [ + 243, + 391, + 261, + 403 + ], + "score": 0.91, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 390, + 456, + 405 + ], + "score": 1.0, + "content": "(a GNN backbone plus a projection MLP), i.e.,", + "type": "text" + }, + { + "bbox": [ + 457, + 392, + 505, + 403 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { i } \\sim f _ { i } ( \\mathbf { v } _ { i } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 123, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 402, + 173, + 415 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { j } \\sim f _ { j } ( \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 402, + 505, + 416 + ], + "score": 1.0, + "content": ". The two encoders might or might not share parameters depending on whether they", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 215, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 215, + 425 + ], + "score": 1.0, + "content": "are from the same domain.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "(iii) Representation contrasting. Given the latent representations, a contrastive loss is optimized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 213, + 453 + ], + "score": 1.0, + "content": "to score the positive pairs", + "type": "text" + }, + { + "bbox": [ + 214, + 442, + 239, + 453 + ], + "score": 0.3, + "content": "\\mathbf { z } _ { i } , \\mathbf { z } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "higher compared to other negative pairs. Typically, the negative", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "pairs are constructed from the augmented views of other graphs in the same minibatch. The InfoNCE", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 442, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 442, + 474 + ], + "score": 1.0, + "content": "loss [21] has been adopted as one of popular contrastive losses, which is defined as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 478, + 402, + 512 + ], + "lines": [ + { + "bbox": [ + 207, + 478, + 402, + 512 + ], + "spans": [ + { + "bbox": [ + 207, + 478, + 402, + 512 + ], + "score": 0.95, + "content": "\\mathcal { L } _ { N C E } = - \\mathbb { E } \\left[ l o g \\frac { e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n } ) ) } { \\sum _ { n ^ { \\prime } = 1 } ^ { N } e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n ^ { \\prime } } ) ) } \\right] ,", + "type": "interline_equation", + "image_path": "d05cd4c4ab1aa019c5cbd7a3e1158215a8e8279c058e4b2ea6f80dbb348a503c.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 478, + 402, + 495.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 207, + 495.0, + 402, + 512.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 133, + 530 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 517, + 150, + 529 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "is a contrasting operation to score the agreement between two representations. Theoreti-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "cally, minimizing the InfoNCE loss equivalently maximizes a lower bound on the mutual information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 307, + 552 + ], + "score": 1.0, + "content": "between the views of positive pairs. In other words,", + "type": "text" + }, + { + "bbox": [ + 307, + 538, + 419, + 551 + ], + "score": 0.92, + "content": "I ( \\mathbf { z } _ { i } , \\mathbf { z } _ { j } ) \\geqslant l o g ( N ) - \\mathcal { L } _ { N C E }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 539, + 448, + 552 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 449, + 539, + 465, + 551 + ], + "score": 0.9, + "content": "I ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "measures", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 203, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 203, + 561 + ], + "score": 1.0, + "content": "the mutual information.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 106, + 576, + 375, + 590 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 376, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 376, + 593 + ], + "score": 1.0, + "content": "4 Information-Aware Graph Contrastive Learning", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "In this paper, we study how to perform contrastive learning for specific graph tasks and datasets. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 612, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 624 + ], + "score": 1.0, + "content": "particular, we attempt to answer the following questions for graph contrastive learning: (i) What", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "is the optimal augmented views? (ii) What is the optimal view encoder? (iii) What is the optimal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 635, + 181, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 181, + 644 + ], + "score": 1.0, + "content": "contrastive mode?", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 658, + 214, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 216, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 216, + 671 + ], + "score": 1.0, + "content": "4.1 View Augmentation", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "The goal of view augmentation is to create realistically rational data via the transformation approaches", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "that do not affect the semantic label. Compared to the augmentation in other domains, graph view", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "augmentation needs to consider the structural information of graph data, such as the node, the edge,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "and the subgraph. There are various graph view augmentation methods proposed recently. We follow", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.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": "image", + "bbox": [ + 127, + 57, + 486, + 172 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 57, + 486, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 57, + 486, + 172 + ], + "spans": [ + { + "bbox": [ + 127, + 57, + 486, + 172 + ], + "score": 0.934, + "type": "image", + "image_path": "31bbe816886e04d01d4fbcb07da4238bee69f393597ea0505da4fb5f0de51ece.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 57, + 486, + 95.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 95.33333333333334, + 486, + 133.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 133.66666666666669, + 486, + 172.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 180, + 506, + 246 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 178, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 432, + 194 + ], + "score": 1.0, + "content": "Figure 2: Illustration of optimal views. (Left) The relationships between graph", + "type": "text" + }, + { + "bbox": [ + 433, + 181, + 441, + 191 + ], + "score": 0.78, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 178, + 491, + 194 + ], + "score": 1.0, + "content": ", two views,", + "type": "text" + }, + { + "bbox": [ + 492, + 182, + 502, + 191 + ], + "score": 0.84, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 178, + 507, + 194 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 117, + 203 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 190, + 159, + 204 + ], + "score": 1.0, + "content": ", and task", + "type": "text" + }, + { + "bbox": [ + 159, + 193, + 166, + 203 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 190, + 506, + 204 + ], + "score": 1.0, + "content": "in terms of information entropy. A, B, C, D, E are overlapping areas. Two views", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "are contained by graph because views are functions of graph. (Middle) A, B, E become null when", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "Eqs. (4)-(5) hold, which indicates the views and graph share the same amount of task-relevant", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "score": 1.0, + "content": "information. (Right) C further becomes null when Eq. (3) holds, which indicates all the shared", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 234, + 389, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 389, + 246 + ], + "score": 1.0, + "content": "information between views is task-relevant, i.e., the views are optimal.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "Graph Contrastive Learning. Given an input graph, graph contrastive learning aims to learn", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 504, + 293 + ], + "score": 1.0, + "content": "the representations of graph or nodes (for graph-level or node-level tasks respectively) through", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "maximizing the feature consistency between two augmented views of the input graph via contrastive", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "loss in the latent space. We decouple a typical graph contrastive learning model into three sequential", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 313, + 145, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 145, + 326 + ], + "score": 1.0, + "content": "modules.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 270, + 505, + 326 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 506, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 233, + 343 + ], + "score": 1.0, + "content": "(i) View augmentation. Graph", + "type": "text" + }, + { + "bbox": [ + 233, + 331, + 241, + 341 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 330, + 361, + 343 + ], + "score": 1.0, + "content": "undergoes data augmentation", + "type": "text" + }, + { + "bbox": [ + 361, + 330, + 378, + 342 + ], + "score": 0.93, + "content": "q ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 330, + 459, + 343 + ], + "score": 1.0, + "content": "to obtain two views", + "type": "text" + }, + { + "bbox": [ + 460, + 333, + 470, + 341 + ], + "score": 0.67, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 330, + 473, + 343 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 474, + 332, + 485, + 342 + ], + "score": 0.72, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 330, + 506, + 343 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 152, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { i } \\sim q _ { i } ( \\mathcal { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 340, + 171, + 354 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 171, + 341, + 218, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { j } \\sim q _ { j } ( { \\mathcal { G } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 340, + 406, + 354 + ], + "score": 1.0, + "content": ". A view is represented as graph data, such as", + "type": "text" + }, + { + "bbox": [ + 406, + 341, + 473, + 353 + ], + "score": 0.91, + "content": "\\mathbf { v } _ { i } = ( \\mathbf { A } _ { v _ { i } } , \\mathbf { X } _ { v _ { i } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 340, + 506, + 354 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 350, + 507, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 159, + 365 + ], + "score": 0.9, + "content": "\\mathbf { A } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times n }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 350, + 178, + 367 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 178, + 353, + 230, + 365 + ], + "score": 0.91, + "content": "\\mathbf { X } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 350, + 507, + 367 + ], + "score": 1.0, + "content": ". In practice, view augmentation approaches include node dropping,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 364, + 279, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 279, + 378 + ], + "score": 1.0, + "content": "edge perturbation, subgraph sampling, etc.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 330, + 507, + 378 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 465, + 393 + ], + "score": 1.0, + "content": "(ii) View encoding. Graph-level or node-level latent representation is extracted from views", + "type": "text" + }, + { + "bbox": [ + 466, + 382, + 492, + 392 + ], + "score": 0.28, + "content": "\\mathbf { v } _ { i } , \\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 390, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 243, + 405 + ], + "score": 1.0, + "content": "using the view encoder networks", + "type": "text" + }, + { + "bbox": [ + 243, + 391, + 261, + 403 + ], + "score": 0.91, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 390, + 456, + 405 + ], + "score": 1.0, + "content": "(a GNN backbone plus a projection MLP), i.e.,", + "type": "text" + }, + { + "bbox": [ + 457, + 392, + 505, + 403 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { i } \\sim f _ { i } ( \\mathbf { v } _ { i } )", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 123, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 402, + 173, + 415 + ], + "score": 0.92, + "content": "\\mathbf { z } _ { j } \\sim f _ { j } ( \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 402, + 505, + 416 + ], + "score": 1.0, + "content": ". The two encoders might or might not share parameters depending on whether they", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 413, + 215, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 215, + 425 + ], + "score": 1.0, + "content": "are from the same domain.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 380, + 506, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 429, + 505, + 474 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "(iii) Representation contrasting. Given the latent representations, a contrastive loss is optimized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 213, + 453 + ], + "score": 1.0, + "content": "to score the positive pairs", + "type": "text" + }, + { + "bbox": [ + 214, + 442, + 239, + 453 + ], + "score": 0.3, + "content": "\\mathbf { z } _ { i } , \\mathbf { z } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "higher compared to other negative pairs. Typically, the negative", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "pairs are constructed from the augmented views of other graphs in the same minibatch. The InfoNCE", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 463, + 442, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 442, + 474 + ], + "score": 1.0, + "content": "loss [21] has been adopted as one of popular contrastive losses, which is defined as:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 430, + 505, + 474 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 478, + 402, + 512 + ], + "lines": [ + { + "bbox": [ + 207, + 478, + 402, + 512 + ], + "spans": [ + { + "bbox": [ + 207, + 478, + 402, + 512 + ], + "score": 0.95, + "content": "\\mathcal { L } _ { N C E } = - \\mathbb { E } \\left[ l o g \\frac { e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n } ) ) } { \\sum _ { n ^ { \\prime } = 1 } ^ { N } e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n ^ { \\prime } } ) ) } \\right] ,", + "type": "interline_equation", + "image_path": "d05cd4c4ab1aa019c5cbd7a3e1158215a8e8279c058e4b2ea6f80dbb348a503c.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 478, + 402, + 495.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 207, + 495.0, + 402, + 512.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 133, + 530 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 517, + 150, + 529 + ], + "score": 0.9, + "content": "h ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "is a contrasting operation to score the agreement between two representations. Theoreti-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "cally, minimizing the InfoNCE loss equivalently maximizes a lower bound on the mutual information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 307, + 552 + ], + "score": 1.0, + "content": "between the views of positive pairs. In other words,", + "type": "text" + }, + { + "bbox": [ + 307, + 538, + 419, + 551 + ], + "score": 0.92, + "content": "I ( \\mathbf { z } _ { i } , \\mathbf { z } _ { j } ) \\geqslant l o g ( N ) - \\mathcal { L } _ { N C E }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 539, + 448, + 552 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 449, + 539, + 465, + 551 + ], + "score": 0.9, + "content": "I ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "measures", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 549, + 203, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 203, + 561 + ], + "score": 1.0, + "content": "the mutual information.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 517, + 506, + 561 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 576, + 375, + 590 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 376, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 376, + 593 + ], + "score": 1.0, + "content": "4 Information-Aware Graph Contrastive Learning", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "In this paper, we study how to perform contrastive learning for specific graph tasks and datasets. In", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 612, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 506, + 624 + ], + "score": 1.0, + "content": "particular, we attempt to answer the following questions for graph contrastive learning: (i) What", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "is the optimal augmented views? (ii) What is the optimal view encoder? (iii) What is the optimal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 635, + 181, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 181, + 644 + ], + "score": 1.0, + "content": "contrastive mode?", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 601, + 506, + 644 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 658, + 214, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 216, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 216, + 671 + ], + "score": 1.0, + "content": "4.1 View Augmentation", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "The goal of view augmentation is to create realistically rational data via the transformation approaches", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "that do not affect the semantic label. Compared to the augmentation in other domains, graph view", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "augmentation needs to consider the structural information of graph data, such as the node, the edge,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 505, + 723 + ], + "score": 1.0, + "content": "and the subgraph. There are various graph view augmentation methods proposed recently. We follow", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "a similar definition used in [42] to categorize four kinds of view augmentation approaches for graph", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "data. Node dropping discards a certain part of nodes along with their edges in the input graph", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 108 + ], + "score": 1.0, + "content": "to create a new graph view. Edge perturbation perturbs the connectivity in the graph via adding", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "or dropping partial edges. Attribute masking masks part of node attributes and assumes that the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "missing attributes can be well predicted by the remaining ones. Subgraph sampling samples a", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 126, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 141 + ], + "score": 1.0, + "content": "subgraph from the input graph. The rationale behind these approaches is that the semantic meaning", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 138, + 321, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 321, + 151 + ], + "score": 1.0, + "content": "of graph has certain robustness to graph perturbation.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 678, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "a similar definition used in [42] to categorize four kinds of view augmentation approaches for graph", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "data. Node dropping discards a certain part of nodes along with their edges in the input graph", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 108 + ], + "score": 1.0, + "content": "to create a new graph view. Edge perturbation perturbs the connectivity in the graph via adding", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "or dropping partial edges. Attribute masking masks part of node attributes and assumes that the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "missing attributes can be well predicted by the remaining ones. Subgraph sampling samples a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 126, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 141 + ], + "score": 1.0, + "content": "subgraph from the input graph. The rationale behind these approaches is that the semantic meaning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 138, + 321, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 321, + 151 + ], + "score": 1.0, + "content": "of graph has certain robustness to graph perturbation.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "The augmented views generated in the graph contrastive framework are typically used in a separate", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 166, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 177 + ], + "score": 1.0, + "content": "downstream task. To characterize what views are optimal for a downstream task, we define the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "optimality of views. The main motivation is: the optimal augmented views should contain the most", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 500, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 500, + 200 + ], + "score": 1.0, + "content": "task-relevant information, and the information shared between views should only be task-relevant.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 383, + 216 + ], + "score": 1.0, + "content": "Corollary 1. (Optimal Augmented Views) For a downstream task", + "type": "text" + }, + { + "bbox": [ + 383, + 204, + 392, + 213 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "whose goal is to predict a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 165, + 228 + ], + "score": 1.0, + "content": "semantic label", + "type": "text" + }, + { + "bbox": [ + 165, + 216, + 172, + 226 + ], + "score": 0.55, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 213, + 248, + 228 + ], + "score": 1.0, + "content": ", the optimal views,", + "type": "text" + }, + { + "bbox": [ + 248, + 215, + 277, + 228 + ], + "score": 0.25, + "content": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 213, + 404, + 228 + ], + "score": 1.0, + "content": ", generated from the input graph", + "type": "text" + }, + { + "bbox": [ + 405, + 215, + 412, + 225 + ], + "score": 0.8, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "are the solutions to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 241, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 241, + 239 + ], + "score": 1.0, + "content": "following optimization problem :", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 240, + 366, + 293 + ], + "lines": [ + { + "bbox": [ + 245, + 240, + 364, + 292 + ], + "spans": [ + { + "bbox": [ + 245, + 240, + 364, + 292 + ], + "score": 0.44, + "content": "\\begin{array} { c } { { ( \\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ) = \\underset { \\mathbf { v } _ { i } , \\mathbf { v } _ { j } } { \\arg \\operatorname* { m i n } I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } ) } } } \\\\ { { s . t . ~ I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathbf { v } _ { j } ; y ) } } \\\\ { { I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathcal { G } ; y ) } } \\end{array}", + "type": "interline_equation", + "image_path": "125154646e54d112b4e2f0b360da0088cfe4aa1ee53731aad8f5655118279355.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 245, + 240, + 366, + 266.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 245, + 266.5, + 366, + 293.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "This says that for the optimal graph views, the amount of information shared between them is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "minimized (Eq. (3)), while the two views contain the same amount of information with respect to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 107, + 321, + 113, + 330 + ], + "score": 0.61, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "(Eq. (4)), which is also the amount of information that the input gprah contains about the task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 507, + 343 + ], + "score": 1.0, + "content": "(Eq. (5)). The illustration of the optimal views is shown in Figure 2 and the proof is in the Appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 195, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 351, + 197, + 369 + ], + "spans": [ + { + "bbox": [ + 104, + 351, + 197, + 369 + ], + "score": 1.0, + "content": "4.2 View Encoding", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "View encoding aims to extract the latent representations of nodes or graphs via feeding the data of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "two views into view encoder networks such that the generated representations preserve both structure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "and attribute information in the views. The view encoders are quite flexible in graph contrastive", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 407, + 388, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 388, + 420 + ], + "score": 1.0, + "content": "learning and typically they are GCN [15], GAT [32], or GIN [38], etc.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "The representations extracted via view encoding are further utilized to optimize the objective function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "score": 1.0, + "content": "of contrastive learning. After well trained, the view encoders are used to generate the graph/node", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "representations for a downstream task. To characterize what encoders are optimal, we define the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "optimality of view encoders for graph contrastive learning. The main motivation is: the representation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "generated by the optimal encoder for a view should keep all the shared information by the two", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 388, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 388, + 489 + ], + "score": 1.0, + "content": "contrastive views, meanwhile the kept information is all task-relevant.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 494, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 368, + 507 + ], + "score": 1.0, + "content": "Corollary 2. (Optimal View Encoder) Given the optimal views,", + "type": "text" + }, + { + "bbox": [ + 368, + 495, + 397, + 509 + ], + "score": 0.25, + "content": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 493, + 495, + 507 + ], + "score": 1.0, + "content": ", for a downstream task", + "type": "text" + }, + { + "bbox": [ + 495, + 495, + 504, + 504 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 273, + 517 + ], + "score": 1.0, + "content": "whose goal is to predict a semantic label", + "type": "text" + }, + { + "bbox": [ + 273, + 507, + 280, + 517 + ], + "score": 0.52, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 505, + 422, + 517 + ], + "score": 1.0, + "content": ", the optimal view encoder for view", + "type": "text" + }, + { + "bbox": [ + 423, + 506, + 434, + 517 + ], + "score": 0.88, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "is the solution to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 516, + 255, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 255, + 528 + ], + "score": 1.0, + "content": "the following optimization problem :", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 532, + 366, + 553 + ], + "lines": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "spans": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "score": 0.57, + "content": "\\boldsymbol f _ { i } ^ { * } = \\arg \\operatorname* { m i n } _ { \\boldsymbol f _ { i } } I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { i } ^ { * } )", + "type": "interline_equation", + "image_path": "5d79d772c3dbbfc6cadd034a3c8060d85b65cdbbf856c42f70ed5b69a5848e92.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 555, + 369, + 570 + ], + "lines": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "spans": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "score": 0.47, + "content": "s . t . \\ I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { j } ^ { * } ) = I ( \\mathbf { v } _ { i } ^ { * } ; \\mathbf { v } _ { j } ^ { * } )", + "type": "interline_equation", + "image_path": "0d136a4cfea519c254df35fe0488265f4797a827eba594b8a1635cf351fa73ae.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "It indicates that for the optimal view encoder, the amount of information shared between the optimal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "view and the extracted representation is minimized (Eq. (6)), while the information shared between", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "the two optimal views is kept after the encoding process of one view (Eq. (7)). The illustration of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 612, + 434, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 434, + 624 + ], + "score": 1.0, + "content": "optimal encoder is shown in Figure 3 and the proof is illustrated in the Appendix.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 249, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 250, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 250, + 651 + ], + "score": 1.0, + "content": "4.3 Representation Contrasting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "To allow flexible contrasting for graph data, we consider contrastive modes similar to [13]. A", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 230, + 680 + ], + "score": 1.0, + "content": "contrastive mode is denoted by", + "type": "text" + }, + { + "bbox": [ + 230, + 667, + 280, + 680 + ], + "score": 0.92, + "content": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 666, + 309, + 680 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 310, + 667, + 329, + 679 + ], + "score": 0.64, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 666, + 332, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 332, + 667, + 353, + 680 + ], + "score": 0.58, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "are the aggregation operations applied", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "to the representations extracted by view encoders, The contrastive modes are unique to graph data", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "because of the structural information inside a graph. Specifically, we consider five contrastive modes.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 461, + 713 + ], + "score": 1.0, + "content": "In global-global mode, the graph representations from two views are contrasted. Thus,", + "type": "text" + }, + { + "bbox": [ + 461, + 700, + 480, + 712 + ], + "score": 0.55, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 700, + 484, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 484, + 699, + 505, + 712 + ], + "score": 0.59, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "are averaging aggregation operations in this mode. In local-global mode, we contrast the node", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "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": "text", + "bbox": [ + 106, + 72, + 505, + 150 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 105, + 73, + 506, + 151 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "The augmented views generated in the graph contrastive framework are typically used in a separate", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 166, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 505, + 177 + ], + "score": 1.0, + "content": "downstream task. To characterize what views are optimal for a downstream task, we define the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "optimality of views. The main motivation is: the optimal augmented views should contain the most", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 500, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 500, + 200 + ], + "score": 1.0, + "content": "task-relevant information, and the information shared between views should only be task-relevant.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 154, + 506, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 383, + 216 + ], + "score": 1.0, + "content": "Corollary 1. (Optimal Augmented Views) For a downstream task", + "type": "text" + }, + { + "bbox": [ + 383, + 204, + 392, + 213 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "whose goal is to predict a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 165, + 228 + ], + "score": 1.0, + "content": "semantic label", + "type": "text" + }, + { + "bbox": [ + 165, + 216, + 172, + 226 + ], + "score": 0.55, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 213, + 248, + 228 + ], + "score": 1.0, + "content": ", the optimal views,", + "type": "text" + }, + { + "bbox": [ + 248, + 215, + 277, + 228 + ], + "score": 0.25, + "content": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 213, + 404, + 228 + ], + "score": 1.0, + "content": ", generated from the input graph", + "type": "text" + }, + { + "bbox": [ + 405, + 215, + 412, + 225 + ], + "score": 0.8, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "are the solutions to the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 241, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 241, + 239 + ], + "score": 1.0, + "content": "following optimization problem :", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 203, + 505, + 239 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 240, + 366, + 293 + ], + "lines": [ + { + "bbox": [ + 245, + 240, + 364, + 292 + ], + "spans": [ + { + "bbox": [ + 245, + 240, + 364, + 292 + ], + "score": 0.44, + "content": "\\begin{array} { c } { { ( \\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ) = \\underset { \\mathbf { v } _ { i } , \\mathbf { v } _ { j } } { \\arg \\operatorname* { m i n } I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } ) } } } \\\\ { { s . t . ~ I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathbf { v } _ { j } ; y ) } } \\\\ { { I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathcal { G } ; y ) } } \\end{array}", + "type": "interline_equation", + "image_path": "125154646e54d112b4e2f0b360da0088cfe4aa1ee53731aad8f5655118279355.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 245, + 240, + 366, + 266.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 245, + 266.5, + 366, + 293.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "This says that for the optimal graph views, the amount of information shared between them is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "minimized (Eq. (3)), while the two views contain the same amount of information with respect to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 319, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 107, + 321, + 113, + 330 + ], + "score": 0.61, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 319, + 506, + 331 + ], + "score": 1.0, + "content": "(Eq. (4)), which is also the amount of information that the input gprah contains about the task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 507, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 507, + 343 + ], + "score": 1.0, + "content": "(Eq. (5)). The illustration of the optimal views is shown in Figure 2 and the proof is in the Appendix.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 296, + 507, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 195, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 351, + 197, + 369 + ], + "spans": [ + { + "bbox": [ + 104, + 351, + 197, + 369 + ], + "score": 1.0, + "content": "4.2 View Encoding", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "View encoding aims to extract the latent representations of nodes or graphs via feeding the data of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "two views into view encoder networks such that the generated representations preserve both structure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "and attribute information in the views. The view encoders are quite flexible in graph contrastive", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 407, + 388, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 388, + 420 + ], + "score": 1.0, + "content": "learning and typically they are GCN [15], GAT [32], or GIN [38], etc.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 374, + 506, + 420 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "The representations extracted via view encoding are further utilized to optimize the objective function", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "score": 1.0, + "content": "of contrastive learning. After well trained, the view encoders are used to generate the graph/node", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "representations for a downstream task. To characterize what encoders are optimal, we define the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "optimality of view encoders for graph contrastive learning. The main motivation is: the representation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "generated by the optimal encoder for a view should keep all the shared information by the two", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 478, + 388, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 388, + 489 + ], + "score": 1.0, + "content": "contrastive views, meanwhile the kept information is all task-relevant.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 423, + 506, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 494, + 505, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 368, + 507 + ], + "score": 1.0, + "content": "Corollary 2. (Optimal View Encoder) Given the optimal views,", + "type": "text" + }, + { + "bbox": [ + 368, + 495, + 397, + 509 + ], + "score": 0.25, + "content": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 493, + 495, + 507 + ], + "score": 1.0, + "content": ", for a downstream task", + "type": "text" + }, + { + "bbox": [ + 495, + 495, + 504, + 504 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 273, + 517 + ], + "score": 1.0, + "content": "whose goal is to predict a semantic label", + "type": "text" + }, + { + "bbox": [ + 273, + 507, + 280, + 517 + ], + "score": 0.52, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 505, + 422, + 517 + ], + "score": 1.0, + "content": ", the optimal view encoder for view", + "type": "text" + }, + { + "bbox": [ + 423, + 506, + 434, + 517 + ], + "score": 0.88, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "is the solution to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 516, + 255, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 255, + 528 + ], + "score": 1.0, + "content": "the following optimization problem :", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 493, + 505, + 528 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 532, + 366, + 553 + ], + "lines": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "spans": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "score": 0.57, + "content": "\\boldsymbol f _ { i } ^ { * } = \\arg \\operatorname* { m i n } _ { \\boldsymbol f _ { i } } I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { i } ^ { * } )", + "type": "interline_equation", + "image_path": "5d79d772c3dbbfc6cadd034a3c8060d85b65cdbbf856c42f70ed5b69a5848e92.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 249, + 532, + 366, + 553 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 555, + 369, + 570 + ], + "lines": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "spans": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "score": 0.47, + "content": "s . t . \\ I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { j } ^ { * } ) = I ( \\mathbf { v } _ { i } ^ { * } ; \\mathbf { v } _ { j } ^ { * } )", + "type": "interline_equation", + "image_path": "0d136a4cfea519c254df35fe0488265f4797a827eba594b8a1635cf351fa73ae.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 241, + 555, + 369, + 570 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 591 + ], + "score": 1.0, + "content": "It indicates that for the optimal view encoder, the amount of information shared between the optimal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "view and the extracted representation is minimized (Eq. (6)), while the information shared between", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "the two optimal views is kept after the encoding process of one view (Eq. (7)). The illustration of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 612, + 434, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 434, + 624 + ], + "score": 1.0, + "content": "optimal encoder is shown in Figure 3 and the proof is illustrated in the Appendix.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 579, + 505, + 624 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 249, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 250, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 250, + 651 + ], + "score": 1.0, + "content": "4.3 Representation Contrasting", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "To allow flexible contrasting for graph data, we consider contrastive modes similar to [13]. A", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 230, + 680 + ], + "score": 1.0, + "content": "contrastive mode is denoted by", + "type": "text" + }, + { + "bbox": [ + 230, + 667, + 280, + 680 + ], + "score": 0.92, + "content": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 666, + 309, + 680 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 310, + 667, + 329, + 679 + ], + "score": 0.64, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 666, + 332, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 332, + 667, + 353, + 680 + ], + "score": 0.58, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 666, + 505, + 680 + ], + "score": 1.0, + "content": "are the aggregation operations applied", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "to the representations extracted by view encoders, The contrastive modes are unique to graph data", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "because of the structural information inside a graph. Specifically, we consider five contrastive modes.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 461, + 713 + ], + "score": 1.0, + "content": "In global-global mode, the graph representations from two views are contrasted. Thus,", + "type": "text" + }, + { + "bbox": [ + 461, + 700, + 480, + 712 + ], + "score": 0.55, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 700, + 484, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 484, + 699, + 505, + 712 + ], + "score": 0.59, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "are averaging aggregation operations in this mode. In local-global mode, we contrast the node", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 461, + 270 + ], + "score": 1.0, + "content": "representations from one view with the graph representations from the other view. Thus,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 461, + 256, + 481, + 268 + ], + "score": 0.5, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 481, + 256, + 484, + 270 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 484, + 256, + 505, + 269 + ], + "score": 0.57, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "are the identical transformation and averaging aggregation operations, respectively. In local-local", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "mode, the node representations from two views are contrasted. In multi-scale mode, we contrast", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "graph representation of one view with the intermediate representation from the other. In hybrid", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 299, + 325, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 325, + 312 + ], + "score": 1.0, + "content": "mode, both global-global and local-global are applied.", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 655, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 127, + 58, + 485, + 146 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 58, + 485, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 58, + 485, + 146 + ], + "spans": [ + { + "bbox": [ + 127, + 58, + 485, + 146 + ], + "score": 0.967, + "type": "image", + "image_path": "a7fd63d27d26cca071ead706f3fd728ce0211916cd89519025b1dee6ce661218.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 58, + 485, + 87.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 87.33333333333333, + 485, + 116.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 116.66666666666666, + 485, + 146.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 155, + 506, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 156, + 507, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 507, + 169 + ], + "score": 1.0, + "content": "Figure 3: Illustration of optimal view encoding. (Left) The relationships between two (optimal) views,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 167, + 507, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 118, + 180 + ], + "score": 0.77, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 167, + 121, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 122, + 168, + 133, + 181 + ], + "score": 0.82, + "content": "\\mathbf { v } _ { j } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 167, + 155, + 181 + ], + "score": 1.0, + "content": ", task", + "type": "text" + }, + { + "bbox": [ + 155, + 169, + 162, + 179 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 167, + 239, + 181 + ], + "score": 1.0, + "content": ", and representation", + "type": "text" + }, + { + "bbox": [ + 239, + 169, + 249, + 178 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 167, + 507, + 181 + ], + "score": 1.0, + "content": "in terms of information entropy. A, B, C are null because the two", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 179, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 203, + 190 + ], + "score": 1.0, + "content": "views are optimal here.", + "type": "text" + }, + { + "bbox": [ + 203, + 180, + 213, + 189 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 179, + 300, + 190 + ], + "score": 1.0, + "content": "is contained by view", + "type": "text" + }, + { + "bbox": [ + 300, + 179, + 312, + 190 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 179, + 506, + 190 + ], + "score": 1.0, + "content": "because representations are functions of views.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 189, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 144, + 201 + ], + "score": 1.0, + "content": "(Middle)", + "type": "text" + }, + { + "bbox": [ + 144, + 190, + 154, + 200 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 189, + 185, + 201 + ], + "score": 1.0, + "content": "covers", + "type": "text" + }, + { + "bbox": [ + 185, + 190, + 194, + 199 + ], + "score": 0.38, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 189, + 506, + 201 + ], + "score": 1.0, + "content": "when Eq. (7) holds, which indicates the shared information between views", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 202, + 213 + ], + "score": 1.0, + "content": "is kept after encoding.", + "type": "text" + }, + { + "bbox": [ + 203, + 200, + 232, + 211 + ], + "score": 0.27, + "content": "( R i g h t )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 200, + 257, + 213 + ], + "score": 1.0, + "content": "View", + "type": "text" + }, + { + "bbox": [ + 258, + 201, + 268, + 211 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 200, + 361, + 213 + ], + "score": 1.0, + "content": "further exactly covers", + "type": "text" + }, + { + "bbox": [ + 361, + 200, + 370, + 210 + ], + "score": 0.32, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 200, + 506, + 213 + ], + "score": 1.0, + "content": "and the view encoding becomes", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 158, + 225 + ], + "score": 1.0, + "content": "optimal, i.e.,", + "type": "text" + }, + { + "bbox": [ + 158, + 212, + 169, + 223 + ], + "score": 0.89, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 211, + 396, + 225 + ], + "score": 1.0, + "content": ", which indicates all the information shared between view", + "type": "text" + }, + { + "bbox": [ + 396, + 212, + 408, + 223 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 211, + 483, + 225 + ], + "score": 1.0, + "content": "and representation", + "type": "text" + }, + { + "bbox": [ + 484, + 212, + 494, + 223 + ], + "score": 0.89, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 162, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 162, + 233 + ], + "score": 1.0, + "content": "task-relevant.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 461, + 270 + ], + "score": 1.0, + "content": "representations from one view with the graph representations from the other view. Thus,", + "type": "text" + }, + { + "bbox": [ + 461, + 256, + 481, + 268 + ], + "score": 0.5, + "content": "c _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 256, + 484, + 270 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 484, + 256, + 505, + 269 + ], + "score": 0.57, + "content": "c _ { j } ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "are the identical transformation and averaging aggregation operations, respectively. In local-local", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "mode, the node representations from two views are contrasted. In multi-scale mode, we contrast", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 506, + 302 + ], + "score": 1.0, + "content": "graph representation of one view with the intermediate representation from the other. In hybrid", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 299, + 325, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 325, + 312 + ], + "score": 1.0, + "content": "mode, both global-global and local-global are applied.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "To characterize which mode is optimal, we define the optimality of contrastive mode for graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 327, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 339 + ], + "score": 1.0, + "content": "contrastive learning. The main motivation is: the optimal contrastive mode keeps the most task-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "relevant information after the representations are aggregated. The proof is included in the Appendix.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 409, + 368 + ], + "score": 1.0, + "content": "Corollary 3. (Optimal Contrastive Mode) Given the latent representations,", + "type": "text" + }, + { + "bbox": [ + 410, + 356, + 420, + 367 + ], + "score": 0.72, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 354, + 424, + 368 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 424, + 355, + 435, + 368 + ], + "score": 0.78, + "content": "\\mathbf { z } _ { j } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 354, + 505, + 368 + ], + "score": 1.0, + "content": ", extracted by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 218, + 381 + ], + "score": 1.0, + "content": "optimal view encoders, i.e.,", + "type": "text" + }, + { + "bbox": [ + 219, + 367, + 271, + 379 + ], + "score": 0.81, + "content": "\\mathbf { z } _ { i } ^ { * } = f _ { i } ^ { * } ( \\mathbf { v } _ { i } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 366, + 274, + 381 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 275, + 367, + 326, + 380 + ], + "score": 0.76, + "content": "\\mathbf { z } _ { j _ { - } } ^ { * } = f _ { j _ { - } } ^ { * } ( \\mathbf { v } _ { j } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 366, + 428, + 381 + ], + "score": 1.0, + "content": ", and a downstream task", + "type": "text" + }, + { + "bbox": [ + 428, + 368, + 437, + 377 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 366, + 480, + 381 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 480, + 369, + 487, + 379 + ], + "score": 0.49, + "content": "y _ { \\mathrm { { i } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 366, + 506, + 381 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 451, + 391 + ], + "score": 1.0, + "content": "optimal contrastive mode is the solution to the following optimization problem, where", + "type": "text" + }, + { + "bbox": [ + 451, + 380, + 460, + 389 + ], + "score": 0.68, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 379, + 464, + 391 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 464, + 380, + 473, + 390 + ], + "score": 0.73, + "content": "c _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 389, + 351, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 351, + 402 + ], + "score": 1.0, + "content": "aggregation operations applied to the latent representations:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 404, + 385, + 426 + ], + "lines": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "spans": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "score": 0.95, + "content": "\\displaystyle ( c _ { i } ^ { * } , c _ { j } ^ { * } ) = \\arg \\operatorname* { m i n } _ { ( c _ { i } , c _ { j } ) } - I ( c _ { i } ( \\mathbf { z } _ { i } ^ { * } ) ; c _ { j } ( \\mathbf { z } _ { j } ^ { * } ) ) .", + "type": "interline_equation", + "image_path": "2c3af1818fa8af72de7349137d1173eb8200bc8d576eacace9f582cdf15289e2.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 211, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 212, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 212, + 452 + ], + "score": 1.0, + "content": "4.4 InfoGCL Principle", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "According to our proposed corollaries, we can theoretically design the optimal contrastive learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "approach for our specific graph data and task. However, in real-world scenarios, the conditions to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "meet the exact optimality of contrastive learning is hard or even not practically possible to reach", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "because of data noise and limited model capability. Therefore, we propose to achieve the optimal", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "for each stage independently and practically, which is an approximation to achieve the original", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "optimality. Specifically, we make the following propositions to address the questions of the optimal", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 524, + 347, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 347, + 536 + ], + "score": 1.0, + "content": "views, optimal view encoder, and optimal contrastive mode.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 210, + 553 + ], + "score": 1.0, + "content": "Proposition 1. For a task", + "type": "text" + }, + { + "bbox": [ + 210, + 541, + 219, + 550 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 538, + 261, + 553 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 261, + 542, + 268, + 552 + ], + "score": 0.59, + "content": "y _ { ; }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 538, + 477, + 553 + ], + "score": 1.0, + "content": ", given a bunch of graph view augmentation methods,", + "type": "text" + }, + { + "bbox": [ + 478, + 540, + 503, + 552 + ], + "score": 0.89, + "content": "\\{ q _ { 1 } ( \\cdot ) _ { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 538, + 506, + 553 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 550, + 508, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 551, + 152, + 563 + ], + "score": 0.88, + "content": "q _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 550, + 240, + 565 + ], + "score": 1.0, + "content": ", that create two views", + "type": "text" + }, + { + "bbox": [ + 240, + 553, + 250, + 561 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 550, + 254, + 565 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 254, + 553, + 266, + 562 + ], + "score": 0.78, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 550, + 483, + 565 + ], + "score": 1.0, + "content": ", the recommended augmentation methods are the ones,", + "type": "text" + }, + { + "bbox": [ + 484, + 552, + 503, + 563 + ], + "score": 0.89, + "content": "q _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 550, + 508, + 565 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 561, + 468, + 575 + ], + "spans": [ + { + "bbox": [ + 107, + 563, + 127, + 574 + ], + "score": 0.89, + "content": "q _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 561, + 189, + 575 + ], + "score": 1.0, + "content": ", that maximize", + "type": "text" + }, + { + "bbox": [ + 189, + 562, + 312, + 574 + ], + "score": 0.9, + "content": "I ( \\mathbf { v } _ { i } ; y ) + I ( \\mathbf { v } _ { j } ; y ) - I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 561, + 378, + 575 + ], + "score": 1.0, + "content": ", i.e., the area of", + "type": "text" + }, + { + "bbox": [ + 378, + 562, + 416, + 572 + ], + "score": 0.89, + "content": "A { + } B { + } D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 561, + 468, + 575 + ], + "score": 1.0, + "content": "in Figure 2.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 225, + 593 + ], + "score": 1.0, + "content": "Proposition 2. Given a task", + "type": "text" + }, + { + "bbox": [ + 225, + 580, + 234, + 589 + ], + "score": 0.74, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 578, + 279, + 593 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 279, + 581, + 286, + 591 + ], + "score": 0.33, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 578, + 402, + 593 + ], + "score": 1.0, + "content": "and a set of view encoders,", + "type": "text" + }, + { + "bbox": [ + 402, + 578, + 483, + 591 + ], + "score": 0.91, + "content": "\\{ f _ { i } ^ { 1 } ( \\cdot ) , f _ { i } ^ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 578, + 506, + 593 + ], + "score": 1.0, + "content": ", that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 201, + 602 + ], + "score": 1.0, + "content": "generate representation", + "type": "text" + }, + { + "bbox": [ + 201, + 592, + 211, + 601 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 591, + 273, + 602 + ], + "score": 1.0, + "content": "via taking view", + "type": "text" + }, + { + "bbox": [ + 274, + 592, + 284, + 601 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 591, + 506, + 602 + ], + "score": 1.0, + "content": "as input, the recommended view encoder is the one that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 481, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 280, + 615 + ], + "score": 1.0, + "content": "maximizes the mutual information between", + "type": "text" + }, + { + "bbox": [ + 280, + 603, + 290, + 612 + ], + "score": 0.79, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 599, + 294, + 615 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 294, + 603, + 304, + 612 + ], + "score": 0.8, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 599, + 322, + 615 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 603, + 329, + 613 + ], + "score": 0.5, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 599, + 465, + 615 + ], + "score": 1.0, + "content": ". Symmetrically the same for view", + "type": "text" + }, + { + "bbox": [ + 465, + 603, + 476, + 614 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 599, + 481, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 229, + 630 + ], + "score": 1.0, + "content": "Proposition 3. Given a task", + "type": "text" + }, + { + "bbox": [ + 229, + 618, + 238, + 627 + ], + "score": 0.73, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 616, + 285, + 630 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 285, + 619, + 291, + 629 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 616, + 422, + 630 + ], + "score": 1.0, + "content": ", the extracted representations,", + "type": "text" + }, + { + "bbox": [ + 422, + 620, + 447, + 630 + ], + "score": 0.52, + "content": "z _ { i } , \\ z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 616, + 506, + 630 + ], + "score": 1.0, + "content": ", and a set of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 205, + 642 + ], + "score": 1.0, + "content": "aggregation operations,", + "type": "text" + }, + { + "bbox": [ + 206, + 628, + 281, + 640 + ], + "score": 0.9, + "content": "\\{ c _ { 1 } ( \\cdot ) , c _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 628, + 474, + 642 + ], + "score": 1.0, + "content": ", the recommended contrastive mode is the one,", + "type": "text" + }, + { + "bbox": [ + 474, + 628, + 502, + 641 + ], + "score": 0.92, + "content": "( c _ { i } , c _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 628, + 506, + 642 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 427, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 342, + 652 + ], + "score": 1.0, + "content": "that has the largest amount of mutual information between", + "type": "text" + }, + { + "bbox": [ + 343, + 639, + 367, + 651 + ], + "score": 0.85, + "content": "c _ { i } ( \\mathbf { z } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 639, + 371, + 652 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 371, + 639, + 398, + 652 + ], + "score": 0.8, + "content": "c _ { j } ( \\mathbf { z } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 639, + 417, + 652 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 641, + 423, + 651 + ], + "score": 0.65, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 639, + 427, + 652 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 465, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 466, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 466, + 669 + ], + "score": 1.0, + "content": "The qualitative and quantitative evaluation of these propositions are shown in Section 5.3.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 107, + 679, + 238, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 239, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 239, + 694 + ], + "score": 1.0, + "content": "4.5 Role of Negative Samples", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Current graph contrastive learning approaches heavily depend on negative samples. However, recent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 711, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 724 + ], + "score": 1.0, + "content": "progresses of contrastive learning in vision domain indicate that negative samples are not necessarily", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.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": "image", + "bbox": [ + 127, + 58, + 485, + 146 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 58, + 485, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 58, + 485, + 146 + ], + "spans": [ + { + "bbox": [ + 127, + 58, + 485, + 146 + ], + "score": 0.967, + "type": "image", + "image_path": "a7fd63d27d26cca071ead706f3fd728ce0211916cd89519025b1dee6ce661218.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 58, + 485, + 87.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 87.33333333333333, + 485, + 116.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 116.66666666666666, + 485, + 146.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 155, + 506, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 156, + 507, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 507, + 169 + ], + "score": 1.0, + "content": "Figure 3: Illustration of optimal view encoding. (Left) The relationships between two (optimal) views,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 167, + 507, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 118, + 180 + ], + "score": 0.77, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 167, + 121, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 122, + 168, + 133, + 181 + ], + "score": 0.82, + "content": "\\mathbf { v } _ { j } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 167, + 155, + 181 + ], + "score": 1.0, + "content": ", task", + "type": "text" + }, + { + "bbox": [ + 155, + 169, + 162, + 179 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 167, + 239, + 181 + ], + "score": 1.0, + "content": ", and representation", + "type": "text" + }, + { + "bbox": [ + 239, + 169, + 249, + 178 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 167, + 507, + 181 + ], + "score": 1.0, + "content": "in terms of information entropy. A, B, C are null because the two", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 179, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 203, + 190 + ], + "score": 1.0, + "content": "views are optimal here.", + "type": "text" + }, + { + "bbox": [ + 203, + 180, + 213, + 189 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 179, + 300, + 190 + ], + "score": 1.0, + "content": "is contained by view", + "type": "text" + }, + { + "bbox": [ + 300, + 179, + 312, + 190 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 179, + 506, + 190 + ], + "score": 1.0, + "content": "because representations are functions of views.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 189, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 144, + 201 + ], + "score": 1.0, + "content": "(Middle)", + "type": "text" + }, + { + "bbox": [ + 144, + 190, + 154, + 200 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 189, + 185, + 201 + ], + "score": 1.0, + "content": "covers", + "type": "text" + }, + { + "bbox": [ + 185, + 190, + 194, + 199 + ], + "score": 0.38, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 189, + 506, + 201 + ], + "score": 1.0, + "content": "when Eq. (7) holds, which indicates the shared information between views", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 202, + 213 + ], + "score": 1.0, + "content": "is kept after encoding.", + "type": "text" + }, + { + "bbox": [ + 203, + 200, + 232, + 211 + ], + "score": 0.27, + "content": "( R i g h t )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 200, + 257, + 213 + ], + "score": 1.0, + "content": "View", + "type": "text" + }, + { + "bbox": [ + 258, + 201, + 268, + 211 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 200, + 361, + 213 + ], + "score": 1.0, + "content": "further exactly covers", + "type": "text" + }, + { + "bbox": [ + 361, + 200, + 370, + 210 + ], + "score": 0.32, + "content": "\\mathbf { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 200, + 506, + 213 + ], + "score": 1.0, + "content": "and the view encoding becomes", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 158, + 225 + ], + "score": 1.0, + "content": "optimal, i.e.,", + "type": "text" + }, + { + "bbox": [ + 158, + 212, + 169, + 223 + ], + "score": 0.89, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 211, + 396, + 225 + ], + "score": 1.0, + "content": ", which indicates all the information shared between view", + "type": "text" + }, + { + "bbox": [ + 396, + 212, + 408, + 223 + ], + "score": 0.89, + "content": "\\mathbf { v } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 211, + 483, + 225 + ], + "score": 1.0, + "content": "and representation", + "type": "text" + }, + { + "bbox": [ + 484, + 212, + 494, + 223 + ], + "score": 0.89, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 211, + 506, + 225 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 223, + 162, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 162, + 233 + ], + "score": 1.0, + "content": "task-relevant.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 505, + 312 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 256, + 506, + 312 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "To characterize which mode is optimal, we define the optimality of contrastive mode for graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 327, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 339 + ], + "score": 1.0, + "content": "contrastive learning. The main motivation is: the optimal contrastive mode keeps the most task-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "relevant information after the representations are aggregated. The proof is included in the Appendix.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 316, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 354, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 409, + 368 + ], + "score": 1.0, + "content": "Corollary 3. (Optimal Contrastive Mode) Given the latent representations,", + "type": "text" + }, + { + "bbox": [ + 410, + 356, + 420, + 367 + ], + "score": 0.72, + "content": "\\mathbf { z } _ { i } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 354, + 424, + 368 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 424, + 355, + 435, + 368 + ], + "score": 0.78, + "content": "\\mathbf { z } _ { j } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 354, + 505, + 368 + ], + "score": 1.0, + "content": ", extracted by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 218, + 381 + ], + "score": 1.0, + "content": "optimal view encoders, i.e.,", + "type": "text" + }, + { + "bbox": [ + 219, + 367, + 271, + 379 + ], + "score": 0.81, + "content": "\\mathbf { z } _ { i } ^ { * } = f _ { i } ^ { * } ( \\mathbf { v } _ { i } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 366, + 274, + 381 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 275, + 367, + 326, + 380 + ], + "score": 0.76, + "content": "\\mathbf { z } _ { j _ { - } } ^ { * } = f _ { j _ { - } } ^ { * } ( \\mathbf { v } _ { j } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 366, + 428, + 381 + ], + "score": 1.0, + "content": ", and a downstream task", + "type": "text" + }, + { + "bbox": [ + 428, + 368, + 437, + 377 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 366, + 480, + 381 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 480, + 369, + 487, + 379 + ], + "score": 0.49, + "content": "y _ { \\mathrm { { i } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 366, + 506, + 381 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 451, + 391 + ], + "score": 1.0, + "content": "optimal contrastive mode is the solution to the following optimization problem, where", + "type": "text" + }, + { + "bbox": [ + 451, + 380, + 460, + 389 + ], + "score": 0.68, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 379, + 464, + 391 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 464, + 380, + 473, + 390 + ], + "score": 0.73, + "content": "c _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 389, + 351, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 351, + 402 + ], + "score": 1.0, + "content": "aggregation operations applied to the latent representations:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 354, + 506, + 402 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 404, + 385, + 426 + ], + "lines": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "spans": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "score": 0.95, + "content": "\\displaystyle ( c _ { i } ^ { * } , c _ { j } ^ { * } ) = \\arg \\operatorname* { m i n } _ { ( c _ { i } , c _ { j } ) } - I ( c _ { i } ( \\mathbf { z } _ { i } ^ { * } ) ; c _ { j } ( \\mathbf { z } _ { j } ^ { * } ) ) .", + "type": "interline_equation", + "image_path": "2c3af1818fa8af72de7349137d1173eb8200bc8d576eacace9f582cdf15289e2.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 226, + 404, + 385, + 426 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 211, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 212, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 212, + 452 + ], + "score": 1.0, + "content": "4.4 InfoGCL Principle", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 535 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "According to our proposed corollaries, we can theoretically design the optimal contrastive learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "approach for our specific graph data and task. However, in real-world scenarios, the conditions to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "meet the exact optimality of contrastive learning is hard or even not practically possible to reach", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 503 + ], + "score": 1.0, + "content": "because of data noise and limited model capability. Therefore, we propose to achieve the optimal", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "for each stage independently and practically, which is an approximation to achieve the original", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "optimality. Specifically, we make the following propositions to address the questions of the optimal", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 524, + 347, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 347, + 536 + ], + "score": 1.0, + "content": "views, optimal view encoder, and optimal contrastive mode.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 456, + 506, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 210, + 553 + ], + "score": 1.0, + "content": "Proposition 1. For a task", + "type": "text" + }, + { + "bbox": [ + 210, + 541, + 219, + 550 + ], + "score": 0.72, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 538, + 261, + 553 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 261, + 542, + 268, + 552 + ], + "score": 0.59, + "content": "y _ { ; }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 538, + 477, + 553 + ], + "score": 1.0, + "content": ", given a bunch of graph view augmentation methods,", + "type": "text" + }, + { + "bbox": [ + 478, + 540, + 503, + 552 + ], + "score": 0.89, + "content": "\\{ q _ { 1 } ( \\cdot ) _ { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 538, + 506, + 553 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 550, + 508, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 551, + 152, + 563 + ], + "score": 0.88, + "content": "q _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 550, + 240, + 565 + ], + "score": 1.0, + "content": ", that create two views", + "type": "text" + }, + { + "bbox": [ + 240, + 553, + 250, + 561 + ], + "score": 0.75, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 550, + 254, + 565 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 254, + 553, + 266, + 562 + ], + "score": 0.78, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 550, + 483, + 565 + ], + "score": 1.0, + "content": ", the recommended augmentation methods are the ones,", + "type": "text" + }, + { + "bbox": [ + 484, + 552, + 503, + 563 + ], + "score": 0.89, + "content": "q _ { i } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 550, + 508, + 565 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 561, + 468, + 575 + ], + "spans": [ + { + "bbox": [ + 107, + 563, + 127, + 574 + ], + "score": 0.89, + "content": "q _ { j } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 561, + 189, + 575 + ], + "score": 1.0, + "content": ", that maximize", + "type": "text" + }, + { + "bbox": [ + 189, + 562, + 312, + 574 + ], + "score": 0.9, + "content": "I ( \\mathbf { v } _ { i } ; y ) + I ( \\mathbf { v } _ { j } ; y ) - I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 561, + 378, + 575 + ], + "score": 1.0, + "content": ", i.e., the area of", + "type": "text" + }, + { + "bbox": [ + 378, + 562, + 416, + 572 + ], + "score": 0.89, + "content": "A { + } B { + } D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 561, + 468, + 575 + ], + "score": 1.0, + "content": "in Figure 2.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 538, + 508, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 506, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 225, + 593 + ], + "score": 1.0, + "content": "Proposition 2. Given a task", + "type": "text" + }, + { + "bbox": [ + 225, + 580, + 234, + 589 + ], + "score": 0.74, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 578, + 279, + 593 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 279, + 581, + 286, + 591 + ], + "score": 0.33, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 578, + 402, + 593 + ], + "score": 1.0, + "content": "and a set of view encoders,", + "type": "text" + }, + { + "bbox": [ + 402, + 578, + 483, + 591 + ], + "score": 0.91, + "content": "\\{ f _ { i } ^ { 1 } ( \\cdot ) , f _ { i } ^ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 578, + 506, + 593 + ], + "score": 1.0, + "content": ", that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 591, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 201, + 602 + ], + "score": 1.0, + "content": "generate representation", + "type": "text" + }, + { + "bbox": [ + 201, + 592, + 211, + 601 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 591, + 273, + 602 + ], + "score": 1.0, + "content": "via taking view", + "type": "text" + }, + { + "bbox": [ + 274, + 592, + 284, + 601 + ], + "score": 0.85, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 591, + 506, + 602 + ], + "score": 1.0, + "content": "as input, the recommended view encoder is the one that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 481, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 280, + 615 + ], + "score": 1.0, + "content": "maximizes the mutual information between", + "type": "text" + }, + { + "bbox": [ + 280, + 603, + 290, + 612 + ], + "score": 0.79, + "content": "\\mathbf { v } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 599, + 294, + 615 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 294, + 603, + 304, + 612 + ], + "score": 0.8, + "content": "\\mathbf { z } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 599, + 322, + 615 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 323, + 603, + 329, + 613 + ], + "score": 0.5, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 599, + 465, + 615 + ], + "score": 1.0, + "content": ". Symmetrically the same for view", + "type": "text" + }, + { + "bbox": [ + 465, + 603, + 476, + 614 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 599, + 481, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 578, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 616, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 229, + 630 + ], + "score": 1.0, + "content": "Proposition 3. Given a task", + "type": "text" + }, + { + "bbox": [ + 229, + 618, + 238, + 627 + ], + "score": 0.73, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 616, + 285, + 630 + ], + "score": 1.0, + "content": "with label", + "type": "text" + }, + { + "bbox": [ + 285, + 619, + 291, + 629 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 616, + 422, + 630 + ], + "score": 1.0, + "content": ", the extracted representations,", + "type": "text" + }, + { + "bbox": [ + 422, + 620, + 447, + 630 + ], + "score": 0.52, + "content": "z _ { i } , \\ z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 616, + 506, + 630 + ], + "score": 1.0, + "content": ", and a set of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 205, + 642 + ], + "score": 1.0, + "content": "aggregation operations,", + "type": "text" + }, + { + "bbox": [ + 206, + 628, + 281, + 640 + ], + "score": 0.9, + "content": "\\{ c _ { 1 } ( \\cdot ) , c _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ,", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 628, + 474, + 642 + ], + "score": 1.0, + "content": ", the recommended contrastive mode is the one,", + "type": "text" + }, + { + "bbox": [ + 474, + 628, + 502, + 641 + ], + "score": 0.92, + "content": "( c _ { i } , c _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 628, + 506, + 642 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 639, + 427, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 342, + 652 + ], + "score": 1.0, + "content": "that has the largest amount of mutual information between", + "type": "text" + }, + { + "bbox": [ + 343, + 639, + 367, + 651 + ], + "score": 0.85, + "content": "c _ { i } ( \\mathbf { z } _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 639, + 371, + 652 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 371, + 639, + 398, + 652 + ], + "score": 0.8, + "content": "c _ { j } ( \\mathbf { z } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 639, + 417, + 652 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 641, + 423, + 651 + ], + "score": 0.65, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 639, + 427, + 652 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 616, + 506, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 465, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 466, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 466, + 669 + ], + "score": 1.0, + "content": "The qualitative and quantitative evaluation of these propositions are shown in Section 5.3.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 654, + 466, + 669 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 679, + 238, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 239, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 239, + 694 + ], + "score": 1.0, + "content": "4.5 Role of Negative Samples", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Current graph contrastive learning approaches heavily depend on negative samples. However, recent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 711, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 724 + ], + "score": 1.0, + "content": "progresses of contrastive learning in vision domain indicate that negative samples are not necessarily", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 172, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 507, + 185 + ], + "score": 1.0, + "content": "required [8, 4], of which the main benefit is to avoid careful treatment to retrieve the negative pairs.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "To study the influence of negative samples on graph contrastive learning, we follow the framework", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "of SimSiam [4] to revise the loss function as Eq.(9). A very recent work [29] also studies graph", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "contrastive learning without negative samples. Different from it, we focus on both node and graph", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 186, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 186, + 228 + ], + "score": 1.0, + "content": "classification tasks.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 700, + 505, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 70, + 501, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 70, + 501, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 70, + 501, + 138 + ], + "spans": [ + { + "bbox": [ + 110, + 70, + 501, + 138 + ], + "score": 0.981, + "html": "
Graph Task DatasetsNode Task Datasets
MUTAGPTC-MRIMDB-BIMDB-MNCI1COLLABCoraCiteseerPubmed
#Graphs1883441000150041105000111
#Nodes17.914.319.813.029.974.53327270819717
#Edges19.814.7193.165.91.133.04732542944338
#Classes222223673
", + "type": "table", + "image_path": "d27d31742747e95258dc95f8006e5345c23f4824d93edd3c724ac3922de15242.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 70, + 501, + 92.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 92.66666666666667, + 501, + 115.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 115.33333333333334, + 501, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 253, + 143, + 358, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 252, + 142, + 359, + 155 + ], + "spans": [ + { + "bbox": [ + 252, + 142, + 359, + 155 + ], + "score": 1.0, + "content": "Table 1: Dataset statistics.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 507, + 185 + ], + "score": 1.0, + "content": "required [8, 4], of which the main benefit is to avoid careful treatment to retrieve the negative pairs.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "To study the influence of negative samples on graph contrastive learning, we follow the framework", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "of SimSiam [4] to revise the loss function as Eq.(9). A very recent work [29] also studies graph", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "contrastive learning without negative samples. Different from it, we focus on both node and graph", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 186, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 186, + 228 + ], + "score": 1.0, + "content": "classification tasks.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 230, + 368, + 264 + ], + "lines": [ + { + "bbox": [ + 242, + 230, + 368, + 264 + ], + "spans": [ + { + "bbox": [ + 242, + 230, + 368, + 264 + ], + "score": 0.96, + "content": "\\mathcal { L } = - \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\frac { \\mathbf { z } _ { i , n } } { \\| \\mathbf { z } _ { i , n } \\| } \\cdot \\frac { \\mathbf { z } _ { j , n } } { \\| \\mathbf { z } _ { j , n } \\| } ,", + "type": "interline_equation", + "image_path": "43d11dbf627226ec2239c08ec4341ee94a4da08f41197bcd575b09df6f98e01b.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 230, + 368, + 247.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 242, + 247.0, + 368, + 264.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 275, + 191, + 289 + ], + "lines": [ + { + "bbox": [ + 103, + 273, + 193, + 293 + ], + "spans": [ + { + "bbox": [ + 103, + 273, + 193, + 293 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 300, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 312 + ], + "score": 1.0, + "content": "In this section, we evaluate our InfoGCL with a number of experiments. We first describe datasets,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "evaluation protocol, and experimental setup. Then, we present the experimental results on both node", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 447, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 447, + 335 + ], + "score": 1.0, + "content": "and graph classification. Last, we analyze our proposed principles via ablation study.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 155, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 157, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 157, + 361 + ], + "score": 1.0, + "content": "5.1 Setup", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "We use both graph classification and node classification benchmark datasets that are widely used", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "in the existing graph contrastive learning approaches. The graph classification datasets include", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "MUTAG [17], PTC-MR [17], IMDB-B [40], IMDB-M [40], NCI1 [34], and COLLAB [40]. MUTAG", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "is a collection of nitroaromatic compounds represented as graphs, where vertices stand for atoms and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "edges represent bonds between atoms. PTC-MR is a collection of 344 chemical compounds which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "report the carcinogenicity for rats. IMDB-B and IMDB-M are two movie collaboration datasets,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "where nodes represent actors/actress and there is an edge between them if they appear in the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "movie. In NCI1, graphs are the representation of chemical compounds, where vertices stand for atoms", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and edges represent bonds between atoms. COLLAB is a collaboration dataset, where researchers", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 504, + 476 + ], + "score": 1.0, + "content": "are nodes and an edge indicates collaboration between two researchers. The node classification", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 476, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 504, + 487 + ], + "score": 1.0, + "content": "datasets include Citeseer, Cora, and Pubmed [23]. All of them are citation networks, where nodes are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 486, + 438, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 438, + 498 + ], + "score": 1.0, + "content": "documents and edges are citation links. These datasets are summarized in Table 1.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "We closely follow the evaluation protocol of previous state-of-the-art graph contrastive learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "approaches. For graph classification, we report the mean 10-fold cross validation accuracy after 5", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "runs followed by a linear SVM. The linear SVM is trained by applying cross validation on training", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "data folds and the best mean accuracy is reported. For node classification, we report the mean accuracy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "on test set after 50 runs of training followed by a linear neural network model. To make comparison", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "fair, we adopt the basic setting of InfoGraph for graph classification. We conduct experiment with", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "the values of the number of GNN layers, the number of epochs, batch size, the parameter C of SVM", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 577, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 388, + 593 + ], + "score": 1.0, + "content": "in the sets {2, 4, 8, 12}, {10, 20, 40, 100}, {32, 64, 128, 256} and", + "type": "text" + }, + { + "bbox": [ + 388, + 578, + 501, + 591 + ], + "score": 0.4, + "content": "\\{ 1 0 ^ { - 3 } , \\ : \\mathrm { { \\dot { 1 } 0 ^ { - 2 } } } , . . . , \\ : 1 0 ^ { 2 } , 1 0 ^ { 3 } \\ : \\ : \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 577, + 507, + 593 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "respectively. We adopt the basic setting of DGI for node classification. Specifically, we set the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "number of GNN layers to 1 and experiment with the batch size in the set {2, 4, 8}. The hidden", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 447, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 447, + 626 + ], + "score": 1.0, + "content": "dimension of representations is set to 512. We also apply the early stopping strategy.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 636, + 222, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 223, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 223, + 650 + ], + "score": 1.0, + "content": "5.2 Experimental Results", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 507, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 507, + 669 + ], + "score": 1.0, + "content": "To evaluate our method InfoGCL on graph classification, we use thhree categories of baselines.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "The kernel approaches include shortest path kernel (SP) [2], Graphlet kernel (GK) [25], Weisfeiler-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Lehman sub-tree kernel (WL) [24], deep graph kernels (DGK) [39], and multi-scale Laplacian kernel", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "(MLG) [16]. The supervised baselines include GraphSAGE [12], GCN [15], GIN [38], GAT [32].", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "We also compare with the unsupervised approaches, including RandomWalk [7], node2vec [9],", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 711, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 724 + ], + "score": 1.0, + "content": "sub2vec [14], graph2vec [20], InfoGraph [28], GraphCL [42], and mvgrl [13]. Table 2 shows the", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 70, + 501, + 138 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 70, + 501, + 138 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 70, + 501, + 138 + ], + "spans": [ + { + "bbox": [ + 110, + 70, + 501, + 138 + ], + "score": 0.981, + "html": "
Graph Task DatasetsNode Task Datasets
MUTAGPTC-MRIMDB-BIMDB-MNCI1COLLABCoraCiteseerPubmed
#Graphs1883441000150041105000111
#Nodes17.914.319.813.029.974.53327270819717
#Edges19.814.7193.165.91.133.04732542944338
#Classes222223673
", + "type": "table", + "image_path": "d27d31742747e95258dc95f8006e5345c23f4824d93edd3c724ac3922de15242.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 70, + 501, + 92.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 92.66666666666667, + 501, + 115.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 115.33333333333334, + 501, + 138.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 253, + 143, + 358, + 154 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 252, + 142, + 359, + 155 + ], + "spans": [ + { + "bbox": [ + 252, + 142, + 359, + 155 + ], + "score": 1.0, + "content": "Table 1: Dataset statistics.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 227 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 105, + 172, + 507, + 228 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 230, + 368, + 264 + ], + "lines": [ + { + "bbox": [ + 242, + 230, + 368, + 264 + ], + "spans": [ + { + "bbox": [ + 242, + 230, + 368, + 264 + ], + "score": 0.96, + "content": "\\mathcal { L } = - \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\frac { \\mathbf { z } _ { i , n } } { \\| \\mathbf { z } _ { i , n } \\| } \\cdot \\frac { \\mathbf { z } _ { j , n } } { \\| \\mathbf { z } _ { j , n } \\| } ,", + "type": "interline_equation", + "image_path": "43d11dbf627226ec2239c08ec4341ee94a4da08f41197bcd575b09df6f98e01b.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 230, + 368, + 247.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 242, + 247.0, + 368, + 264.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 275, + 191, + 289 + ], + "lines": [ + { + "bbox": [ + 103, + 273, + 193, + 293 + ], + "spans": [ + { + "bbox": [ + 103, + 273, + 193, + 293 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 108, + 300, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 312 + ], + "score": 1.0, + "content": "In this section, we evaluate our InfoGCL with a number of experiments. We first describe datasets,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "evaluation protocol, and experimental setup. Then, we present the experimental results on both node", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 322, + 447, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 447, + 335 + ], + "score": 1.0, + "content": "and graph classification. Last, we analyze our proposed principles via ablation study.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 300, + 506, + 335 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 155, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 157, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 157, + 361 + ], + "score": 1.0, + "content": "5.1 Setup", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 366, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "We use both graph classification and node classification benchmark datasets that are widely used", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "in the existing graph contrastive learning approaches. The graph classification datasets include", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "MUTAG [17], PTC-MR [17], IMDB-B [40], IMDB-M [40], NCI1 [34], and COLLAB [40]. MUTAG", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 412 + ], + "score": 1.0, + "content": "is a collection of nitroaromatic compounds represented as graphs, where vertices stand for atoms and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "edges represent bonds between atoms. PTC-MR is a collection of 344 chemical compounds which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "report the carcinogenicity for rats. IMDB-B and IMDB-M are two movie collaboration datasets,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "where nodes represent actors/actress and there is an edge between them if they appear in the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "movie. In NCI1, graphs are the representation of chemical compounds, where vertices stand for atoms", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and edges represent bonds between atoms. COLLAB is a collaboration dataset, where researchers", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 465, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 504, + 476 + ], + "score": 1.0, + "content": "are nodes and an edge indicates collaboration between two researchers. The node classification", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 476, + 504, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 504, + 487 + ], + "score": 1.0, + "content": "datasets include Citeseer, Cora, and Pubmed [23]. All of them are citation networks, where nodes are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 486, + 438, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 438, + 498 + ], + "score": 1.0, + "content": "documents and edges are citation links. These datasets are summarized in Table 1.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 366, + 506, + 498 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 502, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 516 + ], + "score": 1.0, + "content": "We closely follow the evaluation protocol of previous state-of-the-art graph contrastive learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "approaches. For graph classification, we report the mean 10-fold cross validation accuracy after 5", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "runs followed by a linear SVM. The linear SVM is trained by applying cross validation on training", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "data folds and the best mean accuracy is reported. For node classification, we report the mean accuracy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "on test set after 50 runs of training followed by a linear neural network model. To make comparison", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 571 + ], + "score": 1.0, + "content": "fair, we adopt the basic setting of InfoGraph for graph classification. We conduct experiment with", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "the values of the number of GNN layers, the number of epochs, batch size, the parameter C of SVM", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 577, + 507, + 593 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 388, + 593 + ], + "score": 1.0, + "content": "in the sets {2, 4, 8, 12}, {10, 20, 40, 100}, {32, 64, 128, 256} and", + "type": "text" + }, + { + "bbox": [ + 388, + 578, + 501, + 591 + ], + "score": 0.4, + "content": "\\{ 1 0 ^ { - 3 } , \\ : \\mathrm { { \\dot { 1 } 0 ^ { - 2 } } } , . . . , \\ : 1 0 ^ { 2 } , 1 0 ^ { 3 } \\ : \\ : \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 577, + 507, + 593 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "respectively. We adopt the basic setting of DGI for node classification. Specifically, we set the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "number of GNN layers to 1 and experiment with the batch size in the set {2, 4, 8}. The hidden", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 610, + 447, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 447, + 626 + ], + "score": 1.0, + "content": "dimension of representations is set to 512. We also apply the early stopping strategy.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 501, + 507, + 626 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 636, + 222, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 223, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 223, + 650 + ], + "score": 1.0, + "content": "5.2 Experimental Results", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 507, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 507, + 669 + ], + "score": 1.0, + "content": "To evaluate our method InfoGCL on graph classification, we use thhree categories of baselines.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "The kernel approaches include shortest path kernel (SP) [2], Graphlet kernel (GK) [25], Weisfeiler-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "Lehman sub-tree kernel (WL) [24], deep graph kernels (DGK) [39], and multi-scale Laplacian kernel", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "(MLG) [16]. The supervised baselines include GraphSAGE [12], GCN [15], GIN [38], GAT [32].", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "We also compare with the unsupervised approaches, including RandomWalk [7], node2vec [9],", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 711, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 724 + ], + "score": 1.0, + "content": "sub2vec [14], graph2vec [20], InfoGraph [28], GraphCL [42], and mvgrl [13]. Table 2 shows the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 596, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 507, + 609 + ], + "score": 1.0, + "content": "graph classification results. We observe that our approach achieves the best results compared to other", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "unsupervised approaches. Our approach also outperforms or matches the best kernel approaches", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "across the datasets. Even compared with the supervised ones, our approach achieves the best in 2 out", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 628, + 434, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 434, + 642 + ], + "score": 1.0, + "content": "of 6 datasets and the results of our approach on other 4 dataset are among the top.", + "type": "text", + "cross_page": true + } + ], + "index": 23 + } + ], + "index": 42.5, + "bbox_fs": [ + 104, + 655, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 69, + 497, + 291 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 112, + 69, + 497, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 69, + 497, + 291 + ], + "spans": [ + { + "bbox": [ + 112, + 69, + 497, + 291 + ], + "score": 0.982, + "html": "
MethodMUTAGPTC-MRIMDB-BIMDB-MNCI1COLLAB
Kernel Approaches
SP85.2 ± 2.458.2 ± 2.455.6± 0.238.0±0.373.5 ± 0.1
GK81.7 ± 2.157.3 ± 1.465.9 ± 1.043.9 ± 0.466.0 ± 0.172.8± 0.3
WL80.7 ± 3.058.0 ± 0.572.3 ± 3.447.0 ± 0.580.0± 0.578.9 ± 1.9
DGK87.4 ± 2.760.1 ± 2.667.0 ± 0.644.6 ± 0.580.3 ± 0.573.1 ± 0.3
MLG87.9 ± 1.663.3 ± 1.566.6 ± 0.341.2 ± 0.080.8 ± 1.3
Supervised Approaches
GraphSAGE85.1 ± 7.6 63.9 ± 7.772.3 ± 5.350.9 ± 2.277.7 ± 1.568.3 ± 4.2
GCN85.6 ± 5.864.2 ± 4.374.0± 3.451.9 ± 3.880.2 ± 2.079.0 ± 1.8
GIN-089.4 ± 5.664.6 ± 7.075.1 ± 5.152.3 ± 2.882.7 ± 1.780.2 ± 1.9
GIN-e89.0 ± 6.063.7 ±8.274.3 ± 5.152.1 ± 3.682.7 ± 1.680.1 ± 1.9
GAT89.4 ± 6.166.7 ± 5.170.5 ± 2.347.8 ± 3.166.6 ± 2.267.4 ± 2.9
Unsupervised Approaches
RandomWalk83.7 ± 1.557.9 ± 1.350.7±0.334.7 ± 0.264.3 ± 0.3
node2vec72.6 ±10.258.6±8.050.2 ± 0.936.0 ± 0.754.9 ± 1.656.1 ± 0.2
sub2vec61.1 ± 15.860.0 ± 6.455.3 ± 1.536.7 ± 0.852.8 ±1.5-
graph2vec83.2 ±9.660.2 ± 6.971.1 ± 0.550.4 ± 0.975.4 ±1.2
InfoGraph89.0 ± 1.161.7 ± 1.473.0± 0.949.7 ± 0.576.2 ±1.470.7 ± 1.1
GraphCL86.8 ± 1.361.3 ± 2.171.1 ± 0.449.2 ± 0.677.9 ± 0.471.4 ± 1.2
mvgrl89.7 ± 1.162.5 ± 1.774.2 ± 0.751.2 ± 0.577.0 ± 0.876.0 ± 1.2
51.4 ± 0.880.2 ± 0.6
InfoGCL91.2 ± 1.363.5 ± 1.575.1 ± 0.980.0 ± 1.3
", + "type": "table", + "image_path": "100341ee754bc7ccbfbd5552183bc1ec5e1b1be1a782962292628b2341f3673b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 69, + 497, + 143.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 143.0, + 497, + 217.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 217.0, + 497, + 291.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 222, + 297, + 385, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 220, + 295, + 383, + 310 + ], + "spans": [ + { + "bbox": [ + 220, + 295, + 367, + 310 + ], + "score": 1.0, + "content": "Table 2: Graph classification results", + "type": "text" + }, + { + "bbox": [ + 367, + 297, + 383, + 308 + ], + "score": 0.71, + "content": "( \\% )", + "type": "inline_equation" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 182, + 335, + 428, + 542 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 182, + 335, + 428, + 542 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 182, + 335, + 428, + 542 + ], + "spans": [ + { + "bbox": [ + 182, + 335, + 428, + 542 + ], + "score": 0.977, + "html": "
MethodCoraCiteseerPubmed
Supervised Approaches
MLP55.146.571.4
ICA75.169.173.9
LP68.045.363.0
ManiReg59.560.170.7
SemiEmb59.059.671.7
Planetoid75.764.777.2
Chebyshev81.269.874.4
GCN81.570.379.0
JKNet82.7 ± 0.473.0 ± 0.577.9 ± 0.4
GAT83.0 ± 0.772.5± 0.779.0 ± 0.3
Unsupervised Approaches
Linear47.9 ± 0.449.3 ± 0.269.1 ± 0.3
DeepWalk70.7 ± 0.651.4 ± 0.574.3 ± 0.9
GAE71.5 ± 0.465.8 ±0.472.1 ± 0.5
VERSE72.5 ± 0.355.5± 0.4
DGI83.8 ± 0.572.0 ± 0.677.9 ± 0.3
GraphCL82.5 ± 0.173.1 ± 0.2
mvgrl86.8 ± 0.573.3 ± 0.580.1 ± 0.7
InfoGCL83.5 ± 0.373.5 ± 0.479.1 ± 0.2
", + "type": "table", + "image_path": "bb3604b9cde8633c8adb22a2b93c182327925e26e7eabc91176a409025cf1d38.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 182, + 335, + 428, + 348.8 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 182, + 348.8, + 428, + 362.6 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 182, + 362.6, + 428, + 376.40000000000003 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 182, + 376.40000000000003, + 428, + 390.20000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 182, + 390.20000000000005, + 428, + 404.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 182, + 404.00000000000006, + 428, + 417.80000000000007 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 182, + 417.80000000000007, + 428, + 431.6000000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 182, + 431.6000000000001, + 428, + 445.4000000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 182, + 445.4000000000001, + 428, + 459.2000000000001 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 182, + 459.2000000000001, + 428, + 473.0000000000001 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 182, + 473.0000000000001, + 428, + 486.8000000000001 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 182, + 486.8000000000001, + 428, + 500.60000000000014 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 182, + 500.60000000000014, + 428, + 514.4000000000001 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 182, + 514.4000000000001, + 428, + 528.2 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 182, + 528.2, + 428, + 542.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 224, + 547, + 384, + 559 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 222, + 545, + 385, + 561 + ], + "spans": [ + { + "bbox": [ + 222, + 545, + 365, + 561 + ], + "score": 1.0, + "content": "Table 3: Node classification results", + "type": "text" + }, + { + "bbox": [ + 366, + 548, + 381, + 559 + ], + "score": 0.67, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 545, + 385, + 561 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 507, + 609 + ], + "score": 1.0, + "content": "graph classification results. We observe that our approach achieves the best results compared to other", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "unsupervised approaches. Our approach also outperforms or matches the best kernel approaches", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "across the datasets. Even compared with the supervised ones, our approach achieves the best in 2 out", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 628, + 434, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 434, + 642 + ], + "score": 1.0, + "content": "of 6 datasets and the results of our approach on other 4 dataset are among the top.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "For node classification tasks, we compare InfoGCL with some supervised approaches and unsu-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 656, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 507, + 668 + ], + "score": 1.0, + "content": "pervised approaches. The supervised baselines include a simple MLP model, iterative classifi-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "cation algorithm (ICA) [19], manifold regularization (ManiReg) [1], semi-supervised embedding", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "(SemiEmb) [35], Planetoid [41], Chebyshev [5], GCN, JKNet [36], GAT. Table 3 shows the node", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "classification results. It is observed that our approach achieves the state-of-the-art results and com-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "petes the best one with respect to the existing unsupervised approaches. Compared to supervised", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 711, + 323, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 323, + 724 + ], + "score": 1.0, + "content": "baselines, our approach outperforms all the baselines.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 69, + 497, + 291 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 112, + 69, + 497, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 69, + 497, + 291 + ], + "spans": [ + { + "bbox": [ + 112, + 69, + 497, + 291 + ], + "score": 0.982, + "html": "
MethodMUTAGPTC-MRIMDB-BIMDB-MNCI1COLLAB
Kernel Approaches
SP85.2 ± 2.458.2 ± 2.455.6± 0.238.0±0.373.5 ± 0.1
GK81.7 ± 2.157.3 ± 1.465.9 ± 1.043.9 ± 0.466.0 ± 0.172.8± 0.3
WL80.7 ± 3.058.0 ± 0.572.3 ± 3.447.0 ± 0.580.0± 0.578.9 ± 1.9
DGK87.4 ± 2.760.1 ± 2.667.0 ± 0.644.6 ± 0.580.3 ± 0.573.1 ± 0.3
MLG87.9 ± 1.663.3 ± 1.566.6 ± 0.341.2 ± 0.080.8 ± 1.3
Supervised Approaches
GraphSAGE85.1 ± 7.6 63.9 ± 7.772.3 ± 5.350.9 ± 2.277.7 ± 1.568.3 ± 4.2
GCN85.6 ± 5.864.2 ± 4.374.0± 3.451.9 ± 3.880.2 ± 2.079.0 ± 1.8
GIN-089.4 ± 5.664.6 ± 7.075.1 ± 5.152.3 ± 2.882.7 ± 1.780.2 ± 1.9
GIN-e89.0 ± 6.063.7 ±8.274.3 ± 5.152.1 ± 3.682.7 ± 1.680.1 ± 1.9
GAT89.4 ± 6.166.7 ± 5.170.5 ± 2.347.8 ± 3.166.6 ± 2.267.4 ± 2.9
Unsupervised Approaches
RandomWalk83.7 ± 1.557.9 ± 1.350.7±0.334.7 ± 0.264.3 ± 0.3
node2vec72.6 ±10.258.6±8.050.2 ± 0.936.0 ± 0.754.9 ± 1.656.1 ± 0.2
sub2vec61.1 ± 15.860.0 ± 6.455.3 ± 1.536.7 ± 0.852.8 ±1.5-
graph2vec83.2 ±9.660.2 ± 6.971.1 ± 0.550.4 ± 0.975.4 ±1.2
InfoGraph89.0 ± 1.161.7 ± 1.473.0± 0.949.7 ± 0.576.2 ±1.470.7 ± 1.1
GraphCL86.8 ± 1.361.3 ± 2.171.1 ± 0.449.2 ± 0.677.9 ± 0.471.4 ± 1.2
mvgrl89.7 ± 1.162.5 ± 1.774.2 ± 0.751.2 ± 0.577.0 ± 0.876.0 ± 1.2
51.4 ± 0.880.2 ± 0.6
InfoGCL91.2 ± 1.363.5 ± 1.575.1 ± 0.980.0 ± 1.3
", + "type": "table", + "image_path": "100341ee754bc7ccbfbd5552183bc1ec5e1b1be1a782962292628b2341f3673b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 69, + 497, + 143.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 143.0, + 497, + 217.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 217.0, + 497, + 291.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 222, + 297, + 385, + 308 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 220, + 295, + 383, + 310 + ], + "spans": [ + { + "bbox": [ + 220, + 295, + 367, + 310 + ], + "score": 1.0, + "content": "Table 2: Graph classification results", + "type": "text" + }, + { + "bbox": [ + 367, + 297, + 383, + 308 + ], + "score": 0.71, + "content": "( \\% )", + "type": "inline_equation" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 182, + 335, + 428, + 542 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 182, + 335, + 428, + 542 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 182, + 335, + 428, + 542 + ], + "spans": [ + { + "bbox": [ + 182, + 335, + 428, + 542 + ], + "score": 0.977, + "html": "
MethodCoraCiteseerPubmed
Supervised Approaches
MLP55.146.571.4
ICA75.169.173.9
LP68.045.363.0
ManiReg59.560.170.7
SemiEmb59.059.671.7
Planetoid75.764.777.2
Chebyshev81.269.874.4
GCN81.570.379.0
JKNet82.7 ± 0.473.0 ± 0.577.9 ± 0.4
GAT83.0 ± 0.772.5± 0.779.0 ± 0.3
Unsupervised Approaches
Linear47.9 ± 0.449.3 ± 0.269.1 ± 0.3
DeepWalk70.7 ± 0.651.4 ± 0.574.3 ± 0.9
GAE71.5 ± 0.465.8 ±0.472.1 ± 0.5
VERSE72.5 ± 0.355.5± 0.4
DGI83.8 ± 0.572.0 ± 0.677.9 ± 0.3
GraphCL82.5 ± 0.173.1 ± 0.2
mvgrl86.8 ± 0.573.3 ± 0.580.1 ± 0.7
InfoGCL83.5 ± 0.373.5 ± 0.479.1 ± 0.2
", + "type": "table", + "image_path": "bb3604b9cde8633c8adb22a2b93c182327925e26e7eabc91176a409025cf1d38.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 182, + 335, + 428, + 348.8 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 182, + 348.8, + 428, + 362.6 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 182, + 362.6, + 428, + 376.40000000000003 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 182, + 376.40000000000003, + 428, + 390.20000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 182, + 390.20000000000005, + 428, + 404.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 182, + 404.00000000000006, + 428, + 417.80000000000007 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 182, + 417.80000000000007, + 428, + 431.6000000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 182, + 431.6000000000001, + 428, + 445.4000000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 182, + 445.4000000000001, + 428, + 459.2000000000001 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 182, + 459.2000000000001, + 428, + 473.0000000000001 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 182, + 473.0000000000001, + 428, + 486.8000000000001 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 182, + 486.8000000000001, + 428, + 500.60000000000014 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 182, + 500.60000000000014, + 428, + 514.4000000000001 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 182, + 514.4000000000001, + 428, + 528.2 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 182, + 528.2, + 428, + 542.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 224, + 547, + 384, + 559 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 222, + 545, + 385, + 561 + ], + "spans": [ + { + "bbox": [ + 222, + 545, + 365, + 561 + ], + "score": 1.0, + "content": "Table 3: Node classification results", + "type": "text" + }, + { + "bbox": [ + 366, + 548, + 381, + 559 + ], + "score": 0.67, + "content": "( \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 545, + 385, + 561 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 640 + ], + "lines": [], + "index": 21.5, + "bbox_fs": [ + 105, + 596, + 507, + 642 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "For node classification tasks, we compare InfoGCL with some supervised approaches and unsu-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 656, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 507, + 668 + ], + "score": 1.0, + "content": "pervised approaches. The supervised baselines include a simple MLP model, iterative classifi-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "cation algorithm (ICA) [19], manifold regularization (ManiReg) [1], semi-supervised embedding", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "(SemiEmb) [35], Planetoid [41], Chebyshev [5], GCN, JKNet [36], GAT. Table 3 shows the node", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "classification results. It is observed that our approach achieves the state-of-the-art results and com-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "petes the best one with respect to the existing unsupervised approaches. Compared to supervised", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 711, + 323, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 323, + 724 + ], + "score": 1.0, + "content": "baselines, our approach outperforms all the baselines.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 644, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 59, + 498, + 99 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 113, + 59, + 498, + 99 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 59, + 498, + 99 + ], + "spans": [ + { + "bbox": [ + 113, + 59, + 498, + 99 + ], + "score": 0.974, + "html": "
MethodMUTAGIMDB-BCOLLABCoraCiteseerPubmed
InfoGCL (w/o neg)91.0 ± 1.475.1± 0.580.2 ±1.078.6 ± 0.470.4 ± 0.677.4±0.7
InfoGCL (w/ neg)91.2 ± 1.375.1 ± 0.980.0± 1.383.5±0.373.5 ± 0.479.1±0.2
", + "type": "table", + "image_path": "f0477851d52bef85626a9194a114b45dcbb4525569d2ce3f3528abe6efd26a28.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 59, + 498, + 72.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 72.33333333333333, + 498, + 85.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 85.66666666666666, + 498, + 98.99999999999999 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 105, + 490, + 116 + ], + "lines": [ + { + "bbox": [ + 116, + 102, + 491, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 102, + 491, + 118 + ], + "score": 1.0, + "content": "Table 4: Comparison between InfoGCL with negative samples and without negative samples.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 130, + 271, + 142 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 271, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 271, + 144 + ], + "score": 1.0, + "content": "5.3 Evaluation of InfoGCL Principle", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "We can unify the existing graph contrastive learning methods through the perspective of InfoGCL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "score": 1.0, + "content": "principle: all recent graph contrastive learning methods can be decoupled into three stages that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "implicitly follow the InfoGCL principle, though being different in model architecture design and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "optimization strategies. Below, we analyze some observations from several recent work. Because of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 471, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 471, + 208 + ], + "score": 1.0, + "content": "the limited space, please refer to the Appendix for more results of the quantitative analysis.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 503, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "Obs. i. Composing a graph and its augmentation benefits downstream performance [42]. Compared", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 222, + 503, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 398, + 235 + ], + "score": 1.0, + "content": "to composing a graph and the graph itself, augmentation leads to smaller", + "type": "text" + }, + { + "bbox": [ + 399, + 222, + 436, + 234 + ], + "score": 0.93, + "content": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 222, + 503, + 235 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 503, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "score": 1.0, + "content": "Obs. ii. Composing different augmentations benefits more [42]. Compared to composing a graph", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 249, + 446, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 343, + 262 + ], + "score": 1.0, + "content": "and its augmentations, two augmentations further decrease", + "type": "text" + }, + { + "bbox": [ + 343, + 249, + 380, + 262 + ], + "score": 0.92, + "content": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 249, + 446, + 262 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "Obs. iii. Node dropping and subgraph sampling are generally beneficial across datasets [42]. When", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "compared to attribute masking and edge perturbation, they change the semantic meaning of the graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 287, + 406, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 268, + 301 + ], + "score": 1.0, + "content": "relatively slightly, which leads to higher", + "type": "text" + }, + { + "bbox": [ + 269, + 288, + 302, + 299 + ], + "score": 0.61, + "content": "I ( \\mathbf { v } _ { i } ; y )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 287, + 305, + 301 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 306, + 287, + 339, + 300 + ], + "score": 0.55, + "content": "I ( \\mathbf { v } _ { j } ; \\bar { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 287, + 406, + 301 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 504, + 315 + ], + "score": 1.0, + "content": "Obs. iv. Edge perturbation benefits social networks but hurts some biochemical molecules [42]. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "semantic meaning of social networks are robust to edge perturbation. However, the semantic meaning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "of some biochemical molecules are determined by local connection pattern, where edge perturbation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 336, + 247, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 147, + 348 + ], + "score": 1.0, + "content": "decreases", + "type": "text" + }, + { + "bbox": [ + 147, + 336, + 180, + 348 + ], + "score": 0.92, + "content": "I ( \\mathbf { v } _ { i } ; y )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 337, + 247, + 348 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Obs. v. Contrasting node and graph representations consistently performs better than other contrastive", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "modes across benchmarks [13]. Compared to other contrastive modes, node-graph (i.e., local-global)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 497, + 388 + ], + "score": 1.0, + "content": "mode generally extracts more graph structure information, which benefits predicting task label", + "type": "text" + }, + { + "bbox": [ + 497, + 376, + 504, + 386 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 385, + 170, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 170, + 398 + ], + "score": 1.0, + "content": "(Proposition 3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 410, + 244, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 245, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 245, + 424 + ], + "score": 1.0, + "content": "5.4 Effect of Negative Samples", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "To study the effect of negative samples on graph contrastive learning, we follow SimSiam [4] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "design the objective as Eq. (9). We conduct experiments on three graph task and three node task", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "datasets. The results are reported in Table 4. It is observed that the negative samples show little", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 507, + 477 + ], + "score": 1.0, + "content": "influence on the three graph task datasets, while performance drops on the three node task datasets,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 218, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 218, + 486 + ], + "score": 1.0, + "content": "especially the Cora dataset.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 490, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 507, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 507, + 502 + ], + "score": 1.0, + "content": "According to the dataset statistics summarized in Table 1, we see the networks of Cora, Citeseer,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "Pubmed are much sparser (in terms of network topology). Furthermore, we know the node features of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "these three datasets are also much sparser (one-hot encoding with high dimensionality). We speculate", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "this because the contrastive learning models tends to collapse easier if negative samples are not used,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "especially when data is too sparse. Therefore,we make the hypothesis: negative samples benefit graph", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 470, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 470, + 558 + ], + "score": 1.0, + "content": "modeling, especially when i) network topology, and ii) node features are extremely sparse.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 570, + 268, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 268, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 268, + 587 + ], + "score": 1.0, + "content": "6 Conclusion and Limitations", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "We propose InfoGCL, an information-aware graph contrastive learning framework for graph con-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "trastive learning. Existing graph contrastive learning approaches are usually carefully designed. We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "aim to answer how to perform contrastive learning for your learning tasks on specific graph data.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "Our method decouples the typical contrastive learning approaches into three sequential modules and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "provides the theoretical analysis for reaching the optimality. To address the questions of optimality", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 663 + ], + "score": 1.0, + "content": "in a practical way, we propose the InfoGCL principle, which is implicitly followed by all recent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "graph contrastive learning approaches. In addition, we explore the role of negative samples in graph", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "contrastive learning and find negative samples are not necessarily required. Experiments on both", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "node and graph benchmark datasets demonstrate the effectiveness of our method. Note that our", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "score": 1.0, + "content": "method is not without limitations. We can further improve our method by designing better practical", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 705, + 403, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 403, + 719 + ], + "score": 1.0, + "content": "approximations to the theoretical optimality of graph contrastive learning.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 59, + 498, + 99 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 113, + 59, + 498, + 99 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 59, + 498, + 99 + ], + "spans": [ + { + "bbox": [ + 113, + 59, + 498, + 99 + ], + "score": 0.974, + "html": "
MethodMUTAGIMDB-BCOLLABCoraCiteseerPubmed
InfoGCL (w/o neg)91.0 ± 1.475.1± 0.580.2 ±1.078.6 ± 0.470.4 ± 0.677.4±0.7
InfoGCL (w/ neg)91.2 ± 1.375.1 ± 0.980.0± 1.383.5±0.373.5 ± 0.479.1±0.2
", + "type": "table", + "image_path": "f0477851d52bef85626a9194a114b45dcbb4525569d2ce3f3528abe6efd26a28.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 59, + 498, + 72.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 72.33333333333333, + 498, + 85.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 85.66666666666666, + 498, + 98.99999999999999 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 105, + 490, + 116 + ], + "lines": [ + { + "bbox": [ + 116, + 102, + 491, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 102, + 491, + 118 + ], + "score": 1.0, + "content": "Table 4: Comparison between InfoGCL with negative samples and without negative samples.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 116, + 102, + 491, + 118 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 130, + 271, + 142 + ], + "lines": [ + { + "bbox": [ + 105, + 129, + 271, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 271, + 144 + ], + "score": 1.0, + "content": "5.3 Evaluation of InfoGCL Principle", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 505, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "We can unify the existing graph contrastive learning methods through the perspective of InfoGCL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 505, + 174 + ], + "score": 1.0, + "content": "principle: all recent graph contrastive learning methods can be decoupled into three stages that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 172, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 186 + ], + "score": 1.0, + "content": "implicitly follow the InfoGCL principle, though being different in model architecture design and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 196 + ], + "score": 1.0, + "content": "optimization strategies. Below, we analyze some observations from several recent work. Because of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 471, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 471, + 208 + ], + "score": 1.0, + "content": "the limited space, please refer to the Appendix for more results of the quantitative analysis.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 150, + 506, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 211, + 503, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "Obs. i. Composing a graph and its augmentation benefits downstream performance [42]. Compared", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 222, + 503, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 398, + 235 + ], + "score": 1.0, + "content": "to composing a graph and the graph itself, augmentation leads to smaller", + "type": "text" + }, + { + "bbox": [ + 399, + 222, + 436, + 234 + ], + "score": 0.93, + "content": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 222, + 503, + 235 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 211, + 505, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 503, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 252 + ], + "score": 1.0, + "content": "Obs. ii. Composing different augmentations benefits more [42]. Compared to composing a graph", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 249, + 446, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 343, + 262 + ], + "score": 1.0, + "content": "and its augmentations, two augmentations further decrease", + "type": "text" + }, + { + "bbox": [ + 343, + 249, + 380, + 262 + ], + "score": 0.92, + "content": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 249, + 446, + 262 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 236, + 505, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "Obs. iii. Node dropping and subgraph sampling are generally beneficial across datasets [42]. When", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "compared to attribute masking and edge perturbation, they change the semantic meaning of the graph", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 287, + 406, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 268, + 301 + ], + "score": 1.0, + "content": "relatively slightly, which leads to higher", + "type": "text" + }, + { + "bbox": [ + 269, + 288, + 302, + 299 + ], + "score": 0.61, + "content": "I ( \\mathbf { v } _ { i } ; y )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 287, + 305, + 301 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 306, + 287, + 339, + 300 + ], + "score": 0.55, + "content": "I ( \\mathbf { v } _ { j } ; \\bar { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 287, + 406, + 301 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 265, + 505, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 504, + 315 + ], + "score": 1.0, + "content": "Obs. iv. Edge perturbation benefits social networks but hurts some biochemical molecules [42]. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "semantic meaning of social networks are robust to edge perturbation. However, the semantic meaning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "of some biochemical molecules are determined by local connection pattern, where edge perturbation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 336, + 247, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 147, + 348 + ], + "score": 1.0, + "content": "decreases", + "type": "text" + }, + { + "bbox": [ + 147, + 336, + 180, + 348 + ], + "score": 0.92, + "content": "I ( \\mathbf { v } _ { i } ; y )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 337, + 247, + 348 + ], + "score": 1.0, + "content": "(Proposition 1).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 303, + 505, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Obs. v. Contrasting node and graph representations consistently performs better than other contrastive", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "modes across benchmarks [13]. Compared to other contrastive modes, node-graph (i.e., local-global)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 497, + 388 + ], + "score": 1.0, + "content": "mode generally extracts more graph structure information, which benefits predicting task label", + "type": "text" + }, + { + "bbox": [ + 497, + 376, + 504, + 386 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 385, + 170, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 170, + 398 + ], + "score": 1.0, + "content": "(Proposition 3).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 352, + 505, + 398 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 410, + 244, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 245, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 245, + 424 + ], + "score": 1.0, + "content": "5.4 Effect of Negative Samples", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "To study the effect of negative samples on graph contrastive learning, we follow SimSiam [4] and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 440, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 453 + ], + "score": 1.0, + "content": "design the objective as Eq. (9). We conduct experiments on three graph task and three node task", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 505, + 464 + ], + "score": 1.0, + "content": "datasets. The results are reported in Table 4. It is observed that the negative samples show little", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 507, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 507, + 477 + ], + "score": 1.0, + "content": "influence on the three graph task datasets, while performance drops on the three node task datasets,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 218, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 218, + 486 + ], + "score": 1.0, + "content": "especially the Cora dataset.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 429, + 507, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 490, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 507, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 507, + 502 + ], + "score": 1.0, + "content": "According to the dataset statistics summarized in Table 1, we see the networks of Cora, Citeseer,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "Pubmed are much sparser (in terms of network topology). Furthermore, we know the node features of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "these three datasets are also much sparser (one-hot encoding with high dimensionality). We speculate", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "this because the contrastive learning models tends to collapse easier if negative samples are not used,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "especially when data is too sparse. Therefore,we make the hypothesis: negative samples benefit graph", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 470, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 470, + 558 + ], + "score": 1.0, + "content": "modeling, especially when i) network topology, and ii) node features are extremely sparse.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 489, + 507, + 558 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 570, + 268, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 268, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 268, + 587 + ], + "score": 1.0, + "content": "6 Conclusion and Limitations", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 716 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "We propose InfoGCL, an information-aware graph contrastive learning framework for graph con-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "trastive learning. Existing graph contrastive learning approaches are usually carefully designed. We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "aim to answer how to perform contrastive learning for your learning tasks on specific graph data.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "Our method decouples the typical contrastive learning approaches into three sequential modules and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "provides the theoretical analysis for reaching the optimality. To address the questions of optimality", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 663 + ], + "score": 1.0, + "content": "in a practical way, we propose the InfoGCL principle, which is implicitly followed by all recent", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "score": 1.0, + "content": "graph contrastive learning approaches. In addition, we explore the role of negative samples in graph", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "contrastive learning and find negative samples are not necessarily required. Experiments on both", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 505, + 696 + ], + "score": 1.0, + "content": "node and graph benchmark datasets demonstrate the effectiveness of our method. Note that our", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "score": 1.0, + "content": "method is not without limitations. We can further improve our method by designing better practical", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 705, + 403, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 403, + 719 + ], + "score": 1.0, + "content": "approximations to the theoretical optimality of graph contrastive learning.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 596, + 506, + 719 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 279, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 281, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 281, + 88 + ], + "score": 1.0, + "content": "Funding Transparency Statement", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 96, + 455, + 108 + ], + "lines": [ + { + "bbox": [ + 106, + 95, + 456, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 456, + 110 + ], + "score": 1.0, + "content": "This project was partially supported by NSF projects IIS-1707548 and CBET-1638320.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 124, + 163, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 165, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 165, + 138 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 111, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "[1] Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 154, + 497, + 167 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 497, + 167 + ], + "score": 1.0, + "content": "framework for learning from labeled and unlabeled examples. J. Mach. Learn. Res, 7, 2006.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 174, + 507, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 174, + 507, + 189 + ], + "score": 1.0, + "content": "[2] Karsten M. Borgwardt and Hans-Peter Kriegel. Shortest-path kernels on graphs. In ICDM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 185, + 154, + 199 + ], + "spans": [ + { + "bbox": [ + 127, + 185, + 154, + 199 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 110, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "[3] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey E. Hinton. A simple framework", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 217, + 379, + 229 + ], + "spans": [ + { + "bbox": [ + 127, + 217, + 379, + 229 + ], + "score": 1.0, + "content": "for contrastive learning of visual representations. ICML, 2020.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 236, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 111, + 236, + 506, + 249 + ], + "score": 1.0, + "content": "[4] Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. CoRR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 248, + 221, + 260 + ], + "spans": [ + { + "bbox": [ + 127, + 248, + 221, + 260 + ], + "score": 1.0, + "content": "abs/2011.10566, 2020.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 111, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 111, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "[5] Michaël Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 278, + 379, + 292 + ], + "spans": [ + { + "bbox": [ + 126, + 278, + 379, + 292 + ], + "score": 1.0, + "content": "on graphs with fast localized spectral filtering. In NIPS, 2016.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 111, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 111, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "[6] Yuanqi Du, Shiyu Wang, Xiaojie Guo, Hengning Cao, Shujie Hu, Junji Jiang, Aishwarya Varala,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 307, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 127, + 307, + 506, + 323 + ], + "score": 1.0, + "content": "Abhinav Angirekula, and Liang Zhao. Graphgt: Machine learning datasets for deep graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 320, + 280, + 333 + ], + "spans": [ + { + "bbox": [ + 126, + 320, + 280, + 333 + ], + "score": 1.0, + "content": "generation and transformation. 2021.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 110, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "[7] Gartner, Flach, and Wrobel. On graph kernels: Hardness results and efficient alternatives. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 350, + 225, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 350, + 225, + 365 + ], + "score": 1.0, + "content": "COLT Workshop, 2003.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 110, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 110, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "[8] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre Richemond, Elena", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 380, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 380, + 505, + 396 + ], + "score": 1.0, + "content": "Buchatskaya, Carl Doersch, Bernardo Pires, Zhaohan Guo, Mohammad Azar, Bilal Piot, Koray", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 392, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 506, + 407 + ], + "score": 1.0, + "content": "Kavukcuoglu, Rémi Munos, and Michal Valko. Bootstrap your own latent: A new approach to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 404, + 255, + 416 + ], + "spans": [ + { + "bbox": [ + 127, + 404, + 255, + 416 + ], + "score": 1.0, + "content": "self-supervised learning. 2020.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 423, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 110, + 423, + 506, + 438 + ], + "score": 1.0, + "content": "[9] Aditya Grover and Jure Leskovec. node2vec: Scalable feature learning for networks. In KDD,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 434, + 154, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 434, + 154, + 447 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 454, + 507, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 507, + 469 + ], + "score": 1.0, + "content": "[10] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Property controllable variational autoencoder via", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 466, + 507, + 478 + ], + "spans": [ + { + "bbox": [ + 127, + 466, + 507, + 478 + ], + "score": 1.0, + "content": "invertible mutual dependence. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "score": 1.0, + "content": "[11] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Deep generative models for spatial networks. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 125, + 494, + 507, + 512 + ], + "spans": [ + { + "bbox": [ + 125, + 494, + 507, + 512 + ], + "score": 1.0, + "content": "Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 125, + 507, + 219, + 520 + ], + "spans": [ + { + "bbox": [ + 125, + 507, + 219, + 520 + ], + "score": 1.0, + "content": "pages 505–515, 2021.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "[12] William L. Hamilton, Rex Ying, and Jure Leskovec. Inductive representation learning on large", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 538, + 237, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 538, + 237, + 551 + ], + "score": 1.0, + "content": "graphs. In NeurIPS, 2017.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 556, + 507, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 507, + 574 + ], + "score": 1.0, + "content": "[13] Kaveh Hassani and Amir Hosein Khasahmadi. Contrastive multi-view representation learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 125, + 569, + 313, + 582 + ], + "spans": [ + { + "bbox": [ + 125, + 569, + 313, + 582 + ], + "score": 1.0, + "content": "on graphs. In ICML, pages 3451–3461. 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 588, + 507, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 507, + 603 + ], + "score": 1.0, + "content": "[14] Kexin Huang and Marinka Zitnik. Graph meta learning via local subgraphs. CoRR,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 599, + 222, + 614 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 222, + 614 + ], + "score": 1.0, + "content": "abs/2006.07889, 2020.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "[15] Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 631, + 233, + 644 + ], + "spans": [ + { + "bbox": [ + 127, + 631, + 233, + 644 + ], + "score": 1.0, + "content": "networks. In ICLR, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 650, + 466, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 466, + 665 + ], + "score": 1.0, + "content": "[16] Risi Kondor and Horace Pan. The multiscale laplacian graph kernel. In NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 669, + 508, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 508, + 685 + ], + "score": 1.0, + "content": "[17] Nils Kriege and Petra Mutzel. Subgraph matching kernels for attributed graphs. In ICML, 2012.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 690, + 450, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 450, + 704 + ], + "score": 1.0, + "content": "[18] R. Linsker. Self-organization in a perceptual network. Computer, 21:105, 1988.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 404, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 404, + 724 + ], + "score": 1.0, + "content": "[19] Qing Lu and Lise Getoor. Link-based classification. In ICML, 2003.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 21.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 279, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 281, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 281, + 88 + ], + "score": 1.0, + "content": "Funding Transparency Statement", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 96, + 455, + 108 + ], + "lines": [ + { + "bbox": [ + 106, + 95, + 456, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 456, + 110 + ], + "score": 1.0, + "content": "This project was partially supported by NSF projects IIS-1707548 and CBET-1638320.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 95, + 456, + 110 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 124, + 163, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 165, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 165, + 138 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 111, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "[1] Mikhail Belkin, Partha Niyogi, and Vikas Sindhwani. Manifold regularization: A geometric", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 154, + 497, + 167 + ], + "spans": [ + { + "bbox": [ + 127, + 154, + 497, + 167 + ], + "score": 1.0, + "content": "framework for learning from labeled and unlabeled examples. J. Mach. Learn. Res, 7, 2006.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 174, + 507, + 189 + ], + "spans": [ + { + "bbox": [ + 110, + 174, + 507, + 189 + ], + "score": 1.0, + "content": "[2] Karsten M. Borgwardt and Hans-Peter Kriegel. Shortest-path kernels on graphs. In ICDM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 185, + 154, + 199 + ], + "spans": [ + { + "bbox": [ + 127, + 185, + 154, + 199 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 204, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 110, + 204, + 506, + 218 + ], + "score": 1.0, + "content": "[3] Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey E. Hinton. A simple framework", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 127, + 217, + 379, + 229 + ], + "spans": [ + { + "bbox": [ + 127, + 217, + 379, + 229 + ], + "score": 1.0, + "content": "for contrastive learning of visual representations. ICML, 2020.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 111, + 236, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 111, + 236, + 506, + 249 + ], + "score": 1.0, + "content": "[4] Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. CoRR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 248, + 221, + 260 + ], + "spans": [ + { + "bbox": [ + 127, + 248, + 221, + 260 + ], + "score": 1.0, + "content": "abs/2011.10566, 2020.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 111, + 267, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 111, + 267, + 506, + 280 + ], + "score": 1.0, + "content": "[5] Michaël Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 126, + 278, + 379, + 292 + ], + "spans": [ + { + "bbox": [ + 126, + 278, + 379, + 292 + ], + "score": 1.0, + "content": "on graphs with fast localized spectral filtering. In NIPS, 2016.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 111, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 111, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "[6] Yuanqi Du, Shiyu Wang, Xiaojie Guo, Hengning Cao, Shujie Hu, Junji Jiang, Aishwarya Varala,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 307, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 127, + 307, + 506, + 323 + ], + "score": 1.0, + "content": "Abhinav Angirekula, and Liang Zhao. Graphgt: Machine learning datasets for deep graph", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 320, + 280, + 333 + ], + "spans": [ + { + "bbox": [ + 126, + 320, + 280, + 333 + ], + "score": 1.0, + "content": "generation and transformation. 2021.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 338, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 110, + 338, + 505, + 353 + ], + "score": 1.0, + "content": "[7] Gartner, Flach, and Wrobel. On graph kernels: Hardness results and efficient alternatives. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 350, + 225, + 365 + ], + "spans": [ + { + "bbox": [ + 127, + 350, + 225, + 365 + ], + "score": 1.0, + "content": "COLT Workshop, 2003.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 110, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 110, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "[8] Jean-Bastien Grill, Florian Strub, Florent Altché, Corentin Tallec, Pierre Richemond, Elena", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 380, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 126, + 380, + 505, + 396 + ], + "score": 1.0, + "content": "Buchatskaya, Carl Doersch, Bernardo Pires, Zhaohan Guo, Mohammad Azar, Bilal Piot, Koray", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 392, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 392, + 506, + 407 + ], + "score": 1.0, + "content": "Kavukcuoglu, Rémi Munos, and Michal Valko. Bootstrap your own latent: A new approach to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 404, + 255, + 416 + ], + "spans": [ + { + "bbox": [ + 127, + 404, + 255, + 416 + ], + "score": 1.0, + "content": "self-supervised learning. 2020.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 423, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 110, + 423, + 506, + 438 + ], + "score": 1.0, + "content": "[9] Aditya Grover and Jure Leskovec. node2vec: Scalable feature learning for networks. In KDD,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 434, + 154, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 434, + 154, + 447 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 454, + 507, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 507, + 469 + ], + "score": 1.0, + "content": "[10] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Property controllable variational autoencoder via", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 127, + 466, + 507, + 478 + ], + "spans": [ + { + "bbox": [ + 127, + 466, + 507, + 478 + ], + "score": 1.0, + "content": "invertible mutual dependence. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 507, + 499 + ], + "score": 1.0, + "content": "[11] Xiaojie Guo, Yuanqi Du, and Liang Zhao. Deep generative models for spatial networks. In", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 125, + 494, + 507, + 512 + ], + "spans": [ + { + "bbox": [ + 125, + 494, + 507, + 512 + ], + "score": 1.0, + "content": "Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 125, + 507, + 219, + 520 + ], + "spans": [ + { + "bbox": [ + 125, + 507, + 219, + 520 + ], + "score": 1.0, + "content": "pages 505–515, 2021.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "[12] William L. Hamilton, Rex Ying, and Jure Leskovec. Inductive representation learning on large", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 126, + 538, + 237, + 551 + ], + "spans": [ + { + "bbox": [ + 126, + 538, + 237, + 551 + ], + "score": 1.0, + "content": "graphs. In NeurIPS, 2017.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 556, + 507, + 574 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 507, + 574 + ], + "score": 1.0, + "content": "[13] Kaveh Hassani and Amir Hosein Khasahmadi. Contrastive multi-view representation learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 125, + 569, + 313, + 582 + ], + "spans": [ + { + "bbox": [ + 125, + 569, + 313, + 582 + ], + "score": 1.0, + "content": "on graphs. In ICML, pages 3451–3461. 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 588, + 507, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 507, + 603 + ], + "score": 1.0, + "content": "[14] Kexin Huang and Marinka Zitnik. Graph meta learning via local subgraphs. CoRR,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 599, + 222, + 614 + ], + "spans": [ + { + "bbox": [ + 127, + 599, + 222, + 614 + ], + "score": 1.0, + "content": "abs/2006.07889, 2020.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "[15] Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 631, + 233, + 644 + ], + "spans": [ + { + "bbox": [ + 127, + 631, + 233, + 644 + ], + "score": 1.0, + "content": "networks. In ICLR, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 650, + 466, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 466, + 665 + ], + "score": 1.0, + "content": "[16] Risi Kondor and Horace Pan. The multiscale laplacian graph kernel. In NIPS, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 669, + 508, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 669, + 508, + 685 + ], + "score": 1.0, + "content": "[17] Nils Kriege and Petra Mutzel. Subgraph matching kernels for attributed graphs. In ICML, 2012.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 690, + 450, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 450, + 704 + ], + "score": 1.0, + "content": "[18] R. Linsker. Self-organization in a perceptual network. Computer, 21:105, 1988.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 404, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 404, + 724 + ], + "score": 1.0, + "content": "[19] Qing Lu and Lise Getoor. Link-based classification. In ICML, 2003.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 144, + 508, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 41, + 507, + 730 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[20] Annamalai Narayanan, Mahinthan Chandramohan, Rajasekar Venkatesan, Lihui Chen, Yang", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "Liu, and Shantanu Jaiswal. graph2vec: Learning distributed representations of graphs. CoRR,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 93, + 155, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 93, + 155, + 108 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "[21] Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 125, + 366, + 138 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 366, + 138 + ], + "score": 1.0, + "content": "predictive coding. arXiv preprint arXiv:1807.03748, 2018.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "[22] Jiezhong Qiu, Qibin Chen, Yuxiao Dong, Jing Zhang, Hongxia Yang, Ming Ding, Kuansan", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 152, + 508, + 169 + ], + "spans": [ + { + "bbox": [ + 126, + 152, + 508, + 169 + ], + "score": 1.0, + "content": "Wang, and Jie Tang. Gcc: Graph contrastive coding for graph neural network pre-training.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 165, + 180, + 178 + ], + "spans": [ + { + "bbox": [ + 127, + 165, + 180, + 178 + ], + "score": 1.0, + "content": "KDD, 2020.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 182, + 508, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 508, + 199 + ], + "score": 1.0, + "content": "[23] Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 126, + 194, + 451, + 209 + ], + "spans": [ + { + "bbox": [ + 126, + 194, + 451, + 209 + ], + "score": 1.0, + "content": "Rad. Collective classification in network data. AI magazine, 29(3):93–93, 2008.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "score": 1.0, + "content": "[24] Nino Shervashidze, Pascal Schweitzer, Erik Jan van Leeuwen, Kurt Mehlhorn, and Karsten M.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 225, + 497, + 239 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 497, + 239 + ], + "score": 1.0, + "content": "Borgwardt. Weisfeiler-lehman graph kernels. J. Mach. Learn. Res, pages 2539–2561, 2011.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 507, + 257 + ], + "score": 1.0, + "content": "[25] Nino Shervashidze, S. V. N. Vishwanathan, Tobias Petri, Kurt Mehlhorn, and Karsten M.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 254, + 471, + 268 + ], + "spans": [ + { + "bbox": [ + 127, + 254, + 471, + 268 + ], + "score": 1.0, + "content": "Borgwardt. Efficient graphlet kernels for large graph comparison. In AISTATS, 2009.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "[26] Ravid Shwartz-Ziv and Naftali Tishby. Opening the black box of deep neural networks via", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 283, + 344, + 297 + ], + "spans": [ + { + "bbox": [ + 126, + 283, + 344, + 297 + ], + "score": 1.0, + "content": "information. arXiv preprint arXiv:1703.00810, 2017.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "[27] Stefano Soatto and Alessandro Chiuso. Modeling visual representations: Defining properties", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 313, + 297, + 326 + ], + "spans": [ + { + "bbox": [ + 126, + 313, + 297, + 326 + ], + "score": 1.0, + "content": "and deep approximations. In ICLR, 2016.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "[28] Fan-Yun Sun, Jordan Hoffman, Vikas Verma, and Jian Tang. Infograph: Unsupervised and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 126, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "semi-supervised graph-level representation learning via mutual information maximization. In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 354, + 181, + 366 + ], + "spans": [ + { + "bbox": [ + 127, + 354, + 181, + 366 + ], + "score": 1.0, + "content": "ICLR, 2019.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 373, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 506, + 385 + ], + "score": 1.0, + "content": "[29] Shantanu Thakoor, Corentin Tallec, Mohammad Gheshlaghi Azar, Rémi Munos, Petar", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 382, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 126, + 382, + 506, + 399 + ], + "score": 1.0, + "content": "Velickovi ˇ c, and Michal Valko. Bootstrapped representation learning on graphs. ´ arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 395, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 395, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:2102.06514, 2021.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "score": 1.0, + "content": "[30] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 126, + 425, + 439, + 439 + ], + "spans": [ + { + "bbox": [ + 126, + 425, + 439, + 439 + ], + "score": 1.0, + "content": "makes for good views for contrastive learning. In NeurIPS, volume 33, 2020.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 443, + 507, + 456 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 507, + 456 + ], + "score": 1.0, + "content": "[31] Naftali Tishby, Fernando C. N. Pereira, and William Bialek. The information bottleneck method.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 455, + 254, + 467 + ], + "spans": [ + { + "bbox": [ + 127, + 455, + 254, + 467 + ], + "score": 1.0, + "content": "CoRR, physics/0004057, 2000.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 103, + 471, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 103, + 471, + 507, + 487 + ], + "score": 1.0, + "content": "[32] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 127, + 483, + 328, + 498 + ], + "spans": [ + { + "bbox": [ + 127, + 483, + 328, + 498 + ], + "score": 1.0, + "content": "Bengio. Graph Attention Networks. ICLR, 2018.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "[33] Petar Velickovi ˇ c, William Fedus, William L. Hamilton, Pietro Liò, Yoshua Bengio, and R Devon ´", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 128, + 514, + 312, + 527 + ], + "spans": [ + { + "bbox": [ + 128, + 514, + 312, + 527 + ], + "score": 1.0, + "content": "Hjelm. Deep Graph Infomax. In ICLR, 2019.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 533, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 545 + ], + "score": 1.0, + "content": "[34] Nikil Wale, Ian A Watson, and George Karypis. Comparison of descriptor spaces for chemical", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 126, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 126, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "compound retrieval and classification. Knowledge and Information Systems, 14(3):347–375,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 552, + 154, + 568 + ], + "spans": [ + { + "bbox": [ + 126, + 552, + 154, + 568 + ], + "score": 1.0, + "content": "2008.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "[35] Jason Weston, Frédéric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 127, + 585, + 270, + 597 + ], + "spans": [ + { + "bbox": [ + 127, + 585, + 270, + 597 + ], + "score": 1.0, + "content": "semi-supervised embedding, 2013.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 603, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 506, + 615 + ], + "score": 1.0, + "content": "[36] Felix Wu, Tianyi Zhang 0007, Amauri H. Souza Jr., Christopher Fifty, Tao Yu, and Kilian Q.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 127, + 613, + 408, + 628 + ], + "spans": [ + { + "bbox": [ + 127, + 613, + 408, + 628 + ], + "score": 1.0, + "content": "Weinberger. Simplifying graph convolutional networks. ICML, 2019.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 103, + 631, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 103, + 631, + 507, + 648 + ], + "score": 1.0, + "content": "[37] Tailin Wu, Hongyu Ren, Pan Li, and Jure Leskovec. Graph information bottleneck. CoRR,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 127, + 644, + 155, + 656 + ], + "spans": [ + { + "bbox": [ + 127, + 644, + 155, + 656 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 506, + 676 + ], + "score": 1.0, + "content": "[38] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 127, + 674, + 236, + 686 + ], + "spans": [ + { + "bbox": [ + 127, + 674, + 236, + 686 + ], + "score": 1.0, + "content": "networks? In ICLR, 2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 692, + 450, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 450, + 706 + ], + "score": 1.0, + "content": "[39] Pinar Yanardag and S. V. N. Vishwanathan. Deep graph kernels. In KDD, 2015.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 103, + 709, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 103, + 709, + 508, + 725 + ], + "score": 1.0, + "content": "[40] Pinar Yanardag and SVN Vishwanathan. Deep graph kernels. In KDD, pages 1365–1374, 2015.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 41, + 507, + 730 + ], + "lines": [ + { + "bbox": [ + 104, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 104, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[20] Annamalai Narayanan, Mahinthan Chandramohan, Rajasekar Venkatesan, Lihui Chen, Yang", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 506, + 98 + ], + "score": 1.0, + "content": "Liu, and Shantanu Jaiswal. graph2vec: Learning distributed representations of graphs. CoRR,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 126, + 93, + 155, + 108 + ], + "spans": [ + { + "bbox": [ + 126, + 93, + 155, + 108 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "[21] Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 125, + 366, + 138 + ], + "spans": [ + { + "bbox": [ + 126, + 125, + 366, + 138 + ], + "score": 1.0, + "content": "predictive coding. arXiv preprint arXiv:1807.03748, 2018.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "[22] Jiezhong Qiu, Qibin Chen, Yuxiao Dong, Jing Zhang, Hongxia Yang, Ming Ding, Kuansan", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 152, + 508, + 169 + ], + "spans": [ + { + "bbox": [ + 126, + 152, + 508, + 169 + ], + "score": 1.0, + "content": "Wang, and Jie Tang. Gcc: Graph contrastive coding for graph neural network pre-training.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 165, + 180, + 178 + ], + "spans": [ + { + "bbox": [ + 127, + 165, + 180, + 178 + ], + "score": 1.0, + "content": "KDD, 2020.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 182, + 508, + 199 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 508, + 199 + ], + "score": 1.0, + "content": "[23] Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 194, + 451, + 209 + ], + "spans": [ + { + "bbox": [ + 126, + 194, + 451, + 209 + ], + "score": 1.0, + "content": "Rad. Collective classification in network data. AI magazine, 29(3):93–93, 2008.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "score": 1.0, + "content": "[24] Nino Shervashidze, Pascal Schweitzer, Erik Jan van Leeuwen, Kurt Mehlhorn, and Karsten M.", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 225, + 497, + 239 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 497, + 239 + ], + "score": 1.0, + "content": "Borgwardt. Weisfeiler-lehman graph kernels. J. Mach. Learn. Res, pages 2539–2561, 2011.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 507, + 257 + ], + "score": 1.0, + "content": "[25] Nino Shervashidze, S. V. N. Vishwanathan, Tobias Petri, Kurt Mehlhorn, and Karsten M.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 254, + 471, + 268 + ], + "spans": [ + { + "bbox": [ + 127, + 254, + 471, + 268 + ], + "score": 1.0, + "content": "Borgwardt. Efficient graphlet kernels for large graph comparison. In AISTATS, 2009.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "[26] Ravid Shwartz-Ziv and Naftali Tishby. Opening the black box of deep neural networks via", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 283, + 344, + 297 + ], + "spans": [ + { + "bbox": [ + 126, + 283, + 344, + 297 + ], + "score": 1.0, + "content": "information. arXiv preprint arXiv:1703.00810, 2017.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "[27] Stefano Soatto and Alessandro Chiuso. Modeling visual representations: Defining properties", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 313, + 297, + 326 + ], + "spans": [ + { + "bbox": [ + 126, + 313, + 297, + 326 + ], + "score": 1.0, + "content": "and deep approximations. In ICLR, 2016.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "[28] Fan-Yun Sun, Jordan Hoffman, Vikas Verma, and Jian Tang. Infograph: Unsupervised and", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 343, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 126, + 343, + 506, + 357 + ], + "score": 1.0, + "content": "semi-supervised graph-level representation learning via mutual information maximization. In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 127, + 354, + 181, + 366 + ], + "spans": [ + { + "bbox": [ + 127, + 354, + 181, + 366 + ], + "score": 1.0, + "content": "ICLR, 2019.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 373, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 506, + 385 + ], + "score": 1.0, + "content": "[29] Shantanu Thakoor, Corentin Tallec, Mohammad Gheshlaghi Azar, Rémi Munos, Petar", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 382, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 126, + 382, + 506, + 399 + ], + "score": 1.0, + "content": "Velickovi ˇ c, and Michal Valko. Bootstrapped representation learning on graphs. ´ arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 127, + 395, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 395, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:2102.06514, 2021.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 428 + ], + "score": 1.0, + "content": "[30] Yonglong Tian, Chen Sun, Ben Poole, Dilip Krishnan, Cordelia Schmid, and Phillip Isola. What", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 425, + 439, + 439 + ], + "spans": [ + { + "bbox": [ + 126, + 425, + 439, + 439 + ], + "score": 1.0, + "content": "makes for good views for contrastive learning. In NeurIPS, volume 33, 2020.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 443, + 507, + 456 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 507, + 456 + ], + "score": 1.0, + "content": "[31] Naftali Tishby, Fernando C. N. Pereira, and William Bialek. The information bottleneck method.", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 455, + 254, + 467 + ], + "spans": [ + { + "bbox": [ + 127, + 455, + 254, + 467 + ], + "score": 1.0, + "content": "CoRR, physics/0004057, 2000.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 471, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 103, + 471, + 507, + 487 + ], + "score": 1.0, + "content": "[32] Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Liò, and Yoshua ´", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 483, + 328, + 498 + ], + "spans": [ + { + "bbox": [ + 127, + 483, + 328, + 498 + ], + "score": 1.0, + "content": "Bengio. Graph Attention Networks. ICLR, 2018.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "[33] Petar Velickovi ˇ c, William Fedus, William L. Hamilton, Pietro Liò, Yoshua Bengio, and R Devon ´", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 514, + 312, + 527 + ], + "spans": [ + { + "bbox": [ + 128, + 514, + 312, + 527 + ], + "score": 1.0, + "content": "Hjelm. Deep Graph Infomax. In ICLR, 2019.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 533, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 506, + 545 + ], + "score": 1.0, + "content": "[34] Nikil Wale, Ian A Watson, and George Karypis. Comparison of descriptor spaces for chemical", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 126, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "compound retrieval and classification. Knowledge and Information Systems, 14(3):347–375,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 126, + 552, + 154, + 568 + ], + "spans": [ + { + "bbox": [ + 126, + 552, + 154, + 568 + ], + "score": 1.0, + "content": "2008.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "[35] Jason Weston, Frédéric Ratle, Hossein Mobahi, and Ronan Collobert. Deep learning via", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 585, + 270, + 597 + ], + "spans": [ + { + "bbox": [ + 127, + 585, + 270, + 597 + ], + "score": 1.0, + "content": "semi-supervised embedding, 2013.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 603, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 506, + 615 + ], + "score": 1.0, + "content": "[36] Felix Wu, Tianyi Zhang 0007, Amauri H. Souza Jr., Christopher Fifty, Tao Yu, and Kilian Q.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 613, + 408, + 628 + ], + "spans": [ + { + "bbox": [ + 127, + 613, + 408, + 628 + ], + "score": 1.0, + "content": "Weinberger. Simplifying graph convolutional networks. ICML, 2019.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 631, + 507, + 648 + ], + "spans": [ + { + "bbox": [ + 103, + 631, + 507, + 648 + ], + "score": 1.0, + "content": "[37] Tailin Wu, Hongyu Ren, Pan Li, and Jure Leskovec. Graph information bottleneck. CoRR,", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 644, + 155, + 656 + ], + "spans": [ + { + "bbox": [ + 127, + 644, + 155, + 656 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 506, + 676 + ], + "score": 1.0, + "content": "[38] Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 674, + 236, + 686 + ], + "spans": [ + { + "bbox": [ + 127, + 674, + 236, + 686 + ], + "score": 1.0, + "content": "networks? In ICLR, 2019.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 692, + 450, + 706 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 450, + 706 + ], + "score": 1.0, + "content": "[39] Pinar Yanardag and S. V. N. Vishwanathan. Deep graph kernels. In KDD, 2015.", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 103, + 709, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 103, + 709, + 508, + 725 + ], + "score": 1.0, + "content": "[40] Pinar Yanardag and SVN Vishwanathan. Deep graph kernels. In KDD, pages 1365–1374, 2015.", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "score": 1.0, + "content": "[41] Zhilin Yang, William W. Cohen, and Ruslan Salakhutdinov. Revisiting semi-supervised learning", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 84, + 349, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 349, + 97 + ], + "score": 1.0, + "content": "with graph embeddings. ICML, abs/1603.08861, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 102, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 507, + 117 + ], + "score": 1.0, + "content": "[42] Yuning You, Tianlong Chen, Yongduo Sui, Ting Chen, Zhangyang Wang, and Yang Shen.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 114, + 442, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 442, + 127 + ], + "score": 1.0, + "content": "Graph contrastive learning with augmentations. In NeurIPS, volume 33, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "score": 1.0, + "content": "[43] Junchi Yu, Tingyang Xu, Yu Rong, Yatao Bian, Junzhou Huang, and Ran He. Graph information", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 144, + 329, + 156 + ], + "spans": [ + { + "bbox": [ + 127, + 144, + 329, + 156 + ], + "score": 1.0, + "content": "bottleneck for subgraph recognition. ICLR, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "[44] Tong Zhao, Yozen Liu, Leonardo Neves, Oliver Woodford, Meng Jiang, and Neil Shah. Data", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 174, + 456, + 186 + ], + "spans": [ + { + "bbox": [ + 127, + 174, + 456, + 186 + ], + "score": 1.0, + "content": "augmentation for graph neural networks. arXiv preprint arXiv:2006.06830, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 191, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 206 + ], + "score": 1.0, + "content": "[45] Yanqiao Zhu, Yichen Xu, Feng Yu, Qiang Liu, Shu Wu, and Liang Wang. Deep Graph", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 203, + 387, + 216 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 387, + 216 + ], + "score": 1.0, + "content": "Contrastive Representation Learning. In ICML Workshop, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 103, + 72, + 508, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 507, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 87 + ], + "score": 1.0, + "content": "[41] Zhilin Yang, William W. Cohen, and Ruslan Salakhutdinov. Revisiting semi-supervised learning", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 127, + 84, + 349, + 97 + ], + "spans": [ + { + "bbox": [ + 127, + 84, + 349, + 97 + ], + "score": 1.0, + "content": "with graph embeddings. ICML, abs/1603.08861, 2016.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 507, + 117 + ], + "score": 1.0, + "content": "[42] Yuning You, Tianlong Chen, Yongduo Sui, Ting Chen, Zhangyang Wang, and Yang Shen.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 114, + 442, + 127 + ], + "spans": [ + { + "bbox": [ + 127, + 114, + 442, + 127 + ], + "score": 1.0, + "content": "Graph contrastive learning with augmentations. In NeurIPS, volume 33, 2020.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "score": 1.0, + "content": "[43] Junchi Yu, Tingyang Xu, Yu Rong, Yatao Bian, Junzhou Huang, and Ran He. Graph information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 144, + 329, + 156 + ], + "spans": [ + { + "bbox": [ + 127, + 144, + 329, + 156 + ], + "score": 1.0, + "content": "bottleneck for subgraph recognition. ICLR, 2021.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "[44] Tong Zhao, Yozen Liu, Leonardo Neves, Oliver Woodford, Meng Jiang, and Neil Shah. Data", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 174, + 456, + 186 + ], + "spans": [ + { + "bbox": [ + 127, + 174, + 456, + 186 + ], + "score": 1.0, + "content": "augmentation for graph neural networks. arXiv preprint arXiv:2006.06830, 2020.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 206 + ], + "score": 1.0, + "content": "[45] Yanqiao Zhu, Yichen Xu, Feng Yu, Qiang Liu, Shu Wu, and Liang Wang. Deep Graph", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 203, + 387, + 216 + ], + "spans": [ + { + "bbox": [ + 127, + 203, + 387, + 216 + ], + "score": 1.0, + "content": "Contrastive Representation Learning. In ICML Workshop, 2020.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + } + ], + "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": [ + 104, + 72, + 507, + 214 + ], + "lines": [], + "index": 4.5, + "bbox_fs": [ + 105, + 72, + 507, + 216 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/519VBzfEaKW/519VBzfEaKW_model.json b/parse/train/519VBzfEaKW/519VBzfEaKW_model.json new file mode 100644 index 0000000000000000000000000000000000000000..6991bff3ba8f9ae1567abf500a5d63f9e2a62775 --- /dev/null +++ b/parse/train/519VBzfEaKW/519VBzfEaKW_model.json @@ -0,0 +1,15149 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 811, + 1304, + 811, + 1304, + 1327, + 398, + 1327 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1473, + 1404, + 1473, + 1404, + 1748, + 298, + 1748 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1762, + 1403, + 1762, + 1403, + 1977, + 298, + 1977 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 343, + 270, + 1359, + 270, + 1359, + 382, + 343, + 382 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 299, + 1399, + 529, + 1399, + 529, + 1436, + 299, + 1436 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 788, + 735, + 913, + 735, + 913, + 772, + 788, + 772 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 298, + 2033, + 1070, + 2033, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 346, + 495, + 1335, + 495, + 1335, + 659, + 346, + 659 + ], + "score": 0.568 + }, + { + "category_id": 13, + "poly": [ + 490, + 496, + 543, + 496, + 543, + 530, + 490, + 530 + ], + "score": 0.31, + "latex": "\\mathbf { X } \\mathbf { u } ^ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 268.0, + 1360.0, + 268.0, + 1360.0, + 328.0, + 339.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 324.0, + 954.0, + 324.0, + 954.0, + 388.0, + 749.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1395.0, + 535.0, + 1395.0, + 535.0, + 1442.0, + 292.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 734.0, + 919.0, + 734.0, + 919.0, + 776.0, + 783.0, + 776.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": [ + 396.0, + 813.0, + 1308.0, + 813.0, + 1308.0, + 847.0, + 396.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 841.0, + 1306.0, + 841.0, + 1306.0, + 877.0, + 393.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 872.0, + 1305.0, + 872.0, + 1305.0, + 909.0, + 393.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 898.0, + 1309.0, + 898.0, + 1309.0, + 943.0, + 392.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 932.0, + 1306.0, + 932.0, + 1306.0, + 968.0, + 393.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 964.0, + 1306.0, + 964.0, + 1306.0, + 1001.0, + 393.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 992.0, + 1304.0, + 992.0, + 1304.0, + 1031.0, + 393.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1023.0, + 1305.0, + 1023.0, + 1305.0, + 1059.0, + 394.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1056.0, + 1305.0, + 1056.0, + 1305.0, + 1087.0, + 394.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1085.0, + 1305.0, + 1085.0, + 1305.0, + 1118.0, + 395.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1114.0, + 1306.0, + 1114.0, + 1306.0, + 1152.0, + 392.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1147.0, + 1303.0, + 1147.0, + 1303.0, + 1177.0, + 395.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1172.0, + 1305.0, + 1172.0, + 1305.0, + 1213.0, + 392.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1209.0, + 1304.0, + 1209.0, + 1304.0, + 1239.0, + 395.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1239.0, + 1306.0, + 1239.0, + 1306.0, + 1269.0, + 395.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1267.0, + 1304.0, + 1267.0, + 1304.0, + 1299.0, + 394.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1300.0, + 1261.0, + 1300.0, + 1261.0, + 1330.0, + 395.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1508.0, + 296.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1502.0, + 1404.0, + 1502.0, + 1404.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1573.0, + 293.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1562.0, + 1406.0, + 1562.0, + 1406.0, + 1604.0, + 292.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1635.0, + 292.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 1406.0, + 1626.0, + 1406.0, + 1663.0, + 294.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1693.0, + 292.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1405.0, + 1685.0, + 1405.0, + 1722.0, + 293.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1717.0, + 1404.0, + 1717.0, + 1404.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1762.0, + 1404.0, + 1762.0, + 1404.0, + 1797.0, + 296.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1793.0, + 1405.0, + 1793.0, + 1405.0, + 1828.0, + 293.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 1405.0, + 1824.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1407.0, + 1915.0, + 1407.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 493.0, + 489.0, + 493.0, + 489.0, + 536.0, + 360.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 493.0, + 1334.0, + 493.0, + 1334.0, + 536.0, + 544.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 525.0, + 1052.0, + 525.0, + 1052.0, + 569.0, + 648.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 558.0, + 971.0, + 558.0, + 971.0, + 597.0, + 730.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 589.0, + 1063.0, + 589.0, + 1063.0, + 631.0, + 635.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 619.0, + 1087.0, + 619.0, + 1087.0, + 667.0, + 612.0, + 667.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1445, + 1404, + 1445, + 1404, + 1781, + 298, + 1781 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1793, + 1402, + 1793, + 1402, + 2008, + 299, + 2008 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 869, + 1404, + 869, + 1404, + 1173, + 298, + 1173 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1186, + 1405, + 1186, + 1405, + 1431, + 298, + 1431 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 341, + 179, + 1351, + 179, + 1351, + 579, + 341, + 579 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 604, + 1406, + 604, + 1406, + 760, + 296, + 760 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 792, + 1400, + 792, + 1400, + 856, + 299, + 856 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.733 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 859, + 2062, + 859, + 2084, + 841, + 2084 + ], + "score": 0.092 + }, + { + "category_id": 13, + "poly": [ + 488, + 726, + 623, + 726, + 623, + 761, + 488, + 761 + ], + "score": 0.94, + "latex": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )" + }, + { + "category_id": 13, + "poly": [ + 792, + 666, + 849, + 666, + 849, + 701, + 792, + 701 + ], + "score": 0.87, + "latex": "f _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1255, + 607, + 1278, + 607, + 1278, + 635, + 1255, + 635 + ], + "score": 0.82, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 722, + 666, + 777, + 666, + 777, + 700, + 722, + 700 + ], + "score": 0.8, + "latex": "f _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 706, + 726, + 825, + 726, + 825, + 761, + 706, + 761 + ], + "score": 0.76, + "latex": "c _ { i } ( \\cdot ) , c _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1127, + 641, + 1156, + 641, + 1156, + 667, + 1127, + 667 + ], + "score": 0.75, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1166, + 640, + 1198, + 640, + 1198, + 669, + 1166, + 669 + ], + "score": 0.72, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1280, + 671, + 1309, + 671, + 1309, + 700, + 1280, + 700 + ], + "score": 0.63, + "latex": "\\mathbf { z } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 673, + 1267, + 673, + 1267, + 698, + 1240, + 698 + ], + "score": 0.55, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 526, + 635, + 647, + 635, + 647, + 669, + 526, + 669 + ], + "score": 0.54, + "latex": "q _ { i } ( \\cdot ) , q _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 525, + 635, + 579, + 635, + 579, + 669, + 525, + 669 + ], + "score": 0.45, + "latex": "q _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 475, + 251, + 522, + 251, + 522, + 286, + 475, + 286 + ], + "score": 0.4, + "latex": "\\mathfrak { q } _ { 2 } ^ { ( \\mathfrak { G } ) }" + }, + { + "category_id": 13, + "poly": [ + 357, + 382, + 452, + 382, + 452, + 406, + 357, + 406 + ], + "score": 0.27, + "latex": "\\mathcal { G } = \\left( \\mathbf { A } , \\mathbf { X } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1239, + 671, + 1311, + 671, + 1311, + 700, + 1239, + 700 + ], + "score": 0.25, + "latex": "{ \\bf z } _ { i } , { \\bf z } _ { j }" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 188.0, + 647.0, + 188.0, + 647.0, + 205.0, + 623.0, + 205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 187.0, + 1078.0, + 187.0, + 1078.0, + 206.0, + 1032.0, + 206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 208.0, + 700.0, + 208.0, + 700.0, + 225.0, + 676.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 207.0, + 1129.0, + 207.0, + 1129.0, + 226.0, + 1085.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 256.0, + 638.0, + 256.0, + 638.0, + 271.0, + 622.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 234.0, + 691.0, + 234.0, + 691.0, + 242.0, + 682.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 223.0, + 832.0, + 223.0, + 832.0, + 270.0, + 779.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 237.0, + 893.0, + 237.0, + 893.0, + 279.0, + 834.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 252.0, + 1197.0, + 252.0, + 1197.0, + 275.0, + 1172.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 274.0, + 642.0, + 274.0, + 642.0, + 291.0, + 618.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 264.0, + 830.0, + 264.0, + 830.0, + 292.0, + 782.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 293.0, + 423.0, + 293.0, + 423.0, + 314.0, + 401.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 283.0, + 586.0, + 283.0, + 586.0, + 304.0, + 559.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 291.0, + 701.0, + 291.0, + 701.0, + 308.0, + 678.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 293.0, + 1118.0, + 293.0, + 1118.0, + 304.0, + 1091.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 313.0, + 368.0, + 313.0, + 368.0, + 328.0, + 355.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 318.0, + 471.0, + 318.0, + 471.0, + 334.0, + 451.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 306.0, + 645.0, + 306.0, + 645.0, + 341.0, + 603.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 323.0, + 1340.0, + 323.0, + 1340.0, + 352.0, + 1235.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 344.0, + 416.0, + 344.0, + 416.0, + 363.0, + 396.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 341.0, + 1347.0, + 341.0, + 1347.0, + 369.0, + 1224.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 356.0, + 364.0, + 356.0, + 364.0, + 370.0, + 348.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 373.0, + 356.0, + 373.0, + 356.0, + 411.0, + 351.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 373.0, + 459.0, + 373.0, + 459.0, + 411.0, + 453.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 373.0, + 649.0, + 373.0, + 649.0, + 394.0, + 621.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 372.0, + 1081.0, + 372.0, + 1081.0, + 391.0, + 1034.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 400.0, + 533.0, + 400.0, + 533.0, + 414.0, + 519.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 389.0, + 592.0, + 389.0, + 592.0, + 407.0, + 567.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 394.0, + 641.0, + 394.0, + 641.0, + 407.0, + 627.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 394.0, + 701.0, + 394.0, + 701.0, + 414.0, + 674.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 396.0, + 834.0, + 396.0, + 834.0, + 424.0, + 784.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 390.0, + 1017.0, + 390.0, + 1017.0, + 405.0, + 977.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 394.0, + 1062.0, + 394.0, + 1062.0, + 407.0, + 1045.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 394.0, + 1133.0, + 394.0, + 1133.0, + 412.0, + 1086.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 408.0, + 594.0, + 408.0, + 594.0, + 427.0, + 574.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 410.0, + 896.0, + 410.0, + 896.0, + 450.0, + 836.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 410.0, + 1011.0, + 410.0, + 1011.0, + 423.0, + 995.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 418.0, + 824.0, + 418.0, + 824.0, + 439.0, + 794.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 419.0, + 1193.0, + 419.0, + 1193.0, + 437.0, + 1173.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 434.0, + 833.0, + 434.0, + 833.0, + 462.0, + 785.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 440.0, + 1058.0, + 440.0, + 1058.0, + 457.0, + 1038.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 454.0, + 586.0, + 454.0, + 586.0, + 468.0, + 570.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 467.0, + 586.0, + 467.0, + 586.0, + 489.0, + 559.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 462.0, + 642.0, + 462.0, + 642.0, + 477.0, + 618.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 477.0, + 701.0, + 477.0, + 701.0, + 494.0, + 676.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 474.0, + 1008.0, + 474.0, + 1008.0, + 485.0, + 976.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 462.0, + 1068.0, + 462.0, + 1068.0, + 476.0, + 1026.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 477.0, + 1126.0, + 477.0, + 1126.0, + 492.0, + 1085.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 527.0, + 737.0, + 527.0, + 737.0, + 537.0, + 729.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 529.0, + 1135.0, + 529.0, + 1135.0, + 537.0, + 1127.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 548.0, + 632.0, + 548.0, + 632.0, + 583.0, + 451.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 548.0, + 1004.0, + 548.0, + 1004.0, + 585.0, + 861.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 553.0, + 1356.0, + 553.0, + 1356.0, + 581.0, + 1108.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 252.5, + 538.0, + 252.5, + 538.0, + 286.5, + 461.0, + 286.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 306.5, + 1061.0, + 306.5, + 1061.0, + 337.5, + 1028.0, + 337.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.25, + 358.5, + 461.25, + 358.5, + 461.25, + 377.0, + 450.25, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 400.0, + 524.0, + 400.0, + 524.0, + 437.0, + 472.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.25, + 492.5, + 638.25, + 492.5, + 638.25, + 522.5, + 607.25, + 522.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 491.0, + 1062.0, + 491.0, + 1062.0, + 525.0, + 1029.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 603.0, + 1254.0, + 603.0, + 1254.0, + 641.0, + 295.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 603.0, + 1406.0, + 603.0, + 1406.0, + 641.0, + 1279.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 635.0, + 524.0, + 635.0, + 524.0, + 670.0, + 293.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 635.0, + 1126.0, + 635.0, + 1126.0, + 670.0, + 648.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 635.0, + 1165.0, + 635.0, + 1165.0, + 670.0, + 1157.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 635.0, + 1406.0, + 635.0, + 1406.0, + 670.0, + 1199.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 663.0, + 721.0, + 663.0, + 721.0, + 703.0, + 291.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 663.0, + 791.0, + 663.0, + 791.0, + 703.0, + 778.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 663.0, + 1238.0, + 663.0, + 1238.0, + 703.0, + 850.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 663.0, + 1407.0, + 663.0, + 1407.0, + 703.0, + 1312.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 697.0, + 1404.0, + 697.0, + 1404.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 726.0, + 487.0, + 726.0, + 487.0, + 763.0, + 294.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 726.0, + 705.0, + 726.0, + 705.0, + 763.0, + 624.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 726.0, + 1409.0, + 726.0, + 1409.0, + 763.0, + 826.0, + 763.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, + 1443.0, + 1404.0, + 1443.0, + 1404.0, + 1480.0, + 293.0, + 1480.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": [ + 294.0, + 1505.0, + 1404.0, + 1505.0, + 1404.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1572.0, + 293.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 1405.0, + 1567.0, + 1405.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1633.0, + 292.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1628.0, + 1402.0, + 1628.0, + 1402.0, + 1659.0, + 296.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 1405.0, + 1658.0, + 1405.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1404.0, + 1687.0, + 1404.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1718.0, + 1405.0, + 1718.0, + 1405.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1247.0, + 1749.0, + 1247.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1406.0, + 1790.0, + 1406.0, + 1832.0, + 293.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 1404.0, + 1824.0, + 1404.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1855.0, + 1406.0, + 1855.0, + 1406.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1916.0, + 1404.0, + 1916.0, + 1404.0, + 1947.0, + 297.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1946.0, + 1406.0, + 1946.0, + 1406.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1977.0, + 1404.0, + 1977.0, + 1404.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 905.0, + 294.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1408.0, + 900.0, + 1408.0, + 935.0, + 294.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 1406.0, + 930.0, + 1406.0, + 964.0, + 293.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 1406.0, + 960.0, + 1406.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 989.0, + 1406.0, + 989.0, + 1406.0, + 1026.0, + 293.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1020.0, + 1404.0, + 1020.0, + 1404.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1051.0, + 1406.0, + 1051.0, + 1406.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1118.0, + 293.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1141.0, + 1147.0, + 1141.0, + 1147.0, + 1178.0, + 291.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1188.0, + 1405.0, + 1188.0, + 1405.0, + 1221.0, + 296.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1219.0, + 1403.0, + 1219.0, + 1403.0, + 1252.0, + 295.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1250.0, + 1408.0, + 1250.0, + 1408.0, + 1283.0, + 295.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1281.0, + 1407.0, + 1281.0, + 1407.0, + 1311.0, + 296.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1307.0, + 1408.0, + 1307.0, + 1408.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1336.0, + 1407.0, + 1336.0, + 1407.0, + 1374.0, + 292.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1371.0, + 1405.0, + 1371.0, + 1405.0, + 1402.0, + 293.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1400.0, + 1274.0, + 1400.0, + 1274.0, + 1434.0, + 292.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 791.0, + 1406.0, + 791.0, + 1406.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 444.0, + 821.0, + 444.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 466, + 1405, + 466, + 1405, + 1076, + 298, + 1076 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1281, + 1405, + 1281, + 1405, + 1618, + 297, + 1618 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1728, + 1405, + 1728, + 1405, + 2009, + 298, + 2009 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 202, + 1404, + 202, + 1404, + 355, + 299, + 355 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1090, + 1404, + 1090, + 1404, + 1213, + 298, + 1213 + ], + "score": 0.972 + }, + { + "category_id": 0, + "poly": [ + 300, + 1660, + 749, + 1660, + 749, + 1697, + 300, + 1697 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 644, + 1228, + 1054, + 1228, + 1054, + 1266, + 644, + 1266 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 399, + 548, + 399, + 548, + 436, + 299, + 436 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1233, + 1399, + 1233, + 1399, + 1262, + 1366, + 1262 + ], + "score": 0.836 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.646 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.301 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1233, + 1399, + 1233, + 1399, + 1262, + 1366, + 1262 + ], + "score": 0.117 + }, + { + "category_id": 13, + "poly": [ + 1059, + 1182, + 1156, + 1182, + 1156, + 1215, + 1059, + 1215 + ], + "score": 0.93, + "latex": "I ( \\mathbf { D } , \\mathbf { Z } )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1182, + 1297, + 1182, + 1297, + 1215, + 1208, + 1215 + ], + "score": 0.93, + "latex": "I ( \\mathbf { Z } , \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 834, + 1883, + 1052, + 1883, + 1052, + 1918, + 834, + 1918 + ], + "score": 0.92, + "latex": "\\mathbb { G } = \\{ \\mathcal { G } ^ { 1 } , \\mathcal { G } ^ { 2 } , \\cdot \\cdot \\cdot \\mathrm ~ \\} \\}" + }, + { + "category_id": 13, + "poly": [ + 607, + 1976, + 776, + 1976, + 776, + 2010, + 607, + 2010 + ], + "score": 0.92, + "latex": "\\mathbf { z } _ { g } = \\mathbf { G } \\mathbf { N } \\mathbf { N } \\mathbf { s } ( \\mathcal { G } )" + }, + { + "category_id": 13, + "poly": [ + 385, + 1761, + 509, + 1761, + 509, + 1792, + 385, + 1792 + ], + "score": 0.92, + "latex": "\\mathbf { X } \\in \\mathbb { R } ^ { n \\times d }" + }, + { + "category_id": 14, + "poly": [ + 641, + 1228, + 1054, + 1228, + 1054, + 1268, + 641, + 1268 + ], + "score": 0.9, + "latex": "\\operatorname* { m a x } \\mathbf { I } \\mathbf { B } _ { \\beta } = - I ( \\mathbf { D } ; \\mathbf { Z } ) + \\beta I ( \\mathbf { Z } ; \\mathbf { y } ) ," + }, + { + "category_id": 13, + "poly": [ + 469, + 1947, + 508, + 1947, + 508, + 1980, + 469, + 1980 + ], + "score": 0.89, + "latex": "\\mathbf { Y } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 607, + 1825, + 646, + 1825, + 646, + 1855, + 607, + 1855 + ], + "score": 0.89, + "latex": "{ \\bf Y } _ { v }" + }, + { + "category_id": 13, + "poly": [ + 429, + 1915, + 469, + 1915, + 469, + 1949, + 429, + 1949 + ], + "score": 0.89, + "latex": "\\mathbf { Y } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1885, + 336, + 1885, + 336, + 1915, + 296, + 1915 + ], + "score": 0.88, + "latex": "{ \\bf Y } _ { v }" + }, + { + "category_id": 13, + "poly": [ + 702, + 295, + 764, + 295, + 764, + 324, + 702, + 324 + ], + "score": 0.87, + "latex": "5 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1919, + 1321, + 1919, + 1321, + 1950, + 1289, + 1950 + ], + "score": 0.87, + "latex": "\\mathbf { z } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1730, + 1079, + 1730, + 1079, + 1763, + 945, + 1763 + ], + "score": 0.87, + "latex": "\\mathcal { G } = \\left( \\mathbf { A } , \\mathbf { X } \\right)" + }, + { + "category_id": 13, + "poly": [ + 346, + 1858, + 377, + 1858, + 377, + 1885, + 346, + 1885 + ], + "score": 0.87, + "latex": "\\mathbf { z } _ { v }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1828, + 1166, + 1828, + 1166, + 1855, + 1135, + 1855 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { v }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1730, + 1217, + 1730, + 1217, + 1760, + 1093, + 1760 + ], + "score": 0.86, + "latex": "\\mathbf { A } \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 976, + 1921, + 1006, + 1921, + 1006, + 1950, + 976, + 1950 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { g }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1795, + 1196, + 1795, + 1196, + 1824, + 1174, + 1824 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 900, + 1765, + 918, + 1765, + 918, + 1791, + 900, + 1791 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1330, + 1284, + 1349, + 1284, + 1349, + 1311, + 1330, + 1311 + ], + "score": 0.75, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1829, + 1344, + 1829, + 1344, + 1851, + 1326, + 1851 + ], + "score": 0.71, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1313, + 1066, + 1313, + 1066, + 1341, + 1043, + 1341 + ], + "score": 0.53, + "latex": "\\mathbf { Z }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1344, + 873, + 1344, + 873, + 1371, + 845, + 1371 + ], + "score": 0.3, + "latex": "\\mathbf { D }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1658.0, + 752.0, + 1658.0, + 752.0, + 1702.0, + 291.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 396.0, + 551.0, + 396.0, + 551.0, + 441.0, + 292.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 860.0, + 2058.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 469.0, + 1405.0, + 469.0, + 1405.0, + 504.0, + 296.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 501.0, + 1402.0, + 501.0, + 1402.0, + 532.0, + 296.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 532.0, + 1405.0, + 532.0, + 1405.0, + 563.0, + 296.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 563.0, + 1403.0, + 563.0, + 1403.0, + 594.0, + 296.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 591.0, + 1405.0, + 591.0, + 1405.0, + 626.0, + 295.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 619.0, + 1406.0, + 619.0, + 1406.0, + 658.0, + 293.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 653.0, + 1403.0, + 653.0, + 1403.0, + 683.0, + 296.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 679.0, + 1406.0, + 679.0, + 1406.0, + 718.0, + 292.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 746.0, + 295.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 1406.0, + 741.0, + 1406.0, + 776.0, + 295.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 769.0, + 1409.0, + 769.0, + 1409.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 801.0, + 1406.0, + 801.0, + 1406.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 868.0, + 296.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 863.0, + 1407.0, + 863.0, + 1407.0, + 899.0, + 292.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 894.0, + 1405.0, + 894.0, + 1405.0, + 929.0, + 295.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 924.0, + 1405.0, + 924.0, + 1405.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 952.0, + 1405.0, + 952.0, + 1405.0, + 988.0, + 293.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 981.0, + 1405.0, + 981.0, + 1405.0, + 1023.0, + 292.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1014.0, + 1406.0, + 1014.0, + 1406.0, + 1052.0, + 293.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1045.0, + 428.0, + 1045.0, + 428.0, + 1080.0, + 292.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1329.0, + 1281.0, + 1329.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1281.0, + 1408.0, + 1281.0, + 1408.0, + 1319.0, + 1350.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1312.0, + 1042.0, + 1312.0, + 1042.0, + 1346.0, + 295.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1312.0, + 1405.0, + 1312.0, + 1405.0, + 1346.0, + 1067.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1340.0, + 844.0, + 1340.0, + 844.0, + 1381.0, + 292.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1340.0, + 1406.0, + 1340.0, + 1406.0, + 1381.0, + 874.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1374.0, + 1407.0, + 1374.0, + 1407.0, + 1409.0, + 295.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1402.0, + 1407.0, + 1402.0, + 1407.0, + 1438.0, + 292.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1435.0, + 1406.0, + 1435.0, + 1406.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1466.0, + 1403.0, + 1466.0, + 1403.0, + 1497.0, + 296.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1494.0, + 1407.0, + 1494.0, + 1407.0, + 1529.0, + 294.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1524.0, + 1407.0, + 1524.0, + 1407.0, + 1559.0, + 295.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 1403.0, + 1553.0, + 1403.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1587.0, + 574.0, + 1587.0, + 574.0, + 1619.0, + 293.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 944.0, + 1723.0, + 944.0, + 1769.0, + 293.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1723.0, + 1092.0, + 1723.0, + 1092.0, + 1769.0, + 1080.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1723.0, + 1406.0, + 1723.0, + 1406.0, + 1769.0, + 1218.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1756.0, + 384.0, + 1756.0, + 384.0, + 1800.0, + 291.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1756.0, + 899.0, + 1756.0, + 899.0, + 1800.0, + 510.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1756.0, + 1407.0, + 1756.0, + 1407.0, + 1800.0, + 919.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1173.0, + 1790.0, + 1173.0, + 1829.0, + 295.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1829.0, + 1197.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1822.0, + 606.0, + 1822.0, + 606.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1822.0, + 1134.0, + 1822.0, + 1134.0, + 1859.0, + 647.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1822.0, + 1325.0, + 1822.0, + 1325.0, + 1859.0, + 1167.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1822.0, + 1406.0, + 1822.0, + 1406.0, + 1859.0, + 1345.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1855.0, + 345.0, + 1855.0, + 345.0, + 1888.0, + 296.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1888.0, + 378.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1880.0, + 833.0, + 1880.0, + 833.0, + 1921.0, + 337.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1880.0, + 1408.0, + 1880.0, + 1408.0, + 1921.0, + 1053.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 428.0, + 1912.0, + 428.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1912.0, + 975.0, + 1912.0, + 975.0, + 1952.0, + 470.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1912.0, + 1288.0, + 1912.0, + 1288.0, + 1952.0, + 1007.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1912.0, + 1403.0, + 1912.0, + 1403.0, + 1952.0, + 1322.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 468.0, + 1943.0, + 468.0, + 1984.0, + 293.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1984.0, + 509.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 606.0, + 1970.0, + 606.0, + 2014.0, + 292.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1970.0, + 789.0, + 1970.0, + 789.0, + 2014.0, + 777.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 203.0, + 1405.0, + 203.0, + 1405.0, + 236.0, + 295.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 302.0, + 292.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 701.0, + 294.0, + 701.0, + 330.0, + 294.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 330.0, + 765.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 326.0, + 1408.0, + 326.0, + 1408.0, + 359.0, + 295.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1409.0, + 1086.0, + 1409.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1120.0, + 1406.0, + 1120.0, + 1406.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1149.0, + 1408.0, + 1149.0, + 1408.0, + 1186.0, + 292.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 1058.0, + 1179.0, + 1058.0, + 1218.0, + 293.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1179.0, + 1207.0, + 1179.0, + 1207.0, + 1218.0, + 1157.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1179.0, + 1333.0, + 1179.0, + 1333.0, + 1218.0, + 1298.0, + 1218.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1669, + 1404, + 1669, + 1404, + 1792, + 298, + 1792 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1404, + 1884, + 1404, + 2008, + 299, + 2008 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1437, + 1405, + 1437, + 1405, + 1559, + 298, + 1559 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1194, + 1404, + 1194, + 1404, + 1317, + 297, + 1317 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 750, + 1404, + 750, + 1404, + 904, + 297, + 904 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1057, + 1404, + 1057, + 1404, + 1181, + 297, + 1181 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 916, + 1406, + 916, + 1406, + 1047, + 296, + 1047 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 500, + 1406, + 500, + 1406, + 686, + 296, + 686 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 576, + 1331, + 1121, + 1331, + 1121, + 1425, + 576, + 1425 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 296, + 1600, + 1043, + 1600, + 1043, + 1641, + 296, + 1641 + ], + "score": 0.94 + }, + { + "category_id": 3, + "poly": [ + 353, + 161, + 1351, + 161, + 1351, + 478, + 353, + 478 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 1828, + 597, + 1828, + 597, + 1862, + 299, + 1862 + ], + "score": 0.927 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1362, + 1400, + 1362, + 1400, + 1392, + 1366, + 1392 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.771 + }, + { + "category_id": 3, + "poly": [ + 354, + 161, + 1350, + 161, + 1350, + 477, + 354, + 477 + ], + "score": 0.434 + }, + { + "category_id": 14, + "poly": [ + 575, + 1330, + 1119, + 1330, + 1119, + 1424, + 575, + 1424 + ], + "score": 0.95, + "latex": "\\mathcal { L } _ { N C E } = - \\mathbb { E } \\left[ l o g \\frac { e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n } ) ) } { \\sum _ { n ^ { \\prime } = 1 } ^ { N } e x p ( h ( \\mathbf { z } _ { i , n } , \\mathbf { z } _ { j , n ^ { \\prime } } ) ) } \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1005, + 918, + 1051, + 918, + 1051, + 952, + 1005, + 952 + ], + "score": 0.93, + "latex": "q ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 344, + 1119, + 483, + 1119, + 483, + 1154, + 344, + 1154 + ], + "score": 0.92, + "latex": "\\mathbf { z } _ { j } \\sim f _ { j } ( \\mathbf { v } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 855, + 1497, + 1166, + 1497, + 1166, + 1531, + 855, + 1531 + ], + "score": 0.92, + "latex": "I ( \\mathbf { z } _ { i } , \\mathbf { z } _ { j } ) \\geqslant l o g ( N ) - \\mathcal { L } _ { N C E }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1090, + 1403, + 1090, + 1403, + 1121, + 1270, + 1121 + ], + "score": 0.92, + "latex": "\\mathbf { z } _ { i } \\sim f _ { i } ( \\mathbf { v } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 476, + 949, + 607, + 949, + 607, + 982, + 476, + 982 + ], + "score": 0.91, + "latex": "\\mathbf { v } _ { j } \\sim q _ { j } ( { \\mathcal { G } } )" + }, + { + "category_id": 13, + "poly": [ + 496, + 981, + 639, + 981, + 639, + 1015, + 496, + 1015 + ], + "score": 0.91, + "latex": "\\mathbf { X } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1130, + 949, + 1316, + 949, + 1316, + 982, + 1130, + 982 + ], + "score": 0.91, + "latex": "\\mathbf { v } _ { i } = ( \\mathbf { A } _ { v _ { i } } , \\mathbf { X } _ { v _ { i } } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 949, + 423, + 949, + 423, + 981, + 297, + 981 + ], + "score": 0.91, + "latex": "\\mathbf { v } _ { i } \\sim q _ { i } ( \\mathcal { G } )" + }, + { + "category_id": 13, + "poly": [ + 677, + 1088, + 726, + 1088, + 726, + 1122, + 677, + 1122 + ], + "score": 0.91, + "latex": "f ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 297, + 983, + 442, + 983, + 442, + 1015, + 297, + 1015 + ], + "score": 0.9, + "latex": "\\mathbf { A } _ { v _ { i } } \\in \\mathbb { R } ^ { n \\times n }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1498, + 1293, + 1498, + 1293, + 1531, + 1248, + 1531 + ], + "score": 0.9, + "latex": "I ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1437, + 419, + 1437, + 419, + 1471, + 372, + 1471 + ], + "score": 0.9, + "latex": "h ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 296, + 536, + 327, + 536, + 327, + 566, + 296, + 566 + ], + "score": 0.85, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1367, + 508, + 1396, + 508, + 1396, + 532, + 1367, + 532 + ], + "score": 0.84, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 649, + 920, + 672, + 920, + 672, + 948, + 649, + 948 + ], + "score": 0.82, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 443, + 537, + 463, + 537, + 463, + 564, + 443, + 564 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1203, + 503, + 1225, + 503, + 1225, + 531, + 1203, + 531 + ], + "score": 0.78, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1317, + 924, + 1348, + 924, + 1348, + 952, + 1317, + 952 + ], + "score": 0.72, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1064, + 1367, + 1064, + 1367, + 1091, + 1336, + 1091 + ], + "score": 0.69, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 501, + 173, + 519, + 173, + 519, + 195, + 501, + 195 + ], + "score": 0.68, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1278, + 925, + 1306, + 925, + 1306, + 949, + 1278, + 949 + ], + "score": 0.67, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1230, + 665, + 1230, + 665, + 1260, + 634, + 1260 + ], + "score": 0.64, + "latex": "\\mathbf { z } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1064, + 1325, + 1064, + 1325, + 1090, + 1296, + 1090 + ], + "score": 0.6, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 378, + 267, + 387, + 267, + 387, + 283, + 378, + 283 + ], + "score": 0.54, + "latex": "_ i" + }, + { + "category_id": 13, + "poly": [ + 596, + 1231, + 622, + 1231, + 622, + 1257, + 596, + 1257 + ], + "score": 0.52, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1192, + 172, + 1211, + 172, + 1211, + 194, + 1192, + 194 + ], + "score": 0.36, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 854, + 173, + 872, + 173, + 872, + 195, + 854, + 195 + ], + "score": 0.32, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 595, + 1229, + 665, + 1229, + 665, + 1259, + 595, + 1259 + ], + "score": 0.3, + "latex": "\\mathbf { z } _ { i } , \\mathbf { z } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1063, + 1368, + 1063, + 1368, + 1091, + 1295, + 1091 + ], + "score": 0.28, + "latex": "\\mathbf { v } _ { i } , \\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1331, + 275, + 1342, + 275, + 1342, + 292, + 1331, + 292 + ], + "score": 0.27, + "latex": "\\jmath" + }, + { + "category_id": 13, + "poly": [ + 640, + 266, + 651, + 266, + 651, + 286, + 640, + 286 + ], + "score": 0.27, + "latex": "j" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 496.0, + 1202.0, + 496.0, + 1202.0, + 541.0, + 293.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 496.0, + 1366.0, + 496.0, + 1366.0, + 541.0, + 1226.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 496.0, + 1409.0, + 496.0, + 1409.0, + 541.0, + 1397.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 530.0, + 295.0, + 530.0, + 295.0, + 567.0, + 291.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 530.0, + 442.0, + 530.0, + 442.0, + 567.0, + 328.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 530.0, + 1407.0, + 530.0, + 1407.0, + 567.0, + 464.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 560.0, + 1404.0, + 560.0, + 1404.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 1404.0, + 593.0, + 1404.0, + 625.0, + 296.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 620.0, + 1406.0, + 620.0, + 1406.0, + 657.0, + 293.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 1082.0, + 652.0, + 1082.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1594.0, + 1045.0, + 1594.0, + 1045.0, + 1649.0, + 291.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 165.0, + 500.0, + 165.0, + 500.0, + 199.0, + 496.0, + 199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 165.0, + 525.0, + 165.0, + 525.0, + 199.0, + 520.0, + 199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 164.0, + 853.0, + 164.0, + 853.0, + 200.0, + 847.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 164.0, + 879.0, + 164.0, + 879.0, + 200.0, + 873.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 163.0, + 1191.0, + 163.0, + 1191.0, + 200.0, + 1186.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 163.0, + 1218.0, + 163.0, + 1218.0, + 200.0, + 1212.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 272.0, + 487.0, + 272.0, + 487.0, + 298.0, + 464.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 258.0, + 513.0, + 258.0, + 513.0, + 264.0, + 508.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 270.0, + 556.0, + 270.0, + 556.0, + 302.0, + 529.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 258.0, + 653.0, + 258.0, + 653.0, + 280.0, + 623.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 277.0, + 837.0, + 277.0, + 837.0, + 291.0, + 821.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 256.0, + 900.0, + 256.0, + 900.0, + 289.0, + 873.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 258.0, + 994.0, + 258.0, + 994.0, + 277.0, + 976.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 264.0, + 1066.0, + 264.0, + 1066.0, + 274.0, + 1056.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 246.0, + 1086.0, + 246.0, + 1086.0, + 290.0, + 1067.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 256.0, + 1188.0, + 256.0, + 1188.0, + 264.0, + 1170.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 252.0, + 1258.0, + 252.0, + 1258.0, + 290.0, + 1189.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 245.0, + 1330.0, + 245.0, + 1330.0, + 298.0, + 1307.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 245.0, + 1353.0, + 245.0, + 1353.0, + 298.0, + 1343.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 284.0, + 523.0, + 284.0, + 523.0, + 317.0, + 495.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 444.0, + 526.0, + 444.0, + 526.0, + 481.0, + 494.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 444.0, + 879.0, + 444.0, + 879.0, + 481.0, + 847.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 445.0, + 1217.0, + 445.0, + 1217.0, + 478.0, + 1188.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.25, + 254.5, + 391.25, + 254.5, + 391.25, + 285.0, + 356.25, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 253.0, + 746.0, + 253.0, + 746.0, + 287.5, + 708.0, + 287.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 254.0, + 875.0, + 254.0, + 875.0, + 266.0, + 856.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.75, + 270.5, + 1234.75, + 270.5, + 1234.75, + 289.0, + 1218.75, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1826.0, + 600.0, + 1826.0, + 600.0, + 1866.0, + 295.0, + 1866.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": [ + 495.0, + 164.0, + 500.0, + 164.0, + 500.0, + 201.0, + 495.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 164.0, + 527.0, + 164.0, + 527.0, + 201.0, + 520.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 164.0, + 853.0, + 164.0, + 853.0, + 200.0, + 847.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 164.0, + 879.0, + 164.0, + 879.0, + 200.0, + 873.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 163.0, + 1191.0, + 163.0, + 1191.0, + 200.0, + 1187.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 163.0, + 1218.0, + 163.0, + 1218.0, + 200.0, + 1212.0, + 200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 255.0, + 851.0, + 255.0, + 851.0, + 263.0, + 831.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 254.0, + 899.0, + 254.0, + 899.0, + 266.0, + 871.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 260.0, + 992.0, + 260.0, + 992.0, + 274.0, + 976.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 249.0, + 1085.0, + 249.0, + 1085.0, + 287.0, + 1065.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 258.0, + 1206.0, + 258.0, + 1206.0, + 266.0, + 1197.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 254.0, + 1234.0, + 254.0, + 1234.0, + 266.0, + 1209.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 242.0, + 1330.0, + 242.0, + 1330.0, + 297.0, + 1311.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 242.0, + 1353.0, + 242.0, + 1353.0, + 297.0, + 1343.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 274.0, + 486.0, + 274.0, + 486.0, + 294.0, + 466.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 269.0, + 556.0, + 269.0, + 556.0, + 301.0, + 530.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 274.0, + 1239.0, + 274.0, + 1239.0, + 289.0, + 1223.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 284.0, + 522.0, + 284.0, + 522.0, + 317.0, + 495.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 444.0, + 527.0, + 444.0, + 527.0, + 480.0, + 494.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 444.0, + 879.0, + 444.0, + 879.0, + 480.0, + 847.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 444.0, + 1218.0, + 444.0, + 1218.0, + 480.0, + 1187.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 254.5, + 390.0, + 254.5, + 390.0, + 284.5, + 357.0, + 284.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 255.0, + 652.0, + 255.0, + 652.0, + 285.5, + 623.0, + 285.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 254.0, + 745.0, + 254.0, + 745.0, + 286.0, + 708.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.25, + 268.5, + 1249.25, + 268.5, + 1249.25, + 281.5, + 1241.25, + 281.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1671.0, + 1404.0, + 1671.0, + 1404.0, + 1704.0, + 294.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1700.0, + 1407.0, + 1700.0, + 1407.0, + 1735.0, + 292.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1732.0, + 1405.0, + 1732.0, + 1405.0, + 1768.0, + 293.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 505.0, + 1764.0, + 505.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1404.0, + 1885.0, + 1404.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1408.0, + 1946.0, + 1408.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1978.0, + 1404.0, + 1978.0, + 1404.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 371.0, + 1437.0, + 371.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1437.0, + 1408.0, + 1437.0, + 1408.0, + 1473.0, + 420.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1500.0, + 295.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1498.0, + 854.0, + 1498.0, + 854.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1498.0, + 1247.0, + 1498.0, + 1247.0, + 1534.0, + 1167.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 1294.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 564.0, + 1527.0, + 564.0, + 1559.0, + 295.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1231.0, + 295.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1224.0, + 594.0, + 1224.0, + 594.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1261.0, + 666.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1290.0, + 292.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1287.0, + 1230.0, + 1287.0, + 1230.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 787.0, + 296.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 782.0, + 1402.0, + 782.0, + 1402.0, + 815.0, + 296.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 814.0, + 1405.0, + 814.0, + 1405.0, + 847.0, + 295.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 879.0, + 294.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 872.0, + 405.0, + 872.0, + 405.0, + 906.0, + 294.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1056.0, + 1294.0, + 1056.0, + 1294.0, + 1093.0, + 294.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1093.0, + 1369.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1085.0, + 676.0, + 1085.0, + 676.0, + 1125.0, + 292.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1085.0, + 1269.0, + 1085.0, + 1269.0, + 1125.0, + 727.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1118.0, + 343.0, + 1118.0, + 343.0, + 1156.0, + 294.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1156.0, + 484.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1149.0, + 599.0, + 1149.0, + 599.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 648.0, + 917.0, + 648.0, + 954.0, + 293.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 917.0, + 1004.0, + 917.0, + 1004.0, + 954.0, + 673.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 917.0, + 1277.0, + 917.0, + 1277.0, + 954.0, + 1052.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 917.0, + 1316.0, + 917.0, + 1316.0, + 954.0, + 1307.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 917.0, + 1408.0, + 917.0, + 1408.0, + 954.0, + 1349.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 945.0, + 296.0, + 945.0, + 296.0, + 984.0, + 291.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 945.0, + 475.0, + 945.0, + 475.0, + 984.0, + 424.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 945.0, + 1129.0, + 945.0, + 1129.0, + 984.0, + 608.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 945.0, + 1407.0, + 945.0, + 1407.0, + 984.0, + 1317.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 974.0, + 296.0, + 974.0, + 296.0, + 1022.0, + 290.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 974.0, + 495.0, + 974.0, + 495.0, + 1022.0, + 443.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 974.0, + 1411.0, + 974.0, + 1411.0, + 1022.0, + 640.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1013.0, + 777.0, + 1013.0, + 777.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1175, + 1403, + 1175, + 1403, + 1360, + 298, + 1360 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1822, + 1404, + 1822, + 1404, + 2009, + 298, + 2009 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1608, + 1403, + 1608, + 1403, + 1733, + 298, + 1733 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 202, + 1404, + 202, + 1404, + 418, + 297, + 418 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 826, + 1404, + 826, + 1404, + 950, + 297, + 950 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1039, + 1404, + 1039, + 1404, + 1164, + 298, + 1164 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 430, + 1404, + 430, + 1404, + 554, + 298, + 554 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1373, + 1403, + 1373, + 1403, + 1466, + 298, + 1466 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 565, + 1403, + 565, + 1403, + 659, + 297, + 659 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 684, + 673, + 1014, + 673, + 1014, + 729, + 684, + 729 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 298, + 984, + 543, + 984, + 543, + 1018, + 298, + 1018 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 1767, + 693, + 1767, + 693, + 1801, + 300, + 1801 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 673, + 1543, + 1030, + 1543, + 1030, + 1584, + 673, + 1584 + ], + "score": 0.916 + }, + { + "category_id": 8, + "poly": [ + 696, + 1480, + 1015, + 1480, + 1015, + 1535, + 696, + 1535 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1485, + 1400, + 1485, + 1400, + 1514, + 1366, + 1514 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1366, + 740, + 1400, + 740, + 1400, + 769, + 1366, + 769 + ], + "score": 0.876 + }, + { + "category_id": 8, + "poly": [ + 775, + 777, + 991, + 777, + 991, + 813, + 775, + 813 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1547, + 1400, + 1547, + 1400, + 1576, + 1366, + 1576 + ], + "score": 0.871 + }, + { + "category_id": 9, + "poly": [ + 1366, + 678, + 1400, + 678, + 1400, + 708, + 1366, + 708 + ], + "score": 0.867 + }, + { + "category_id": 8, + "poly": [ + 726, + 737, + 998, + 737, + 998, + 772, + 726, + 772 + ], + "score": 0.86 + }, + { + "category_id": 9, + "poly": [ + 1366, + 780, + 1399, + 780, + 1399, + 808, + 1366, + 808 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.727 + }, + { + "category_id": 13, + "poly": [ + 640, + 1854, + 778, + 1854, + 778, + 1889, + 640, + 1889 + ], + "score": 0.92, + "latex": "( c _ { i } ( \\cdot ) , c _ { j } ( \\cdot ) )" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1407, + 1207, + 1407, + 1207, + 1438, + 1175, + 1438 + ], + "score": 0.88, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1376, + 1058, + 1376, + 1058, + 1408, + 1025, + 1408 + ], + "score": 0.8, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 599, + 1146, + 599, + 1146, + 627, + 1125, + 627 + ], + "score": 0.8, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 692, + 599, + 724, + 599, + 724, + 633, + 692, + 633 + ], + "score": 0.75, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1376, + 1401, + 1376, + 1401, + 1402, + 1377, + 1402 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1065, + 568, + 1089, + 568, + 1089, + 594, + 1065, + 594 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 735, + 599, + 769, + 599, + 769, + 634, + 735, + 634 + ], + "score": 0.71, + "latex": "\\mathbf { v } _ { j } ^ { * }" + }, + { + "category_id": 14, + "poly": [ + 682, + 672, + 1018, + 672, + 1018, + 733, + 682, + 733 + ], + "score": 0.7, + "latex": "\\begin{array} { r } { ( \\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ) = \\underset { \\mathbf { v } _ { i } , \\mathbf { v } _ { j } } { \\arg \\operatorname* { m i n } } I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 862, + 1854, + 915, + 1854, + 915, + 1888, + 862, + 1888 + ], + "score": 0.64, + "latex": "c _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 298, + 894, + 315, + 894, + 315, + 919, + 298, + 919 + ], + "score": 0.61, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1376, + 1103, + 1376, + 1103, + 1413, + 1070, + 1413 + ], + "score": 0.61, + "latex": "\\mathbf { v } _ { j } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1944, + 1404, + 1944, + 1404, + 1980, + 1347, + 1980 + ], + "score": 0.59, + "latex": "c _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 924, + 1854, + 981, + 1854, + 981, + 1889, + 924, + 1889 + ], + "score": 0.58, + "latex": "c _ { j } ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 693, + 1480, + 1019, + 1480, + 1019, + 1538, + 693, + 1538 + ], + "score": 0.57, + "latex": "\\boldsymbol f _ { i } ^ { * } = \\arg \\operatorname* { m i n } _ { \\boldsymbol f _ { i } } I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { i } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 461, + 602, + 479, + 602, + 479, + 630, + 461, + 630 + ], + "score": 0.55, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1945, + 1336, + 1945, + 1336, + 1979, + 1283, + 1979 + ], + "score": 0.55, + "latex": "c _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 761, + 1411, + 778, + 1411, + 778, + 1437, + 761, + 1437 + ], + "score": 0.52, + "latex": "y" + }, + { + "category_id": 14, + "poly": [ + 672, + 1543, + 1026, + 1543, + 1026, + 1584, + 672, + 1584 + ], + "score": 0.47, + "latex": "s . t . \\ I ( f _ { i } ( \\mathbf { v } _ { i } ^ { * } ) ; \\mathbf { v } _ { j } ^ { * } ) = I ( \\mathbf { v } _ { i } ^ { * } ; \\mathbf { v } _ { j } ^ { * } )" + }, + { + "category_id": 14, + "poly": [ + 681, + 668, + 1013, + 668, + 1013, + 813, + 681, + 813 + ], + "score": 0.44, + "latex": "\\begin{array} { c } { { ( \\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ) = \\underset { \\mathbf { v } _ { i } , \\mathbf { v } _ { j } } { \\arg \\operatorname* { m i n } I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } ) } } } \\\\ { { s . t . ~ I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathbf { v } _ { j } ; y ) } } \\\\ { { I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathcal { G } ; y ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 775, + 774, + 992, + 774, + 992, + 814, + 775, + 814 + ], + "score": 0.27, + "latex": "I ( \\mathbf { v } _ { i } ; y ) = I ( \\mathcal { G } ; y )" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1375, + 1103, + 1375, + 1103, + 1414, + 1024, + 1414 + ], + "score": 0.25, + "latex": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 691, + 599, + 771, + 599, + 771, + 635, + 691, + 635 + ], + "score": 0.25, + "latex": "\\mathbf { v } _ { i } ^ { * } , \\mathbf { v } _ { j } ^ { * } ," + }, + { + "category_id": 15, + "poly": [ + 291.0, + 977.0, + 548.0, + 977.0, + 548.0, + 1026.0, + 291.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1761.0, + 696.0, + 1761.0, + 696.0, + 1809.0, + 292.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1176.0, + 1405.0, + 1176.0, + 1405.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1209.0, + 1404.0, + 1209.0, + 1404.0, + 1241.0, + 296.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1237.0, + 1405.0, + 1237.0, + 1405.0, + 1273.0, + 292.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1407.0, + 1266.0, + 1407.0, + 1303.0, + 292.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1298.0, + 1407.0, + 1298.0, + 1407.0, + 1335.0, + 292.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 1078.0, + 1330.0, + 1078.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1406.0, + 1822.0, + 1406.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 639.0, + 1851.0, + 639.0, + 1891.0, + 292.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1851.0, + 861.0, + 1851.0, + 861.0, + 1891.0, + 779.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1851.0, + 923.0, + 1851.0, + 923.0, + 1891.0, + 916.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1891.0, + 982.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1916.0, + 1406.0, + 1916.0, + 1406.0, + 1948.0, + 296.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 1282.0, + 1945.0, + 1282.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1945.0, + 1346.0, + 1945.0, + 1346.0, + 1981.0, + 1337.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 1406.0, + 1976.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1610.0, + 1405.0, + 1610.0, + 1405.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1641.0, + 1405.0, + 1641.0, + 1405.0, + 1674.0, + 296.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1672.0, + 1404.0, + 1672.0, + 1404.0, + 1704.0, + 296.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1700.0, + 1206.0, + 1700.0, + 1206.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 204.0, + 1404.0, + 204.0, + 1404.0, + 238.0, + 294.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 301.0, + 292.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 330.0, + 292.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 324.0, + 1405.0, + 324.0, + 1405.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 393.0, + 292.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 385.0, + 892.0, + 385.0, + 892.0, + 420.0, + 295.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 824.0, + 1407.0, + 824.0, + 1407.0, + 861.0, + 292.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 858.0, + 1406.0, + 858.0, + 1406.0, + 890.0, + 295.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 887.0, + 297.0, + 887.0, + 297.0, + 921.0, + 291.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 887.0, + 1407.0, + 887.0, + 1407.0, + 921.0, + 316.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 1409.0, + 917.0, + 1409.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1070.0, + 1404.0, + 1070.0, + 1404.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1101.0, + 1404.0, + 1101.0, + 1404.0, + 1135.0, + 293.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1080.0, + 1131.0, + 1080.0, + 1167.0, + 294.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 494.0, + 296.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1406.0, + 492.0, + 1406.0, + 528.0, + 294.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1390.0, + 521.0, + 1390.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1372.0, + 1023.0, + 1372.0, + 1023.0, + 1410.0, + 296.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1372.0, + 1376.0, + 1372.0, + 1376.0, + 1410.0, + 1104.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1372.0, + 1407.0, + 1372.0, + 1407.0, + 1410.0, + 1402.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1404.0, + 760.0, + 1404.0, + 760.0, + 1438.0, + 296.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1404.0, + 1174.0, + 1404.0, + 1174.0, + 1438.0, + 779.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1404.0, + 1404.0, + 1404.0, + 1404.0, + 1438.0, + 1208.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1435.0, + 709.0, + 1435.0, + 709.0, + 1469.0, + 296.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 566.0, + 1064.0, + 566.0, + 1064.0, + 600.0, + 297.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 566.0, + 1404.0, + 566.0, + 1404.0, + 600.0, + 1090.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 594.0, + 460.0, + 594.0, + 460.0, + 635.0, + 291.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 594.0, + 690.0, + 594.0, + 690.0, + 635.0, + 480.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 594.0, + 1124.0, + 594.0, + 1124.0, + 635.0, + 772.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 594.0, + 1404.0, + 594.0, + 1404.0, + 635.0, + 1147.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 627.0, + 670.0, + 627.0, + 670.0, + 664.0, + 292.0, + 664.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1271, + 1405, + 1271, + 1405, + 1488, + 297, + 1488 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 711, + 1405, + 711, + 1405, + 867, + 297, + 867 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 985, + 1404, + 985, + 1404, + 1113, + 297, + 1113 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 879, + 1405, + 879, + 1405, + 973, + 297, + 973 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1500, + 1406, + 1500, + 1406, + 1597, + 298, + 1597 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1608, + 1406, + 1608, + 1406, + 1703, + 298, + 1703 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 295, + 433, + 1408, + 433, + 1408, + 649, + 295, + 649 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 354, + 162, + 1349, + 162, + 1349, + 408, + 354, + 408 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 296, + 1715, + 1405, + 1715, + 1405, + 1811, + 296, + 1811 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1944, + 1401, + 1944, + 1401, + 2008, + 298, + 2008 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 632, + 1123, + 1067, + 1123, + 1067, + 1185, + 632, + 1185 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 299, + 1217, + 587, + 1217, + 587, + 1250, + 299, + 1250 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 299, + 1887, + 663, + 1887, + 663, + 1922, + 299, + 1922 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 295, + 1821, + 1293, + 1821, + 1293, + 1855, + 295, + 1855 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1128, + 1400, + 1128, + 1400, + 1157, + 1366, + 1157 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.802 + }, + { + "category_id": 14, + "poly": [ + 628, + 1123, + 1070, + 1123, + 1070, + 1185, + 628, + 1185 + ], + "score": 0.95, + "latex": "\\displaystyle ( c _ { i } ^ { * } , c _ { j } ^ { * } ) = \\arg \\operatorname* { m i n } _ { ( c _ { i } , c _ { j } ) } - I ( c _ { i } ( \\mathbf { z } _ { i } ^ { * } ) ; c _ { j } ( \\mathbf { z } _ { j } ^ { * } ) ) ." + }, + { + "category_id": 13, + "poly": [ + 1318, + 1747, + 1397, + 1747, + 1397, + 1781, + 1318, + 1781 + ], + "score": 0.92, + "latex": "( c _ { i } , c _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1608, + 1342, + 1608, + 1342, + 1644, + 1119, + 1644 + ], + "score": 0.91, + "latex": "\\{ f _ { i } ^ { 1 } ( \\cdot ) , f _ { i } ^ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ," + }, + { + "category_id": 13, + "poly": [ + 527, + 1562, + 867, + 1562, + 867, + 1597, + 527, + 1597 + ], + "score": 0.9, + "latex": "I ( \\mathbf { v } _ { i } ; y ) + I ( \\mathbf { v } _ { j } ; y ) - I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 573, + 1746, + 783, + 1746, + 783, + 1780, + 573, + 1780 + ], + "score": 0.9, + "latex": "\\{ c _ { 1 } ( \\cdot ) , c _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\ \\} ," + }, + { + "category_id": 13, + "poly": [ + 1328, + 1501, + 1399, + 1501, + 1399, + 1534, + 1328, + 1534 + ], + "score": 0.89, + "latex": "\\{ q _ { 1 } ( \\cdot ) _ { : }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 1534, + 1398, + 1534, + 1398, + 1565, + 1345, + 1565 + ], + "score": 0.89, + "latex": "q _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1102, + 589, + 1134, + 589, + 1134, + 621, + 1102, + 621 + ], + "score": 0.89, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 440, + 589, + 470, + 589, + 470, + 621, + 440, + 621 + ], + "score": 0.89, + "latex": "\\mathbf { z } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 589, + 1374, + 589, + 1374, + 621, + 1345, + 621 + ], + "score": 0.89, + "latex": "\\mathbf { z } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1564, + 353, + 1564, + 353, + 1597, + 298, + 1597 + ], + "score": 0.89, + "latex": "q _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1562, + 1158, + 1562, + 1158, + 1591, + 1052, + 1591 + ], + "score": 0.89, + "latex": "A { + } B { + } D" + }, + { + "category_id": 13, + "poly": [ + 835, + 498, + 869, + 498, + 869, + 530, + 835, + 530 + ], + "score": 0.89, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1532, + 424, + 1532, + 424, + 1564, + 298, + 1564 + ], + "score": 0.88, + "latex": "q _ { 2 } ( \\cdot ) , \\cdot \\cdot \\cdot \\}" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1676, + 1324, + 1676, + 1324, + 1706, + 1294, + 1706 + ], + "score": 0.86, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 665, + 470, + 693, + 470, + 693, + 497, + 665, + 497 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 566, + 501, + 594, + 501, + 594, + 527, + 566, + 527 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 717, + 560, + 745, + 560, + 745, + 588, + 717, + 588 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 402, + 530, + 430, + 530, + 430, + 557, + 402, + 557 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1646, + 791, + 1646, + 791, + 1671, + 762, + 1671 + ], + "score": 0.85, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 953, + 1777, + 1022, + 1777, + 1022, + 1811, + 953, + 1811 + ], + "score": 0.85, + "latex": "c _ { i } ( \\mathbf { z } _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 561, + 1646, + 588, + 1646, + 588, + 1671, + 561, + 1671 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 339, + 467, + 372, + 467, + 372, + 503, + 339, + 503 + ], + "score": 0.82, + "latex": "\\mathbf { v } _ { j } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1021, + 753, + 1021, + 753, + 1055, + 609, + 1055 + ], + "score": 0.81, + "latex": "\\mathbf { z } _ { i } ^ { * } = f _ { i } ^ { * } ( \\mathbf { v } _ { i } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 818, + 1676, + 845, + 1676, + 845, + 1702, + 818, + 1702 + ], + "score": 0.8, + "latex": "\\mathbf { z } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1033, + 1777, + 1107, + 1777, + 1107, + 1812, + 1033, + 1812 + ], + "score": 0.8, + "latex": "c _ { j } ( \\mathbf { z } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 779, + 1676, + 807, + 1676, + 807, + 1702, + 779, + 1702 + ], + "score": 0.79, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1179, + 988, + 1209, + 988, + 1209, + 1023, + 1179, + 1023 + ], + "score": 0.78, + "latex": "\\mathbf { z } _ { j } ^ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1537, + 739, + 1537, + 739, + 1563, + 708, + 1563 + ], + "score": 0.78, + "latex": "\\mathbf { v } _ { j }" + }, + { + "category_id": 13, + "poly": [ + 432, + 470, + 451, + 470, + 451, + 498, + 432, + 498 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 296, + 467, + 328, + 467, + 328, + 502, + 296, + 502 + ], + "score": 0.77, + "latex": "\\mathbf { v } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 764, + 1020, + 908, + 1020, + 908, + 1058, + 764, + 1058 + ], + "score": 0.76, + "latex": "\\mathbf { z } _ { j _ { - } } ^ { * } = f _ { j _ { - } } ^ { * } ( \\mathbf { v } _ { j } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1024, + 1214, + 1024, + 1214, + 1049, + 1190, + 1049 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 669, + 1537, + 697, + 1537, + 697, + 1561, + 669, + 1561 + ], + "score": 0.75, + "latex": "\\mathbf { v } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 626, + 1612, + 651, + 1612, + 651, + 1638, + 626, + 1638 + ], + "score": 0.74, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 793, + 1722, + 811, + 1722, + 811, + 1748, + 793, + 1748 + ], + "score": 0.74, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 638, + 1718, + 663, + 1718, + 663, + 1744, + 638, + 1744 + ], + "score": 0.73, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1058, + 1316, + 1058, + 1316, + 1086, + 1290, + 1086 + ], + "score": 0.73, + "latex": "c _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 989, + 1169, + 989, + 1169, + 1021, + 1139, + 1021 + ], + "score": 0.72, + "latex": "\\mathbf { z } _ { i } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1503, + 609, + 1503, + 609, + 1529, + 585, + 1529 + ], + "score": 0.72, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1058, + 1279, + 1058, + 1279, + 1083, + 1255, + 1083 + ], + "score": 0.68, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1783, + 1177, + 1783, + 1177, + 1810, + 1160, + 1810 + ], + "score": 0.65, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 726, + 1506, + 745, + 1506, + 745, + 1534, + 726, + 1534 + ], + "score": 0.59, + "latex": "y _ { ; }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 712, + 1403, + 712, + 1403, + 748, + 1347, + 748 + ], + "score": 0.57, + "latex": "c _ { j } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1723, + 1242, + 1723, + 1242, + 1750, + 1174, + 1750 + ], + "score": 0.52, + "latex": "z _ { i } , \\ z _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 712, + 1337, + 712, + 1337, + 747, + 1283, + 747 + ], + "score": 0.5, + "latex": "c _ { i } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 898, + 1675, + 915, + 1675, + 915, + 1703, + 898, + 1703 + ], + "score": 0.5, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1027, + 1353, + 1027, + 1353, + 1054, + 1335, + 1054 + ], + "score": 0.49, + "latex": "y _ { \\mathrm { { i } } }" + }, + { + "category_id": 13, + "poly": [ + 515, + 528, + 541, + 528, + 541, + 555, + 515, + 555 + ], + "score": 0.38, + "latex": "\\mathbf { D }" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1724, + 1242, + 1724, + 1242, + 1750, + 1215, + 1750 + ], + "score": 0.35, + "latex": "z _ { j }" + }, + { + "category_id": 13, + "poly": [ + 776, + 1616, + 795, + 1616, + 795, + 1642, + 776, + 1642 + ], + "score": 0.33, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1004, + 558, + 1030, + 558, + 1030, + 585, + 1004, + 585 + ], + "score": 0.32, + "latex": "\\mathbf { D }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 173, + 1213, + 173, + 1213, + 196, + 1194, + 196 + ], + "score": 0.29, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 564, + 558, + 647, + 558, + 647, + 588, + 564, + 588 + ], + "score": 0.27, + "latex": "( R i g h t )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 434.0, + 1409.0, + 434.0, + 1409.0, + 472.0, + 294.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 466.0, + 338.0, + 466.0, + 338.0, + 504.0, + 329.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 466.0, + 431.0, + 466.0, + 431.0, + 504.0, + 373.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 466.0, + 664.0, + 466.0, + 664.0, + 504.0, + 452.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 466.0, + 1409.0, + 466.0, + 1409.0, + 504.0, + 694.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 499.0, + 565.0, + 499.0, + 565.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 499.0, + 834.0, + 499.0, + 834.0, + 530.0, + 595.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 499.0, + 1407.0, + 499.0, + 1407.0, + 530.0, + 870.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 526.0, + 401.0, + 526.0, + 401.0, + 561.0, + 294.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 526.0, + 514.0, + 526.0, + 514.0, + 561.0, + 431.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 526.0, + 1406.0, + 526.0, + 1406.0, + 561.0, + 542.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 557.0, + 563.0, + 557.0, + 563.0, + 592.0, + 294.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 557.0, + 716.0, + 557.0, + 716.0, + 592.0, + 648.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 557.0, + 1003.0, + 557.0, + 1003.0, + 592.0, + 746.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 557.0, + 1406.0, + 557.0, + 1406.0, + 592.0, + 1031.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 587.0, + 439.0, + 587.0, + 439.0, + 625.0, + 294.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 587.0, + 1101.0, + 587.0, + 1101.0, + 625.0, + 471.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 587.0, + 1344.0, + 587.0, + 1344.0, + 625.0, + 1135.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 587.0, + 1407.0, + 587.0, + 1407.0, + 625.0, + 1375.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 620.0, + 451.0, + 620.0, + 451.0, + 648.0, + 296.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 165.0, + 508.0, + 165.0, + 508.0, + 202.0, + 476.0, + 202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 164.0, + 871.0, + 164.0, + 871.0, + 201.0, + 838.0, + 201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 164.0, + 1193.0, + 164.0, + 1193.0, + 202.0, + 1188.0, + 202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 164.0, + 1220.0, + 164.0, + 1220.0, + 202.0, + 1214.0, + 202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 278.0, + 390.0, + 278.0, + 390.0, + 303.0, + 372.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 257.0, + 760.0, + 257.0, + 760.0, + 310.0, + 712.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 260.0, + 1108.0, + 260.0, + 1108.0, + 308.0, + 1065.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 295.0, + 1211.0, + 295.0, + 1211.0, + 314.0, + 1193.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 364.0, + 630.0, + 364.0, + 630.0, + 374.0, + 621.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 363.0, + 992.0, + 363.0, + 992.0, + 373.0, + 982.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 374.0, + 1101.0, + 374.0, + 1101.0, + 390.0, + 1089.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.75, + 268.5, + 398.75, + 268.5, + 398.75, + 292.0, + 352.75, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.75, + 321.0, + 1226.75, + 321.0, + 1226.75, + 362.0, + 1178.75, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 374.0, + 396.0, + 374.0, + 396.0, + 407.0, + 362.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.75, + 374.0, + 757.75, + 374.0, + 757.75, + 405.0, + 722.75, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 378.0, + 1098.0, + 378.0, + 1098.0, + 406.0, + 1075.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 591.0, + 1213.0, + 591.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 665.0, + 1883.0, + 665.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 1406.0, + 1269.0, + 1406.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1304.0, + 1406.0, + 1304.0, + 1406.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, + 1370.0, + 295.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1399.0, + 295.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1392.0, + 1406.0, + 1392.0, + 1406.0, + 1432.0, + 292.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1461.0, + 296.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1456.0, + 966.0, + 1456.0, + 966.0, + 1491.0, + 295.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 713.0, + 1282.0, + 713.0, + 1282.0, + 750.0, + 294.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 713.0, + 1346.0, + 713.0, + 1346.0, + 750.0, + 1338.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 1405.0, + 741.0, + 1405.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 776.0, + 1406.0, + 776.0, + 1406.0, + 809.0, + 296.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 802.0, + 1407.0, + 802.0, + 1407.0, + 840.0, + 292.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 832.0, + 905.0, + 832.0, + 905.0, + 869.0, + 295.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 1138.0, + 984.0, + 1138.0, + 1023.0, + 295.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 984.0, + 1178.0, + 984.0, + 1178.0, + 1023.0, + 1170.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 984.0, + 1404.0, + 984.0, + 1404.0, + 1023.0, + 1210.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1019.0, + 608.0, + 1019.0, + 608.0, + 1060.0, + 292.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1019.0, + 763.0, + 1019.0, + 763.0, + 1060.0, + 754.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1019.0, + 1189.0, + 1019.0, + 1189.0, + 1060.0, + 909.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1019.0, + 1334.0, + 1019.0, + 1334.0, + 1060.0, + 1215.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1019.0, + 1406.0, + 1019.0, + 1406.0, + 1060.0, + 1354.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1054.0, + 1254.0, + 1054.0, + 1254.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1054.0, + 1289.0, + 1054.0, + 1289.0, + 1087.0, + 1280.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1054.0, + 1404.0, + 1054.0, + 1404.0, + 1087.0, + 1317.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 977.0, + 1082.0, + 977.0, + 1117.0, + 292.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 1403.0, + 880.0, + 1403.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 910.0, + 1407.0, + 910.0, + 1407.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 941.0, + 1407.0, + 941.0, + 1407.0, + 975.0, + 295.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 584.0, + 1497.0, + 584.0, + 1537.0, + 293.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1497.0, + 725.0, + 1497.0, + 725.0, + 1537.0, + 610.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1497.0, + 1327.0, + 1497.0, + 1327.0, + 1537.0, + 746.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1497.0, + 1408.0, + 1497.0, + 1408.0, + 1537.0, + 1400.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 297.0, + 1529.0, + 297.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1529.0, + 668.0, + 1529.0, + 668.0, + 1571.0, + 425.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1529.0, + 707.0, + 1529.0, + 707.0, + 1571.0, + 698.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1529.0, + 1344.0, + 1529.0, + 1344.0, + 1571.0, + 740.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1529.0, + 1412.0, + 1529.0, + 1412.0, + 1571.0, + 1399.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 297.0, + 1560.0, + 297.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1560.0, + 526.0, + 1560.0, + 526.0, + 1598.0, + 354.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1560.0, + 1051.0, + 1560.0, + 1051.0, + 1598.0, + 868.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1560.0, + 1301.0, + 1560.0, + 1301.0, + 1598.0, + 1159.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1607.0, + 625.0, + 1607.0, + 625.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1607.0, + 775.0, + 1607.0, + 775.0, + 1648.0, + 652.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1607.0, + 1118.0, + 1607.0, + 1118.0, + 1648.0, + 796.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1607.0, + 1408.0, + 1607.0, + 1408.0, + 1648.0, + 1343.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1642.0, + 560.0, + 1642.0, + 560.0, + 1674.0, + 293.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1642.0, + 761.0, + 1642.0, + 761.0, + 1674.0, + 589.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1642.0, + 1406.0, + 1642.0, + 1406.0, + 1674.0, + 792.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1666.0, + 778.0, + 1666.0, + 778.0, + 1709.0, + 292.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1666.0, + 817.0, + 1666.0, + 817.0, + 1709.0, + 808.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1666.0, + 897.0, + 1666.0, + 897.0, + 1709.0, + 846.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1666.0, + 1293.0, + 1666.0, + 1293.0, + 1709.0, + 916.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1666.0, + 1337.0, + 1666.0, + 1337.0, + 1709.0, + 1325.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 637.0, + 1713.0, + 637.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1713.0, + 792.0, + 1713.0, + 792.0, + 1752.0, + 664.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1713.0, + 1173.0, + 1713.0, + 1173.0, + 1752.0, + 812.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1713.0, + 1408.0, + 1713.0, + 1408.0, + 1752.0, + 1243.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 572.0, + 1746.0, + 572.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1746.0, + 1317.0, + 1746.0, + 1317.0, + 1784.0, + 784.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1746.0, + 1408.0, + 1746.0, + 1408.0, + 1784.0, + 1398.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1776.0, + 952.0, + 1776.0, + 952.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1776.0, + 1032.0, + 1776.0, + 1032.0, + 1813.0, + 1023.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1776.0, + 1159.0, + 1776.0, + 1159.0, + 1813.0, + 1108.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1776.0, + 1187.0, + 1776.0, + 1187.0, + 1813.0, + 1178.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1981.0, + 296.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2013.0, + 292.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1819.0, + 1297.0, + 1819.0, + 1297.0, + 1859.0, + 294.0, + 1859.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1018, + 1404, + 1018, + 1404, + 1383, + 298, + 1383 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1397, + 1404, + 1397, + 1404, + 1734, + 297, + 1734 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 307, + 197, + 1393, + 197, + 1393, + 384, + 307, + 384 + ], + "score": 0.981, + "html": "
Graph Task DatasetsNode Task Datasets
MUTAGPTC-MRIMDB-BIMDB-MNCI1COLLABCoraCiteseerPubmed
#Graphs1883441000150041105000111
#Nodes17.914.319.813.029.974.53327270819717
#Edges19.814.7193.165.91.133.04732542944338
#Classes222223673
" + }, + { + "category_id": 1, + "poly": [ + 297, + 478, + 1404, + 478, + 1404, + 631, + 297, + 631 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1822, + 1405, + 1822, + 1405, + 2009, + 298, + 2009 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 300, + 834, + 1404, + 834, + 1404, + 929, + 300, + 929 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 674, + 644, + 1025, + 644, + 1025, + 733, + 674, + 733 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 297, + 766, + 533, + 766, + 533, + 804, + 297, + 804 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 1767, + 618, + 1767, + 618, + 1800, + 299, + 1800 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 298, + 963, + 432, + 963, + 432, + 995, + 298, + 995 + ], + "score": 0.91 + }, + { + "category_id": 6, + "poly": [ + 703, + 398, + 996, + 398, + 996, + 430, + 703, + 430 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1366, + 673, + 1400, + 673, + 1400, + 702, + 1366, + 702 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.698 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.179 + }, + { + "category_id": 14, + "poly": [ + 673, + 639, + 1023, + 639, + 1023, + 734, + 673, + 734 + ], + "score": 0.96, + "latex": "\\mathcal { L } = - \\frac { 1 } { N } \\sum _ { n = 1 } ^ { N } \\frac { \\mathbf { z } _ { i , n } } { \\| \\mathbf { z } _ { i , n } \\| } \\cdot \\frac { \\mathbf { z } _ { j , n } } { \\| \\mathbf { z } _ { j , n } \\| } ," + }, + { + "category_id": 13, + "poly": [ + 1080, + 1609, + 1151, + 1609, + 1151, + 1642, + 1080, + 1642 + ], + "score": 0.76, + "latex": "\\lbrace 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1608, + 1224, + 1608, + 1224, + 1641, + 1163, + 1641 + ], + "score": 0.64, + "latex": "\\mathrm { \\dot { 1 } 0 ^ { - 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1609, + 1318, + 1609, + 1318, + 1641, + 1275, + 1641 + ], + "score": 0.43, + "latex": "1 0 ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1608, + 1394, + 1608, + 1394, + 1642, + 1079, + 1642 + ], + "score": 0.4, + "latex": "\\{ 1 0 ^ { - 3 } , \\ : \\mathrm { { \\dot { 1 } 0 ^ { - 2 } } } , . . . , \\ : 1 0 ^ { 2 } , 1 0 ^ { 3 } \\ : \\ : \\}" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1608, + 1396, + 1608, + 1396, + 1642, + 1331, + 1642 + ], + "score": 0.34, + "latex": "1 0 ^ { 3 } \\}" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 760.0, + 538.0, + 760.0, + 538.0, + 814.0, + 288.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1763.0, + 622.0, + 1763.0, + 622.0, + 1807.0, + 292.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 957.0, + 437.0, + 957.0, + 437.0, + 1004.0, + 293.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 395.0, + 998.0, + 395.0, + 998.0, + 432.0, + 700.0, + 432.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": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1019.0, + 1405.0, + 1019.0, + 1405.0, + 1053.0, + 296.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1050.0, + 1406.0, + 1050.0, + 1406.0, + 1084.0, + 293.0, + 1084.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": [ + 292.0, + 1110.0, + 1406.0, + 1110.0, + 1406.0, + 1147.0, + 292.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1141.0, + 1404.0, + 1141.0, + 1404.0, + 1174.0, + 293.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1170.0, + 1407.0, + 1170.0, + 1407.0, + 1207.0, + 292.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1406.0, + 1200.0, + 1406.0, + 1236.0, + 293.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1231.0, + 1407.0, + 1231.0, + 1407.0, + 1267.0, + 292.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1295.0, + 293.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 1402.0, + 1294.0, + 1402.0, + 1324.0, + 294.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1323.0, + 1402.0, + 1323.0, + 1402.0, + 1353.0, + 296.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 1218.0, + 1352.0, + 1218.0, + 1386.0, + 294.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1405.0, + 1394.0, + 1405.0, + 1435.0, + 292.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1462.0, + 293.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1455.0, + 1406.0, + 1455.0, + 1406.0, + 1496.0, + 291.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 1404.0, + 1520.0, + 1404.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1548.0, + 1406.0, + 1548.0, + 1406.0, + 1587.0, + 292.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1579.0, + 1406.0, + 1579.0, + 1406.0, + 1614.0, + 295.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1603.0, + 1078.0, + 1603.0, + 1078.0, + 1649.0, + 290.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1603.0, + 1411.0, + 1603.0, + 1411.0, + 1649.0, + 1397.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1406.0, + 1639.0, + 1406.0, + 1676.0, + 294.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1706.0, + 295.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1697.0, + 1242.0, + 1697.0, + 1242.0, + 1741.0, + 294.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 478.0, + 1409.0, + 478.0, + 1409.0, + 514.0, + 292.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 511.0, + 1406.0, + 511.0, + 1406.0, + 544.0, + 296.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 539.0, + 1404.0, + 539.0, + 1404.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 569.0, + 1404.0, + 569.0, + 1404.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 519.0, + 598.0, + 519.0, + 634.0, + 294.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 1409.0, + 1821.0, + 1409.0, + 1859.0, + 293.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1853.0, + 1407.0, + 1853.0, + 1407.0, + 1889.0, + 293.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1882.0, + 1408.0, + 1882.0, + 1408.0, + 1922.0, + 291.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1950.0, + 293.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1410.0, + 1944.0, + 1410.0, + 1983.0, + 293.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 1405.0, + 1976.0, + 1405.0, + 2012.0, + 295.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 835.0, + 1406.0, + 835.0, + 1406.0, + 869.0, + 295.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 866.0, + 1404.0, + 866.0, + 1404.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 897.0, + 1242.0, + 897.0, + 1242.0, + 931.0, + 296.0, + 931.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1793, + 1404, + 1793, + 1404, + 2007, + 298, + 2007 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 313, + 194, + 1383, + 194, + 1383, + 810, + 313, + 810 + ], + "score": 0.982, + "html": "
MethodMUTAGPTC-MRIMDB-BIMDB-MNCI1COLLAB
Kernel Approaches
SP85.2 ± 2.458.2 ± 2.455.6± 0.238.0±0.373.5 ± 0.1
GK81.7 ± 2.157.3 ± 1.465.9 ± 1.043.9 ± 0.466.0 ± 0.172.8± 0.3
WL80.7 ± 3.058.0 ± 0.572.3 ± 3.447.0 ± 0.580.0± 0.578.9 ± 1.9
DGK87.4 ± 2.760.1 ± 2.667.0 ± 0.644.6 ± 0.580.3 ± 0.573.1 ± 0.3
MLG87.9 ± 1.663.3 ± 1.566.6 ± 0.341.2 ± 0.080.8 ± 1.3
Supervised Approaches
GraphSAGE85.1 ± 7.6 63.9 ± 7.772.3 ± 5.350.9 ± 2.277.7 ± 1.568.3 ± 4.2
GCN85.6 ± 5.864.2 ± 4.374.0± 3.451.9 ± 3.880.2 ± 2.079.0 ± 1.8
GIN-089.4 ± 5.664.6 ± 7.075.1 ± 5.152.3 ± 2.882.7 ± 1.780.2 ± 1.9
GIN-e89.0 ± 6.063.7 ±8.274.3 ± 5.152.1 ± 3.682.7 ± 1.680.1 ± 1.9
GAT89.4 ± 6.166.7 ± 5.170.5 ± 2.347.8 ± 3.166.6 ± 2.267.4 ± 2.9
Unsupervised Approaches
RandomWalk83.7 ± 1.557.9 ± 1.350.7±0.334.7 ± 0.264.3 ± 0.3
node2vec72.6 ±10.258.6±8.050.2 ± 0.936.0 ± 0.754.9 ± 1.656.1 ± 0.2
sub2vec61.1 ± 15.860.0 ± 6.455.3 ± 1.536.7 ± 0.852.8 ±1.5-
graph2vec83.2 ±9.660.2 ± 6.971.1 ± 0.550.4 ± 0.975.4 ±1.2
InfoGraph89.0 ± 1.161.7 ± 1.473.0± 0.949.7 ± 0.576.2 ±1.470.7 ± 1.1
GraphCL86.8 ± 1.361.3 ± 2.171.1 ± 0.449.2 ± 0.677.9 ± 0.471.4 ± 1.2
mvgrl89.7 ± 1.162.5 ± 1.774.2 ± 0.751.2 ± 0.577.0 ± 0.876.0 ± 1.2
51.4 ± 0.880.2 ± 0.6
InfoGCL91.2 ± 1.363.5 ± 1.575.1 ± 0.980.0 ± 1.3
" + }, + { + "category_id": 5, + "poly": [ + 508, + 933, + 1190, + 933, + 1190, + 1506, + 508, + 1506 + ], + "score": 0.977, + "html": "
MethodCoraCiteseerPubmed
Supervised Approaches
MLP55.146.571.4
ICA75.169.173.9
LP68.045.363.0
ManiReg59.560.170.7
SemiEmb59.059.671.7
Planetoid75.764.777.2
Chebyshev81.269.874.4
GCN81.570.379.0
JKNet82.7 ± 0.473.0 ± 0.577.9 ± 0.4
GAT83.0 ± 0.772.5± 0.779.0 ± 0.3
Unsupervised Approaches
Linear47.9 ± 0.449.3 ± 0.269.1 ± 0.3
DeepWalk70.7 ± 0.651.4 ± 0.574.3 ± 0.9
GAE71.5 ± 0.465.8 ±0.472.1 ± 0.5
VERSE72.5 ± 0.355.5± 0.4
DGI83.8 ± 0.572.0 ± 0.677.9 ± 0.3
GraphCL82.5 ± 0.173.1 ± 0.2
mvgrl86.8 ± 0.573.3 ± 0.580.1 ± 0.7
InfoGCL83.5 ± 0.373.5 ± 0.479.1 ± 0.2
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1656, + 1404, + 1656, + 1404, + 1780, + 298, + 1780 + ], + "score": 0.976 + }, + { + "category_id": 6, + "poly": [ + 617, + 825, + 1072, + 825, + 1072, + 858, + 617, + 858 + ], + "score": 0.877 + }, + { + "category_id": 6, + "poly": [ + 624, + 1522, + 1067, + 1522, + 1067, + 1554, + 624, + 1554 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.804 + }, + { + "category_id": 13, + "poly": [ + 1022, + 827, + 1065, + 827, + 1065, + 857, + 1022, + 857 + ], + "score": 0.71, + "latex": "( \\% )" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1524, + 1060, + 1524, + 1060, + 1554, + 1017, + 1554 + ], + "score": 0.67, + "latex": "( \\% )" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 820.0, + 1021.0, + 820.0, + 1021.0, + 862.0, + 613.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 820.0, + 1076.0, + 820.0, + 1076.0, + 862.0, + 1066.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1516.0, + 1016.0, + 1516.0, + 1016.0, + 1559.0, + 618.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1516.0, + 1071.0, + 1516.0, + 1071.0, + 1559.0, + 1061.0, + 1559.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": [ + 292.0, + 1791.0, + 1408.0, + 1791.0, + 1408.0, + 1830.0, + 292.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1824.0, + 1409.0, + 1824.0, + 1409.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1406.0, + 1915.0, + 1406.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1981.0, + 292.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 899.0, + 1977.0, + 899.0, + 2012.0, + 296.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1656.0, + 1409.0, + 1656.0, + 1409.0, + 1692.0, + 292.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1722.0, + 296.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1718.0, + 1408.0, + 1718.0, + 1408.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 1207.0, + 1746.0, + 1207.0, + 1786.0, + 292.0, + 1786.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1655, + 1405, + 1655, + 1405, + 1991, + 298, + 1991 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1362, + 1405, + 1362, + 1405, + 1545, + 298, + 1545 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 420, + 1403, + 420, + 1403, + 574, + 297, + 574 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1195, + 1404, + 1195, + 1404, + 1347, + 298, + 1347 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 314, + 165, + 1386, + 165, + 1386, + 277, + 314, + 277 + ], + "score": 0.974, + "html": "
MethodMUTAGIMDB-BCOLLABCoraCiteseerPubmed
InfoGCL (w/o neg)91.0 ± 1.475.1± 0.580.2 ±1.078.6 ± 0.470.4 ± 0.677.4±0.7
InfoGCL (w/ neg)91.2 ± 1.375.1 ± 0.980.0± 1.383.5±0.373.5 ± 0.479.1±0.2
" + }, + { + "category_id": 1, + "poly": [ + 299, + 843, + 1403, + 843, + 1403, + 967, + 299, + 967 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 980, + 1404, + 980, + 1404, + 1104, + 298, + 1104 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 737, + 1404, + 737, + 1404, + 832, + 299, + 832 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 297, + 587, + 1398, + 587, + 1398, + 650, + 297, + 650 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 296, + 661, + 1399, + 661, + 1399, + 726, + 296, + 726 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 298, + 1139, + 679, + 1139, + 679, + 1172, + 298, + 1172 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 1586, + 745, + 1586, + 745, + 1625, + 300, + 1625 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 298, + 362, + 753, + 362, + 753, + 397, + 298, + 397 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 313, + 292, + 1363, + 292, + 1363, + 324, + 313, + 324 + ], + "score": 0.373 + }, + { + "category_id": 7, + "poly": [ + 313, + 292, + 1363, + 292, + 1363, + 324, + 313, + 324 + ], + "score": 0.367 + }, + { + "category_id": 13, + "poly": [ + 1109, + 618, + 1213, + 618, + 1213, + 652, + 1109, + 652 + ], + "score": 0.93, + "latex": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 410, + 935, + 502, + 935, + 502, + 969, + 410, + 969 + ], + "score": 0.92, + "latex": "I ( \\mathbf { v } _ { i } ; y )" + }, + { + "category_id": 13, + "poly": [ + 954, + 694, + 1058, + 694, + 1058, + 728, + 954, + 728 + ], + "score": 0.92, + "latex": "I ( \\mathbf { v } _ { i } ; \\mathbf { v } _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1047, + 1402, + 1047, + 1402, + 1074, + 1383, + 1074 + ], + "score": 0.73, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 748, + 800, + 839, + 800, + 839, + 833, + 748, + 833 + ], + "score": 0.61, + "latex": "I ( \\mathbf { v } _ { i } ; y )" + }, + { + "category_id": 13, + "poly": [ + 850, + 799, + 943, + 799, + 943, + 834, + 850, + 834 + ], + "score": 0.55, + "latex": "I ( \\mathbf { v } _ { j } ; \\bar { y } )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1135.0, + 683.0, + 1135.0, + 683.0, + 1179.0, + 293.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1583.0, + 747.0, + 1583.0, + 747.0, + 1631.0, + 292.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 359.0, + 755.0, + 359.0, + 755.0, + 402.0, + 294.0, + 402.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": [ + 323.0, + 285.0, + 1365.0, + 285.0, + 1365.0, + 330.0, + 323.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1657.0, + 1407.0, + 1657.0, + 1407.0, + 1692.0, + 296.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1716.0, + 1408.0, + 1716.0, + 1408.0, + 1755.0, + 293.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 1406.0, + 1746.0, + 1406.0, + 1783.0, + 295.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1777.0, + 1406.0, + 1777.0, + 1406.0, + 1816.0, + 293.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1809.0, + 1406.0, + 1809.0, + 1406.0, + 1844.0, + 295.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1838.0, + 1406.0, + 1838.0, + 1406.0, + 1875.0, + 292.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1870.0, + 1405.0, + 1870.0, + 1405.0, + 1905.0, + 295.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1899.0, + 1405.0, + 1899.0, + 1405.0, + 1934.0, + 293.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1931.0, + 1405.0, + 1931.0, + 1405.0, + 1965.0, + 293.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1959.0, + 1122.0, + 1959.0, + 1122.0, + 1998.0, + 295.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 1409.0, + 1359.0, + 1409.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1390.0, + 1407.0, + 1390.0, + 1407.0, + 1427.0, + 292.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1457.0, + 295.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1407.0, + 1451.0, + 1407.0, + 1489.0, + 293.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1483.0, + 1406.0, + 1483.0, + 1406.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1513.0, + 1307.0, + 1513.0, + 1307.0, + 1550.0, + 292.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 419.0, + 1406.0, + 419.0, + 1406.0, + 455.0, + 293.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 449.0, + 1405.0, + 449.0, + 1405.0, + 486.0, + 293.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 480.0, + 1405.0, + 480.0, + 1405.0, + 517.0, + 295.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 512.0, + 1406.0, + 512.0, + 1406.0, + 546.0, + 293.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 1310.0, + 539.0, + 1310.0, + 578.0, + 294.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1404.0, + 1192.0, + 1404.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1259.0, + 295.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1289.0, + 296.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1281.0, + 1410.0, + 1281.0, + 1410.0, + 1325.0, + 292.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 607.0, + 1317.0, + 607.0, + 1351.0, + 293.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 844.0, + 1402.0, + 844.0, + 1402.0, + 877.0, + 295.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 1403.0, + 905.0, + 1403.0, + 940.0, + 294.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 937.0, + 409.0, + 937.0, + 409.0, + 969.0, + 295.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 937.0, + 687.0, + 937.0, + 687.0, + 969.0, + 503.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1405.0, + 980.0, + 1405.0, + 1016.0, + 294.0, + 1016.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": [ + 293.0, + 1042.0, + 1382.0, + 1042.0, + 1382.0, + 1078.0, + 293.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1072.0, + 474.0, + 1072.0, + 474.0, + 1106.0, + 293.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 737.0, + 1404.0, + 737.0, + 1404.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 769.0, + 1403.0, + 769.0, + 1403.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 799.0, + 747.0, + 799.0, + 747.0, + 837.0, + 294.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 799.0, + 849.0, + 799.0, + 849.0, + 837.0, + 840.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 799.0, + 1128.0, + 799.0, + 1128.0, + 837.0, + 944.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 622.0, + 296.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 1108.0, + 617.0, + 1108.0, + 653.0, + 295.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 617.0, + 1398.0, + 617.0, + 1398.0, + 653.0, + 1214.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 1404.0, + 657.0, + 1404.0, + 701.0, + 294.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 692.0, + 953.0, + 692.0, + 953.0, + 728.0, + 296.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 692.0, + 1241.0, + 692.0, + 1241.0, + 728.0, + 1059.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 285.0, + 1365.0, + 285.0, + 1365.0, + 330.0, + 323.0, + 330.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 369, + 1411, + 369, + 1411, + 2021, + 298, + 2021 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 298, + 198, + 777, + 198, + 777, + 237, + 298, + 237 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 298, + 345, + 455, + 345, + 455, + 381, + 298, + 381 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 299, + 267, + 1265, + 267, + 1265, + 301, + 299, + 301 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.748 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.301 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 195.0, + 782.0, + 195.0, + 782.0, + 246.0, + 294.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 343.0, + 460.0, + 343.0, + 460.0, + 386.0, + 295.0, + 386.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": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 363.0, + 351.0, + 363.0, + 351.0, + 381.0, + 304.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 363.0, + 454.0, + 363.0, + 454.0, + 381.0, + 394.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 401.0, + 1405.0, + 401.0, + 1405.0, + 436.0, + 309.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 430.0, + 1383.0, + 430.0, + 1383.0, + 465.0, + 354.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 485.0, + 1409.0, + 485.0, + 1409.0, + 525.0, + 308.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 514.0, + 429.0, + 514.0, + 429.0, + 553.0, + 353.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 569.0, + 1407.0, + 569.0, + 1407.0, + 607.0, + 306.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 604.0, + 1055.0, + 604.0, + 1055.0, + 638.0, + 354.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 658.0, + 1407.0, + 658.0, + 1407.0, + 693.0, + 309.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 689.0, + 616.0, + 689.0, + 616.0, + 724.0, + 354.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 744.0, + 1407.0, + 744.0, + 1407.0, + 779.0, + 309.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 773.0, + 1053.0, + 773.0, + 1053.0, + 812.0, + 351.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 865.0, + 309.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 854.0, + 1407.0, + 854.0, + 1407.0, + 899.0, + 353.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 890.0, + 780.0, + 890.0, + 780.0, + 925.0, + 351.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 981.0, + 308.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 974.0, + 627.0, + 974.0, + 627.0, + 1014.0, + 354.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1029.0, + 1407.0, + 1029.0, + 1407.0, + 1069.0, + 308.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1058.0, + 1405.0, + 1058.0, + 1405.0, + 1100.0, + 351.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1091.0, + 1407.0, + 1091.0, + 1407.0, + 1131.0, + 353.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1124.0, + 710.0, + 1124.0, + 710.0, + 1158.0, + 354.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1177.0, + 1407.0, + 1177.0, + 1407.0, + 1217.0, + 308.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1206.0, + 430.0, + 1206.0, + 430.0, + 1244.0, + 354.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1409.0, + 1263.0, + 1409.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1295.0, + 1409.0, + 1295.0, + 1409.0, + 1330.0, + 354.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1345.0, + 1409.0, + 1345.0, + 1409.0, + 1388.0, + 289.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1374.0, + 1409.0, + 1374.0, + 1409.0, + 1423.0, + 349.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1409.0, + 610.0, + 1409.0, + 610.0, + 1446.0, + 349.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1465.0, + 1405.0, + 1465.0, + 1405.0, + 1505.0, + 295.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1496.0, + 659.0, + 1496.0, + 659.0, + 1532.0, + 351.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1547.0, + 1409.0, + 1547.0, + 1409.0, + 1595.0, + 291.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1582.0, + 872.0, + 1582.0, + 872.0, + 1618.0, + 349.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1635.0, + 1409.0, + 1635.0, + 1409.0, + 1675.0, + 295.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1666.0, + 618.0, + 1666.0, + 618.0, + 1706.0, + 353.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1721.0, + 1405.0, + 1721.0, + 1405.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1755.0, + 649.0, + 1755.0, + 649.0, + 1790.0, + 354.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1808.0, + 1297.0, + 1808.0, + 1297.0, + 1848.0, + 293.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1861.0, + 1412.0, + 1861.0, + 1412.0, + 1905.0, + 289.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1918.0, + 1250.0, + 1918.0, + 1250.0, + 1956.0, + 293.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1123.0, + 1974.0, + 1123.0, + 2013.0, + 293.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 266.0, + 1269.0, + 266.0, + 1269.0, + 306.0, + 295.0, + 306.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 835, + 2061, + 864, + 2061, + 864, + 2087, + 835, + 2087 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 294, + 115, + 1411, + 115, + 1411, + 2028, + 294, + 2028 + ], + "score": 0.744 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 831.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 201.0, + 1408.0, + 201.0, + 1408.0, + 243.0, + 291.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 273.0, + 352.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 260.0, + 432.0, + 260.0, + 432.0, + 302.0, + 352.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 315.0, + 1406.0, + 315.0, + 1406.0, + 354.0, + 293.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 348.0, + 1017.0, + 348.0, + 1017.0, + 384.0, + 350.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 398.0, + 1408.0, + 398.0, + 1408.0, + 436.0, + 293.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 424.0, + 1412.0, + 424.0, + 1412.0, + 472.0, + 350.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 461.0, + 500.0, + 461.0, + 500.0, + 495.0, + 354.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 507.0, + 1412.0, + 507.0, + 1412.0, + 554.0, + 290.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 541.0, + 1254.0, + 541.0, + 1254.0, + 581.0, + 352.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 596.0, + 1408.0, + 596.0, + 1408.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 625.0, + 1383.0, + 625.0, + 1383.0, + 665.0, + 354.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 675.0, + 1410.0, + 675.0, + 1410.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 707.0, + 1309.0, + 707.0, + 1309.0, + 746.0, + 354.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 795.0, + 295.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 788.0, + 956.0, + 788.0, + 956.0, + 826.0, + 350.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 1404.0, + 839.0, + 1404.0, + 879.0, + 295.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 870.0, + 825.0, + 870.0, + 825.0, + 908.0, + 350.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 923.0, + 1406.0, + 923.0, + 1406.0, + 962.0, + 295.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 954.0, + 1408.0, + 954.0, + 1408.0, + 992.0, + 352.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 986.0, + 504.0, + 986.0, + 504.0, + 1019.0, + 354.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 1406.0, + 1038.0, + 1406.0, + 1071.0, + 295.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1063.0, + 1406.0, + 1063.0, + 1406.0, + 1109.0, + 352.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1099.0, + 643.0, + 1099.0, + 643.0, + 1132.0, + 354.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1408.0, + 1149.0, + 1408.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1181.0, + 1222.0, + 1181.0, + 1222.0, + 1220.0, + 352.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1231.0, + 1410.0, + 1231.0, + 1410.0, + 1269.0, + 290.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1264.0, + 707.0, + 1264.0, + 707.0, + 1298.0, + 354.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1311.0, + 1410.0, + 1311.0, + 1410.0, + 1355.0, + 288.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1344.0, + 912.0, + 1344.0, + 912.0, + 1384.0, + 354.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1406.0, + 1397.0, + 1406.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1430.0, + 867.0, + 1430.0, + 867.0, + 1464.0, + 356.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1482.0, + 1406.0, + 1482.0, + 1406.0, + 1516.0, + 295.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1508.0, + 1408.0, + 1508.0, + 1408.0, + 1547.0, + 352.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1536.0, + 429.0, + 1536.0, + 429.0, + 1580.0, + 352.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1596.0, + 1406.0, + 1596.0, + 1406.0, + 1629.0, + 295.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1627.0, + 751.0, + 1627.0, + 751.0, + 1661.0, + 354.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1677.0, + 1408.0, + 1677.0, + 1408.0, + 1711.0, + 295.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1705.0, + 1136.0, + 1705.0, + 1136.0, + 1745.0, + 354.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1755.0, + 1410.0, + 1755.0, + 1410.0, + 1801.0, + 288.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1789.0, + 432.0, + 1789.0, + 432.0, + 1824.0, + 354.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1839.0, + 1406.0, + 1839.0, + 1406.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1873.0, + 656.0, + 1873.0, + 656.0, + 1906.0, + 354.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1252.0, + 1923.0, + 1252.0, + 1963.0, + 295.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1971.0, + 1412.0, + 1971.0, + 1412.0, + 2015.0, + 288.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 291, + 202, + 1410, + 202, + 1410, + 597, + 291, + 597 + ], + "score": 0.791 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.76 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.23 + }, + { + "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": [ + 294.0, + 200.0, + 1404.0, + 200.0, + 1404.0, + 244.0, + 294.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 235.0, + 971.0, + 235.0, + 971.0, + 271.0, + 355.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 285.0, + 1409.0, + 285.0, + 1409.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 317.0, + 1230.0, + 317.0, + 1230.0, + 353.0, + 354.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 367.0, + 1405.0, + 367.0, + 1405.0, + 407.0, + 294.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 400.0, + 914.0, + 400.0, + 914.0, + 436.0, + 354.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 452.0, + 1405.0, + 452.0, + 1405.0, + 488.0, + 297.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 485.0, + 1269.0, + 485.0, + 1269.0, + 517.0, + 354.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 532.0, + 1404.0, + 532.0, + 1404.0, + 574.0, + 293.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 566.0, + 1077.0, + 566.0, + 1077.0, + 602.0, + 355.0, + 602.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Aw96fN64soV/images/1ce01bd02b794370b95fedfa1d27fd63a5a52cf63101a1ddbfc374941b08fc3f.jpg b/parse/train/Aw96fN64soV/images/1ce01bd02b794370b95fedfa1d27fd63a5a52cf63101a1ddbfc374941b08fc3f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfbdf581023ca69127408e2bf8cea9098d8c47c3 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/1ce01bd02b794370b95fedfa1d27fd63a5a52cf63101a1ddbfc374941b08fc3f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2a866116e088694797b937fdd73d00599961fa012444ae96ccbe0e4b5a4503 +size 7089 diff --git a/parse/train/Aw96fN64soV/images/220bd3e215a4369c45ee65c39b784536f46e4ac213179c01c8b9a6c03543a539.jpg b/parse/train/Aw96fN64soV/images/220bd3e215a4369c45ee65c39b784536f46e4ac213179c01c8b9a6c03543a539.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9c59de3031a65148f790461e631d2001a6e7d8f --- /dev/null +++ b/parse/train/Aw96fN64soV/images/220bd3e215a4369c45ee65c39b784536f46e4ac213179c01c8b9a6c03543a539.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf183622ff3ffe0af76a02604fb833dbbf8b332ae3b66a12c4965cbfc77afb6 +size 69523 diff --git a/parse/train/Aw96fN64soV/images/2dc9bfcfd416ccc2c8e65c9a4b700caf125a911da552a301b7255af070136526.jpg b/parse/train/Aw96fN64soV/images/2dc9bfcfd416ccc2c8e65c9a4b700caf125a911da552a301b7255af070136526.jpg new file mode 100644 index 0000000000000000000000000000000000000000..058188e59297290fea8cc3a6e5318cc916394835 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/2dc9bfcfd416ccc2c8e65c9a4b700caf125a911da552a301b7255af070136526.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caadfefc232834c636c1b69ceeabe86e8e42819c1cdecee9a3ce2caf40b5df70 +size 32163 diff --git a/parse/train/Aw96fN64soV/images/2f0250c67b62c70bf386286198c60813a90c48e9b34012ea923f88333fd6e4ef.jpg b/parse/train/Aw96fN64soV/images/2f0250c67b62c70bf386286198c60813a90c48e9b34012ea923f88333fd6e4ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b8a0eceb7c9806305c234dee190f9840d5d1467 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/2f0250c67b62c70bf386286198c60813a90c48e9b34012ea923f88333fd6e4ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7db95e946ca197dbaa05c865db273d823f47dad8b43d03e9fb569317cb071e8 +size 11783 diff --git a/parse/train/Aw96fN64soV/images/3f47929d32ba73b1d134e5841565c85b34563b65ffd032dfe74379fd1830ac08.jpg b/parse/train/Aw96fN64soV/images/3f47929d32ba73b1d134e5841565c85b34563b65ffd032dfe74379fd1830ac08.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6856a694cc6fec56128082880afcc11c0526bfed --- /dev/null +++ b/parse/train/Aw96fN64soV/images/3f47929d32ba73b1d134e5841565c85b34563b65ffd032dfe74379fd1830ac08.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8291c069487b58baf47c44ecec57726c0b9256e6eca672fedbf19bfcce66c54a +size 3691 diff --git a/parse/train/Aw96fN64soV/images/425ae697925d6d6445e649fbb7ec514d0abb5ca661691b14f32b24d981be2f0c.jpg b/parse/train/Aw96fN64soV/images/425ae697925d6d6445e649fbb7ec514d0abb5ca661691b14f32b24d981be2f0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfd032b4df67694ab92a9d15476810c20ec5a616 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/425ae697925d6d6445e649fbb7ec514d0abb5ca661691b14f32b24d981be2f0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce0a5c829abf75d68559dcab33b931a4bf3662ec3ed55a86189bbb6e29db50c4 +size 11571 diff --git a/parse/train/Aw96fN64soV/images/588525922963d00f9d901594fac2484d2d161b5afcbf99e49ee5dd8097f260c8.jpg b/parse/train/Aw96fN64soV/images/588525922963d00f9d901594fac2484d2d161b5afcbf99e49ee5dd8097f260c8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d62d1120738809fc1b3bc3cff2c391c09b538022 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/588525922963d00f9d901594fac2484d2d161b5afcbf99e49ee5dd8097f260c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eba6bf977a38d70cb2459da65d7cda6ccc822ef4ff39bdb1e38eede36e9f21a +size 13860 diff --git a/parse/train/Aw96fN64soV/images/6ab7510e2e4e43c70e414019e189f09a7485295bdba01aca11345f4b7fde516e.jpg b/parse/train/Aw96fN64soV/images/6ab7510e2e4e43c70e414019e189f09a7485295bdba01aca11345f4b7fde516e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..326a4a6cac3cb54d74089a7380299b19edadd90f --- /dev/null +++ b/parse/train/Aw96fN64soV/images/6ab7510e2e4e43c70e414019e189f09a7485295bdba01aca11345f4b7fde516e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252db7166349f9a1d04b4921439f4fe4dcfe9479369ca9119307a543a3356957 +size 25724 diff --git a/parse/train/Aw96fN64soV/images/7a415393e7cc61843de35198d0130e77273eb1cda71ab16f649c8d55dd5f178e.jpg b/parse/train/Aw96fN64soV/images/7a415393e7cc61843de35198d0130e77273eb1cda71ab16f649c8d55dd5f178e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdd1688ecb92dbd398b9637c8cb61acf4ae1bd3a --- /dev/null +++ b/parse/train/Aw96fN64soV/images/7a415393e7cc61843de35198d0130e77273eb1cda71ab16f649c8d55dd5f178e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3c5c14405f9aab8bb34d0622887c3630b1636fea4c7aef8bba60d02d950a99 +size 22109 diff --git a/parse/train/Aw96fN64soV/images/7ea07596546947f4e230d1d518e51138b57a0f4403db7be53b5ad549ebf49ca9.jpg b/parse/train/Aw96fN64soV/images/7ea07596546947f4e230d1d518e51138b57a0f4403db7be53b5ad549ebf49ca9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..042168b4f13cc187bf70a6cd84e3cbcf0109a55d --- /dev/null +++ b/parse/train/Aw96fN64soV/images/7ea07596546947f4e230d1d518e51138b57a0f4403db7be53b5ad549ebf49ca9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4192a632c63b194eb2ce6b07f9ab1f04c8fb174549d8dc5a8c5d6ba3064a6a75 +size 27918 diff --git a/parse/train/Aw96fN64soV/images/8e73c09f29547f84328621c584d5700bf5b642b371093c7d55519169b8e892ff.jpg b/parse/train/Aw96fN64soV/images/8e73c09f29547f84328621c584d5700bf5b642b371093c7d55519169b8e892ff.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a31f01fc924d4de977f8fb497f532990d67671e9 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/8e73c09f29547f84328621c584d5700bf5b642b371093c7d55519169b8e892ff.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c1649ef411409642963e051d0997b261e52beff86e6d0adeab342c2950642b +size 34518 diff --git a/parse/train/Aw96fN64soV/images/b194bff851e39fdd44dc91fd6d19ffb23841385fd610c45e029ea9f027b73d9c.jpg b/parse/train/Aw96fN64soV/images/b194bff851e39fdd44dc91fd6d19ffb23841385fd610c45e029ea9f027b73d9c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02475bd9132def22e4721eb372915299f5b09a34 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/b194bff851e39fdd44dc91fd6d19ffb23841385fd610c45e029ea9f027b73d9c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1d84b06c0d8d66728a239f9b3e62e4615811541aaae2cb05530e795421fe6c +size 6395 diff --git a/parse/train/Aw96fN64soV/images/baffdda6183a3fd5ca0967fca3939a5da01a44c8fba0bfe4700748862ad662c3.jpg b/parse/train/Aw96fN64soV/images/baffdda6183a3fd5ca0967fca3939a5da01a44c8fba0bfe4700748862ad662c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c64a19b2fe430512257c27734b77a5a3e907f5ff --- /dev/null +++ b/parse/train/Aw96fN64soV/images/baffdda6183a3fd5ca0967fca3939a5da01a44c8fba0bfe4700748862ad662c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2730b7c45379fe1259290ff2c7adcc9d0123f1a538a720725e96d6749a644da5 +size 6106 diff --git a/parse/train/Aw96fN64soV/images/c9059919ead5e483f7e80996f1fd99d72fc42b4019b948be7b795973cd8e2876.jpg b/parse/train/Aw96fN64soV/images/c9059919ead5e483f7e80996f1fd99d72fc42b4019b948be7b795973cd8e2876.jpg new file mode 100644 index 0000000000000000000000000000000000000000..036b73875c4bd60280888d06c932eafe50ca0b57 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/c9059919ead5e483f7e80996f1fd99d72fc42b4019b948be7b795973cd8e2876.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41d6ea6ce27ee2ad135e37b635344aa0474224b6e1dee4f2b4d1e3eeb2378eb +size 18137 diff --git a/parse/train/Aw96fN64soV/images/c9b15cf4c0966b89bd0470d4e0592c780e88896a94b5d3e49b8fdd9cd169706c.jpg b/parse/train/Aw96fN64soV/images/c9b15cf4c0966b89bd0470d4e0592c780e88896a94b5d3e49b8fdd9cd169706c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee932545fbe29782bf10d1007f5d8a5cb90bc7fd --- /dev/null +++ b/parse/train/Aw96fN64soV/images/c9b15cf4c0966b89bd0470d4e0592c780e88896a94b5d3e49b8fdd9cd169706c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce8245399dd18660fa3a58181736a69784635e7c9b3533a770c6a276290aaf7 +size 24908 diff --git a/parse/train/Aw96fN64soV/images/d620de40baf2fd1ff1bc1bf7bc79934fe7f34073169fe89b3ea4e0662e177a30.jpg b/parse/train/Aw96fN64soV/images/d620de40baf2fd1ff1bc1bf7bc79934fe7f34073169fe89b3ea4e0662e177a30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7017cc5b53998f3aa0581b3e23a97d3403ef9476 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/d620de40baf2fd1ff1bc1bf7bc79934fe7f34073169fe89b3ea4e0662e177a30.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e4a69743584e65ebf844acd4d8c75b2b9b14d0886390f5caf32052cd837827b +size 6748 diff --git a/parse/train/Aw96fN64soV/images/df31aea3e54082daf0a7a221cea97a36043eb99b754577ea6cef9306de10aa7a.jpg b/parse/train/Aw96fN64soV/images/df31aea3e54082daf0a7a221cea97a36043eb99b754577ea6cef9306de10aa7a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d22e42212ea43c96065bc5b2bed16a8bfba4ccf9 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/df31aea3e54082daf0a7a221cea97a36043eb99b754577ea6cef9306de10aa7a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5dd669dbbff4dc9dc77dcdfdac1d41255f16c285551992a8e9b6283805698c +size 36381 diff --git a/parse/train/Aw96fN64soV/images/df7ad959716e840a1e4123c79a94ce91d8c2861021cfd6e9a71e513868a19b29.jpg b/parse/train/Aw96fN64soV/images/df7ad959716e840a1e4123c79a94ce91d8c2861021cfd6e9a71e513868a19b29.jpg new file mode 100644 index 0000000000000000000000000000000000000000..68f811d9620d85fb47a87cb6fce418720e647c7e --- /dev/null +++ b/parse/train/Aw96fN64soV/images/df7ad959716e840a1e4123c79a94ce91d8c2861021cfd6e9a71e513868a19b29.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321572ec1f080b96e32cbcfd88124d60fd22d92bd029ccd2c3a435c5b54e2b0c +size 13412 diff --git a/parse/train/Aw96fN64soV/images/e02f68cdc9e8347bf452e60dfc698538c88c2d65dbb646c67ff73495c84f2b4f.jpg b/parse/train/Aw96fN64soV/images/e02f68cdc9e8347bf452e60dfc698538c88c2d65dbb646c67ff73495c84f2b4f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7eaf61c8d8dc53febc69a9d513d94ec1862626de --- /dev/null +++ b/parse/train/Aw96fN64soV/images/e02f68cdc9e8347bf452e60dfc698538c88c2d65dbb646c67ff73495c84f2b4f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ee77870d706885c0a0dab518c74c297f0ff948ca4f763b0f78cdf7939ff55b +size 16762 diff --git a/parse/train/Aw96fN64soV/images/e2dc1319532906b37a461875e235d88d5075a05b1e9b83dae278794486e3c298.jpg b/parse/train/Aw96fN64soV/images/e2dc1319532906b37a461875e235d88d5075a05b1e9b83dae278794486e3c298.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ed655b74ac5a372eb814910a67cd9b6c1af1ec8 --- /dev/null +++ b/parse/train/Aw96fN64soV/images/e2dc1319532906b37a461875e235d88d5075a05b1e9b83dae278794486e3c298.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9aabc2a68252094ff8b18719a1eac08cb06532c0f6c7f462e10be564ecff5ee +size 18576 diff --git a/parse/train/BJE-4xW0W/images/0715c1d5eaa551c45d525c923ccd08860f52daaaf95b56bb3af571b515584d67.jpg b/parse/train/BJE-4xW0W/images/0715c1d5eaa551c45d525c923ccd08860f52daaaf95b56bb3af571b515584d67.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cdcf6358c7f1664078c194495a94c64ef80b3f2 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/0715c1d5eaa551c45d525c923ccd08860f52daaaf95b56bb3af571b515584d67.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23617ef9dddbd724b729af7e5be06c0d1769cfa7c6078bbdba4e0d6eb73c4e70 +size 10335 diff --git a/parse/train/BJE-4xW0W/images/0755f53068fb3b3a1398acbcbcbb4400f929083ccd9ed236513ca169f43b8393.jpg b/parse/train/BJE-4xW0W/images/0755f53068fb3b3a1398acbcbcbb4400f929083ccd9ed236513ca169f43b8393.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96b8bed93d4ec04151a986aae4d078fcb2e5ee2f --- /dev/null +++ b/parse/train/BJE-4xW0W/images/0755f53068fb3b3a1398acbcbcbb4400f929083ccd9ed236513ca169f43b8393.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb76729c2d13728bd95fa4e3eee34ca9ee0f333e41daf9588083b61bcc8d099a +size 20214 diff --git a/parse/train/BJE-4xW0W/images/092a7436a7b543feadd6a0c398797a3a1ab7da02ccc0ed3c43e4ce4450178706.jpg b/parse/train/BJE-4xW0W/images/092a7436a7b543feadd6a0c398797a3a1ab7da02ccc0ed3c43e4ce4450178706.jpg new file mode 100644 index 0000000000000000000000000000000000000000..134a5bc51c4c56490f43ee24b5ec983564d6b413 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/092a7436a7b543feadd6a0c398797a3a1ab7da02ccc0ed3c43e4ce4450178706.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb829a3a903261badb6e0f1aa11dc72076455c66713b59938c1ce4fc720d950 +size 37647 diff --git a/parse/train/BJE-4xW0W/images/10c0c89b6bfa1864b6979e8f7b3ae4e1efb158d3febe009529ec0eafeac9205a.jpg b/parse/train/BJE-4xW0W/images/10c0c89b6bfa1864b6979e8f7b3ae4e1efb158d3febe009529ec0eafeac9205a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acb5a4db57615ba9c9415840e12139aa50934160 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/10c0c89b6bfa1864b6979e8f7b3ae4e1efb158d3febe009529ec0eafeac9205a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2751cd10382c9ea5525c53d74f2104f4a36904b8261e61d08e707f5f8ffc520a +size 137694 diff --git a/parse/train/BJE-4xW0W/images/160fd9c6f50c36979d7702aa55c1446910b9ba9578902e0e1286dd6395cd1bc2.jpg b/parse/train/BJE-4xW0W/images/160fd9c6f50c36979d7702aa55c1446910b9ba9578902e0e1286dd6395cd1bc2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13b57608d9053283a37ef6ab8c3c68018aa3b857 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/160fd9c6f50c36979d7702aa55c1446910b9ba9578902e0e1286dd6395cd1bc2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0b3381aedd920783deb5e1b00f9802060ed84a7fbe8165dc84866e7d1f59a1 +size 27400 diff --git a/parse/train/BJE-4xW0W/images/1d36736568d4be8235766742eb2d4703d7b1e080c8bd144f3a79818203f75489.jpg b/parse/train/BJE-4xW0W/images/1d36736568d4be8235766742eb2d4703d7b1e080c8bd144f3a79818203f75489.jpg new file mode 100644 index 0000000000000000000000000000000000000000..602914d479333988237cac0f4f03d2eaf32dadce --- /dev/null +++ b/parse/train/BJE-4xW0W/images/1d36736568d4be8235766742eb2d4703d7b1e080c8bd144f3a79818203f75489.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793878d8ec8da5bc98e2a3c97b15696c409fc300e952451a9c84a818297a0fe0 +size 49804 diff --git a/parse/train/BJE-4xW0W/images/2b6661035e1c55732bc54a444fe25c8a7bfcd2758a7409c877efda7b28044642.jpg b/parse/train/BJE-4xW0W/images/2b6661035e1c55732bc54a444fe25c8a7bfcd2758a7409c877efda7b28044642.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c30e00b7e9a278a4963a0ff759cf79b46e3c732f --- /dev/null +++ b/parse/train/BJE-4xW0W/images/2b6661035e1c55732bc54a444fe25c8a7bfcd2758a7409c877efda7b28044642.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a3a606e955c69e51a8630358361b53c5bc412cc426fad123ef9a533a70199f +size 10101 diff --git a/parse/train/BJE-4xW0W/images/2dbb72b3b3af404944d2445120b776bffec3adaa3d7fe4524f6c958d46d7f09b.jpg b/parse/train/BJE-4xW0W/images/2dbb72b3b3af404944d2445120b776bffec3adaa3d7fe4524f6c958d46d7f09b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..677af5e2a8f0e4fc32756426f4ef91f58c43fb38 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/2dbb72b3b3af404944d2445120b776bffec3adaa3d7fe4524f6c958d46d7f09b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba05215f9a6145b49bb740651f89342660246f627578ae7e9bdf33fa9c7437e +size 6706 diff --git a/parse/train/BJE-4xW0W/images/74d66bf7836979a7803532c0a2272ec4c190129e3d402f5ea4c8c7380431d2d5.jpg b/parse/train/BJE-4xW0W/images/74d66bf7836979a7803532c0a2272ec4c190129e3d402f5ea4c8c7380431d2d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c6232d0b52f6c622a02555fc195b9b617418ac97 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/74d66bf7836979a7803532c0a2272ec4c190129e3d402f5ea4c8c7380431d2d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4dab0372dbd6043fa7aedd681c3aec33431b3113a868288167a52dc46e414b0 +size 139988 diff --git a/parse/train/BJE-4xW0W/images/81541ad55829e0d4a2d9b78bc8da15abdc15f2c6fcf0f7b62cdb12e2ca09e26d.jpg b/parse/train/BJE-4xW0W/images/81541ad55829e0d4a2d9b78bc8da15abdc15f2c6fcf0f7b62cdb12e2ca09e26d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ed1230629f85d10694dfa2dc067fc6ee89202b9 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/81541ad55829e0d4a2d9b78bc8da15abdc15f2c6fcf0f7b62cdb12e2ca09e26d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e68069ddd6708fc590429e4d83517e4166f955100e77a39d81f436dc3318c7 +size 7882 diff --git a/parse/train/BJE-4xW0W/images/85636693d15f50954552b733459c179d8914cedc6c58ba6d52c2d5ec73f9d8bc.jpg b/parse/train/BJE-4xW0W/images/85636693d15f50954552b733459c179d8914cedc6c58ba6d52c2d5ec73f9d8bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f10c35d30e9a195db62ce3cd060d5654bb26a99 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/85636693d15f50954552b733459c179d8914cedc6c58ba6d52c2d5ec73f9d8bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c655cb472977833623387f63bb502d5f7ee3ac03c646a7798116fbd1651626a +size 64628 diff --git a/parse/train/BJE-4xW0W/images/8e8e9c4437991bf6ef8661f55d2a88fbbf77ad69664f689294a8fe0112d857f5.jpg b/parse/train/BJE-4xW0W/images/8e8e9c4437991bf6ef8661f55d2a88fbbf77ad69664f689294a8fe0112d857f5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..12fe9eaa30ff38fdccc00c16656a328409ac96a3 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/8e8e9c4437991bf6ef8661f55d2a88fbbf77ad69664f689294a8fe0112d857f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c254dd3cc4a6005f7a42100acd28e7cb766b6652687950da9a170cacc808c4e2 +size 30110 diff --git a/parse/train/BJE-4xW0W/images/913c9a51ba6ac3aa7e83a7445bf4df3e243cdd29109e4742c146ef7d8a702180.jpg b/parse/train/BJE-4xW0W/images/913c9a51ba6ac3aa7e83a7445bf4df3e243cdd29109e4742c146ef7d8a702180.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0149f41443beac5ac1c52e23d0acf04350b054e9 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/913c9a51ba6ac3aa7e83a7445bf4df3e243cdd29109e4742c146ef7d8a702180.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1f52b464997c34ad01e10ea0c3b190bd77d269db96bf935c1d8306cb34a673 +size 53000 diff --git a/parse/train/BJE-4xW0W/images/9fd494b7e8b77039354521a29ea6be2ab8b6f98ab10415351925cf30b2d8b1e3.jpg b/parse/train/BJE-4xW0W/images/9fd494b7e8b77039354521a29ea6be2ab8b6f98ab10415351925cf30b2d8b1e3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..408dd78bf5bd8134e29fb2a9ed120ad6fba034ce --- /dev/null +++ b/parse/train/BJE-4xW0W/images/9fd494b7e8b77039354521a29ea6be2ab8b6f98ab10415351925cf30b2d8b1e3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d102076689c94a2da3e93e9b015bfa8a0e2d63db78468a9e6374b4dd183bbb +size 33560 diff --git a/parse/train/BJE-4xW0W/images/c785b93f11067c04b697d128812900031270290a436ebf3a7d556577e1225733.jpg b/parse/train/BJE-4xW0W/images/c785b93f11067c04b697d128812900031270290a436ebf3a7d556577e1225733.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3388bc86f282a6e1d0e7c323c79d0fa4b5164dfe --- /dev/null +++ b/parse/train/BJE-4xW0W/images/c785b93f11067c04b697d128812900031270290a436ebf3a7d556577e1225733.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac4c8b6bef3e123ee52a38b3784fa3d5bc038f8bf72fec8c29f660251e0e337 +size 4942 diff --git a/parse/train/BJE-4xW0W/images/c9a759ccc4144fe01854c0fd261f6c7c62a50013f830767447b24e6a14596fa8.jpg b/parse/train/BJE-4xW0W/images/c9a759ccc4144fe01854c0fd261f6c7c62a50013f830767447b24e6a14596fa8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d1a0d555dce49d8c0795a3ba33b9b3789dca6b8 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/c9a759ccc4144fe01854c0fd261f6c7c62a50013f830767447b24e6a14596fa8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b7a36d1b875ddc6656c30fd6a22cd77be0dd69982796caaf173453430a5596 +size 16537 diff --git a/parse/train/BJE-4xW0W/images/e2d1086b88da1a9692ca71977be592833188b4be6e30a731ccdb394e1c8627ab.jpg b/parse/train/BJE-4xW0W/images/e2d1086b88da1a9692ca71977be592833188b4be6e30a731ccdb394e1c8627ab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1760aac7d11a1b2d50a2e21ec5bf0bc81a76aa7 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/e2d1086b88da1a9692ca71977be592833188b4be6e30a731ccdb394e1c8627ab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9c1465d0c672a9a8b34e13e3bdc1797c440f86135386f206f5ed5230a292a4 +size 264735 diff --git a/parse/train/BJE-4xW0W/images/f382f700f934d6973f38d1600345dbf75e8e436cdccf23d86b1ba37b71be5bcb.jpg b/parse/train/BJE-4xW0W/images/f382f700f934d6973f38d1600345dbf75e8e436cdccf23d86b1ba37b71be5bcb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca8f81e4511e4435698bd1127c2d218eb9044ed6 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/f382f700f934d6973f38d1600345dbf75e8e436cdccf23d86b1ba37b71be5bcb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b337a7492b5860bda759b0dde38b1a21927181b8e94ba1e153246deacc81afee +size 33420 diff --git a/parse/train/BJE-4xW0W/images/fe285d1da425c237abec270cf1a794f09ca09cacdb7cfa7ee1136d770ec06ea8.jpg b/parse/train/BJE-4xW0W/images/fe285d1da425c237abec270cf1a794f09ca09cacdb7cfa7ee1136d770ec06ea8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5f72aa31dd63a3409dd31f631566edd606a7ca28 --- /dev/null +++ b/parse/train/BJE-4xW0W/images/fe285d1da425c237abec270cf1a794f09ca09cacdb7cfa7ee1136d770ec06ea8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8454880f6d7140e789277e10f63047e956b6a179fcfc9e5a5715ca3a93906ead +size 32591 diff --git a/parse/train/BJbD_Pqlg/images/129e93025def5a9cbbe9b8278b8c41324aea4c3845d014896910bb2486ca54c3.jpg b/parse/train/BJbD_Pqlg/images/129e93025def5a9cbbe9b8278b8c41324aea4c3845d014896910bb2486ca54c3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05ef815856e37cd91daf4bb09b33ec1908f74f59 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/129e93025def5a9cbbe9b8278b8c41324aea4c3845d014896910bb2486ca54c3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959e59050e5c35b7cf3211aad6eecd7a79c674a64f0dd491d0a6c91cb783d693 +size 49337 diff --git a/parse/train/BJbD_Pqlg/images/27d167da9bfbd680de4450c36836d45b46cd94cb5fc4e9f608fdee72b4544a91.jpg b/parse/train/BJbD_Pqlg/images/27d167da9bfbd680de4450c36836d45b46cd94cb5fc4e9f608fdee72b4544a91.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83caa5c26961052f0b56a97f952f043e7533ff4a --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/27d167da9bfbd680de4450c36836d45b46cd94cb5fc4e9f608fdee72b4544a91.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acab06fae13d82611bb55d693c3e97e357e055034654172d01ca0db5ced8abc +size 96060 diff --git a/parse/train/BJbD_Pqlg/images/2c7ab5f672dbedeb5a93ad7409df68dfd0269aaaeb798e787db66c5317bf21db.jpg b/parse/train/BJbD_Pqlg/images/2c7ab5f672dbedeb5a93ad7409df68dfd0269aaaeb798e787db66c5317bf21db.jpg new file mode 100644 index 0000000000000000000000000000000000000000..479ee14fe40db77ca9fe715230d548cce1c481c0 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/2c7ab5f672dbedeb5a93ad7409df68dfd0269aaaeb798e787db66c5317bf21db.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75da956e45d157e0654e3984708ccf157e4a117316bbbc2bcf623de1d13d815 +size 32132 diff --git a/parse/train/BJbD_Pqlg/images/3a4cd4d746343780ed7fd9d056ac0f854d4db1895ecffe90c3de68ac7286044d.jpg b/parse/train/BJbD_Pqlg/images/3a4cd4d746343780ed7fd9d056ac0f854d4db1895ecffe90c3de68ac7286044d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..665824ef87419beaa21764017da3c915ba009df0 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/3a4cd4d746343780ed7fd9d056ac0f854d4db1895ecffe90c3de68ac7286044d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f823cc4cf824340bb738b281cdfeec9f6c6805463137bad8b2b656f3f4f65b7 +size 12492 diff --git a/parse/train/BJbD_Pqlg/images/3b00649747048479281c6d49a31d32f1e301675100b165b5e0554a56148e123c.jpg b/parse/train/BJbD_Pqlg/images/3b00649747048479281c6d49a31d32f1e301675100b165b5e0554a56148e123c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ec3d3fc29b1a67784b033d612f3f2e0abc85831 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/3b00649747048479281c6d49a31d32f1e301675100b165b5e0554a56148e123c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9286c0a2c1cea239b48d03f9f3ee6685ec30d4aa08b9a3f176af5aa88b0e9e5f +size 12807 diff --git a/parse/train/BJbD_Pqlg/images/3d251d57138f12ed451d1c9b8935620a0035238ef35dba7a2afcd646a24de396.jpg b/parse/train/BJbD_Pqlg/images/3d251d57138f12ed451d1c9b8935620a0035238ef35dba7a2afcd646a24de396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..398c549b11f544395441c5d4a08e0bf8f66bd1c9 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/3d251d57138f12ed451d1c9b8935620a0035238ef35dba7a2afcd646a24de396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:274dd2681032c0eab9e95f0374863a3a6ca62f8bb0d2336fdc3f45c33b2404d1 +size 4474 diff --git a/parse/train/BJbD_Pqlg/images/5ebde87e3cc14d07e5e038829043986e2f1e92f89ee8c84f1c899d55e3377031.jpg b/parse/train/BJbD_Pqlg/images/5ebde87e3cc14d07e5e038829043986e2f1e92f89ee8c84f1c899d55e3377031.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b714458aefaf744279ee0e7e04866b09b7b2d6e4 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/5ebde87e3cc14d07e5e038829043986e2f1e92f89ee8c84f1c899d55e3377031.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabe9e18786b1eefa34364a80403a512026f9358c109785fcb07fd75fed0032c +size 32642 diff --git a/parse/train/BJbD_Pqlg/images/6479245d1c7064bc0c96164be8f4cb7c4e24c26fe29e0a6de01f4565cc15533c.jpg b/parse/train/BJbD_Pqlg/images/6479245d1c7064bc0c96164be8f4cb7c4e24c26fe29e0a6de01f4565cc15533c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc5797642bcfa8da80928c8d684fadb578558dc7 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/6479245d1c7064bc0c96164be8f4cb7c4e24c26fe29e0a6de01f4565cc15533c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f681caa813366f87a924e3fbbd0fc5557e322b26595dd6c5318e441e4e2e87 +size 23091 diff --git a/parse/train/BJbD_Pqlg/images/6f25fd6a861f747a1e0077f8db84fa394784c42bcca979c0fae7ffd06541dec3.jpg b/parse/train/BJbD_Pqlg/images/6f25fd6a861f747a1e0077f8db84fa394784c42bcca979c0fae7ffd06541dec3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a4115cea354e6b3107e88ffd993694c783eb2ca --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/6f25fd6a861f747a1e0077f8db84fa394784c42bcca979c0fae7ffd06541dec3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227c3127f8b142167991dded4218d96f8af9b9041c41d7f499e965bfefcefb00 +size 40539 diff --git a/parse/train/BJbD_Pqlg/images/6f9b1ef405c1200ecea4e9d17fea6192cb6189de656d2eabe5418e4163295a79.jpg b/parse/train/BJbD_Pqlg/images/6f9b1ef405c1200ecea4e9d17fea6192cb6189de656d2eabe5418e4163295a79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66c9bc63f2bf2480d0749cf5b52f71d8c61d34f7 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/6f9b1ef405c1200ecea4e9d17fea6192cb6189de656d2eabe5418e4163295a79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a072e8b407307fe17b88afc7ae333d510699d4832776b72d77e4fb6eb2a7ff71 +size 31735 diff --git a/parse/train/BJbD_Pqlg/images/6fd105d55153a1a933f45a567507588fed95d08ba89bbe3a5aee32895d4cc78f.jpg b/parse/train/BJbD_Pqlg/images/6fd105d55153a1a933f45a567507588fed95d08ba89bbe3a5aee32895d4cc78f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f69cfc56b01e97cadf38367faecdeabf12f7131 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/6fd105d55153a1a933f45a567507588fed95d08ba89bbe3a5aee32895d4cc78f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513b14ed27467a0d0b2dd189b26a652a161e77c37303e37d8a818c0e1031121e +size 46125 diff --git a/parse/train/BJbD_Pqlg/images/7138a34a90ab813f56ea5bb8f05be4794e2f461e3666d4db9eca006d09a47ca1.jpg b/parse/train/BJbD_Pqlg/images/7138a34a90ab813f56ea5bb8f05be4794e2f461e3666d4db9eca006d09a47ca1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b9f8b9a6e055dabfe32ffe83f96ee1dcd98c7b4 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/7138a34a90ab813f56ea5bb8f05be4794e2f461e3666d4db9eca006d09a47ca1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed52ef4ad095a63e98d8de09ae4fde0d16e3c67611432b3b837b717c1c9ed9a +size 48884 diff --git a/parse/train/BJbD_Pqlg/images/74f90c0c817b0bea67bc6afa2e46b878b82a65de2628d7e46d194d25a2c10385.jpg b/parse/train/BJbD_Pqlg/images/74f90c0c817b0bea67bc6afa2e46b878b82a65de2628d7e46d194d25a2c10385.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e20b1a89b4d8d3a036b8fead8d2692583e8d8451 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/74f90c0c817b0bea67bc6afa2e46b878b82a65de2628d7e46d194d25a2c10385.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96efcdde8e8a86a7131750241200a1150bf7a739a2bef2093acb1ef66b3e8e6d +size 81331 diff --git a/parse/train/BJbD_Pqlg/images/790ed25adca1327d42ec60be5b4b6dbf2d30a4be4b78b863a68199a6c956a87c.jpg b/parse/train/BJbD_Pqlg/images/790ed25adca1327d42ec60be5b4b6dbf2d30a4be4b78b863a68199a6c956a87c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbd9ff7fbca923b90ff01a6591686b47d4c78411 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/790ed25adca1327d42ec60be5b4b6dbf2d30a4be4b78b863a68199a6c956a87c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a43613a8a3de22a261b849340c99c95c4ac67fb2a21009aa41c8791a334dd16 +size 103527 diff --git a/parse/train/BJbD_Pqlg/images/7f5bbbcb223c1452fc1734ff68228fa0b27732812631743799d06e0300cc5f5e.jpg b/parse/train/BJbD_Pqlg/images/7f5bbbcb223c1452fc1734ff68228fa0b27732812631743799d06e0300cc5f5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac697f91870e00bd22d518266af1e31ce48804f5 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/7f5bbbcb223c1452fc1734ff68228fa0b27732812631743799d06e0300cc5f5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6cc673cdde7c71b4619db3dcaf6fbbc9cc6a74bb5ef7149ad355429481087a +size 45930 diff --git a/parse/train/BJbD_Pqlg/images/861dd0c87dd67be34fa74c6f7d5a517cb2e6e8d0d20c9adf7334aceb7112e790.jpg b/parse/train/BJbD_Pqlg/images/861dd0c87dd67be34fa74c6f7d5a517cb2e6e8d0d20c9adf7334aceb7112e790.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5811131d6389151775eb9846e0a83fc41ace6617 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/861dd0c87dd67be34fa74c6f7d5a517cb2e6e8d0d20c9adf7334aceb7112e790.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3add43d5205a7ebdce1145d95d6c12fecd446be9d0370c00eb90fe8ff5f8ed15 +size 175350 diff --git a/parse/train/BJbD_Pqlg/images/895dc524952cb1910c247a031be03445427fd8959bb40023011e072fa6e6a1d7.jpg b/parse/train/BJbD_Pqlg/images/895dc524952cb1910c247a031be03445427fd8959bb40023011e072fa6e6a1d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac0422c564dc582b26e954b88abd7e94ed23ce3f --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/895dc524952cb1910c247a031be03445427fd8959bb40023011e072fa6e6a1d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f50504b44fc99053ca1f1692b041c23a3379423dc316db2a25279f632034c563 +size 4311 diff --git a/parse/train/BJbD_Pqlg/images/8b57e7f7fd5822e264b389c7eed47b9194ccbdae2e14e5d0ad2c550462747c76.jpg b/parse/train/BJbD_Pqlg/images/8b57e7f7fd5822e264b389c7eed47b9194ccbdae2e14e5d0ad2c550462747c76.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edcab3b471a954dd276d6dedb4de1e37f8c217ae --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/8b57e7f7fd5822e264b389c7eed47b9194ccbdae2e14e5d0ad2c550462747c76.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77258c16e7a3144e527590d6204e487a8afe892000e1bba13029af07a24f47ed +size 229487 diff --git a/parse/train/BJbD_Pqlg/images/92528d6df66d5d2c95ed09ea268b2c7162af0848aa4b03967c2a149c25f461c1.jpg b/parse/train/BJbD_Pqlg/images/92528d6df66d5d2c95ed09ea268b2c7162af0848aa4b03967c2a149c25f461c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20701c103b65cb7afdb1fb8c060b462e360cf94e --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/92528d6df66d5d2c95ed09ea268b2c7162af0848aa4b03967c2a149c25f461c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13c5c58ee7773fce3c2fb19159b397bd6728d6973a8ba9b1037d0012627d7cd +size 19217 diff --git a/parse/train/BJbD_Pqlg/images/a5b5cf26a3b0d9b2e0b128000c5a76eeaf41b7c2988723a760776a8a40d73506.jpg b/parse/train/BJbD_Pqlg/images/a5b5cf26a3b0d9b2e0b128000c5a76eeaf41b7c2988723a760776a8a40d73506.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a900d5bde1e6b09c0ef23cf19ddf8dcf66e4e156 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/a5b5cf26a3b0d9b2e0b128000c5a76eeaf41b7c2988723a760776a8a40d73506.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fb2a7099724b78c7c8b5ea255941d4b0fd430a35d9c9deb27cab0e20852d79 +size 5594 diff --git a/parse/train/BJbD_Pqlg/images/d299515359778da9a39093403eb9f20752e414a8701343cd5c2a594de36cd292.jpg b/parse/train/BJbD_Pqlg/images/d299515359778da9a39093403eb9f20752e414a8701343cd5c2a594de36cd292.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0aa46386a9c15be1631be8338b24e9ce6f7dfc7 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/d299515359778da9a39093403eb9f20752e414a8701343cd5c2a594de36cd292.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b1f1a282afde7a76af223b49aa901eed4108b48275a99c2f9b6d2deb683ee8 +size 44574 diff --git a/parse/train/BJbD_Pqlg/images/e06538e1f986e9ff0de91003d39525212816001f502e80a4bc3b1aaab836db9a.jpg b/parse/train/BJbD_Pqlg/images/e06538e1f986e9ff0de91003d39525212816001f502e80a4bc3b1aaab836db9a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a572eaacc47bdaf2e35cdd56d159a5d89b5fb2ee --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/e06538e1f986e9ff0de91003d39525212816001f502e80a4bc3b1aaab836db9a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01012fd038280440032635832154b534e8269694b98dd78422fb49aba6ecaf70 +size 12609 diff --git a/parse/train/BJbD_Pqlg/images/e61f99d55dac1fec445d942c16502244e20273274c1c7ec161dba0ab42e4345e.jpg b/parse/train/BJbD_Pqlg/images/e61f99d55dac1fec445d942c16502244e20273274c1c7ec161dba0ab42e4345e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8983bcc9ec9063153d14b17a16d37e5645ac65c8 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/e61f99d55dac1fec445d942c16502244e20273274c1c7ec161dba0ab42e4345e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db77c3f713c5ecbff315f70fcf8768a85b7b7aee181eef11fe85c30e30e1feba +size 32623 diff --git a/parse/train/BJbD_Pqlg/images/facc45e6917a8622804e2ee023233bcc6bd542f3ced7648ea2c3f55e2650d3af.jpg b/parse/train/BJbD_Pqlg/images/facc45e6917a8622804e2ee023233bcc6bd542f3ced7648ea2c3f55e2650d3af.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a1c033718d9efc0b4393764a0ddf66550219b068 --- /dev/null +++ b/parse/train/BJbD_Pqlg/images/facc45e6917a8622804e2ee023233bcc6bd542f3ced7648ea2c3f55e2650d3af.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e381353083ed84496289e9b8ad537b68d46e4e0cbadb40f5f1b425129949e82 +size 92633 diff --git a/parse/train/BJj6qGbRW/images/02c12048be4d1cd58794d6d6ea2e8f782217110e95ea6dd7e4bb1bc95385ad18.jpg b/parse/train/BJj6qGbRW/images/02c12048be4d1cd58794d6d6ea2e8f782217110e95ea6dd7e4bb1bc95385ad18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc5154e9f699645c9c8102a9b725ab143a8af18f --- /dev/null +++ b/parse/train/BJj6qGbRW/images/02c12048be4d1cd58794d6d6ea2e8f782217110e95ea6dd7e4bb1bc95385ad18.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8853fd1fb261d6c811cee2f77de93608ba7e2a84c12e0ac558f417daab5c751a +size 3872 diff --git a/parse/train/BJj6qGbRW/images/1749c665207ae427297a74a5058fad81c6fb233bc84b87bbf9a15f13b11663a5.jpg b/parse/train/BJj6qGbRW/images/1749c665207ae427297a74a5058fad81c6fb233bc84b87bbf9a15f13b11663a5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bf8b053f172a7d29ccf09a348f0ec30d034bfbe --- /dev/null +++ b/parse/train/BJj6qGbRW/images/1749c665207ae427297a74a5058fad81c6fb233bc84b87bbf9a15f13b11663a5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3117096a56104fdc2a6525ce97e30585b2e275a05328554f17cf5653637e8e64 +size 3603 diff --git a/parse/train/BJj6qGbRW/images/28a8495332a2a041232a49fbbff9d86801681cbfb4d03b028c7e9c128b1f5bb5.jpg b/parse/train/BJj6qGbRW/images/28a8495332a2a041232a49fbbff9d86801681cbfb4d03b028c7e9c128b1f5bb5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3854e6f24f82d206f8abf66bba8a12fb6a60cbb4 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/28a8495332a2a041232a49fbbff9d86801681cbfb4d03b028c7e9c128b1f5bb5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0a00b44a71dfb863593b90dc036ec9fe860c6cc0fcd60034dd5ad0d4f947b5 +size 4345 diff --git a/parse/train/BJj6qGbRW/images/2e2ce54c630a1a436ab7b51bc8ef3a665fb3bf509061d4d219b7fe5b680c0798.jpg b/parse/train/BJj6qGbRW/images/2e2ce54c630a1a436ab7b51bc8ef3a665fb3bf509061d4d219b7fe5b680c0798.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f42f6bfed657f03eba1d13e5ab2ac0edb2d775f8 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/2e2ce54c630a1a436ab7b51bc8ef3a665fb3bf509061d4d219b7fe5b680c0798.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e4bd457a45662b87c7886aff1190ebd4bb645860c949f6141bb7b4366f6ac3 +size 6385 diff --git a/parse/train/BJj6qGbRW/images/40956d2404fba285f4050d0797270ebf4e608119e957200ba8e13de641ac4836.jpg b/parse/train/BJj6qGbRW/images/40956d2404fba285f4050d0797270ebf4e608119e957200ba8e13de641ac4836.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d5d83444ebb29231fd71b98101fa4683ff1da62 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/40956d2404fba285f4050d0797270ebf4e608119e957200ba8e13de641ac4836.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2778b56dce0c698824de967dcb74ac3e2596c9af5f1fa5f5e3c0281ee6c0e205 +size 4721 diff --git a/parse/train/BJj6qGbRW/images/45a0b8c0818749112a68034fbdcf436895950d17b56b4df930c9cdd0156b32a2.jpg b/parse/train/BJj6qGbRW/images/45a0b8c0818749112a68034fbdcf436895950d17b56b4df930c9cdd0156b32a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c03cc3d1a372ad58337d4300cfa0ee54ea37c320 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/45a0b8c0818749112a68034fbdcf436895950d17b56b4df930c9cdd0156b32a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e7312862b9df09136826a8409be31b9904b35776fd339316c00a9919692c1d +size 4006 diff --git a/parse/train/BJj6qGbRW/images/76da29a1ded497e4cc71bf7e60ec7f846e5e02a900a476403dd975fde3fe84a1.jpg b/parse/train/BJj6qGbRW/images/76da29a1ded497e4cc71bf7e60ec7f846e5e02a900a476403dd975fde3fe84a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6920d53246240e5052e2fd08bc949de16b064460 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/76da29a1ded497e4cc71bf7e60ec7f846e5e02a900a476403dd975fde3fe84a1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0307c0afa002faabe393d64ba1bcda3024d87763107d8273cf3a22c09cff92e +size 4621 diff --git a/parse/train/BJj6qGbRW/images/7cb9005803c1ecd4a34de02934cf10c727d4ec05c336c8efed5d6deafd8aa405.jpg b/parse/train/BJj6qGbRW/images/7cb9005803c1ecd4a34de02934cf10c727d4ec05c336c8efed5d6deafd8aa405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9507d1ca4063b0a6adffba6bcc30214b8e40f3d --- /dev/null +++ b/parse/train/BJj6qGbRW/images/7cb9005803c1ecd4a34de02934cf10c727d4ec05c336c8efed5d6deafd8aa405.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef1abb86792332865bd06d3b07f298eda911406ca58f5fb7201715f4aaa0574 +size 25002 diff --git a/parse/train/BJj6qGbRW/images/8251fc0b282a836b4bb81b5fc5257e1baa263762d8814589e46d779e1a1c488e.jpg b/parse/train/BJj6qGbRW/images/8251fc0b282a836b4bb81b5fc5257e1baa263762d8814589e46d779e1a1c488e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4dedaec88c5fa7e74361f8271dee9b530cf4bac --- /dev/null +++ b/parse/train/BJj6qGbRW/images/8251fc0b282a836b4bb81b5fc5257e1baa263762d8814589e46d779e1a1c488e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5234e53307af8835c70388e910d7e6e19912e763a880579db02bcc4bbdf285e5 +size 13742 diff --git a/parse/train/BJj6qGbRW/images/87222dd54ce9d6c0992f4598f628dae14178d75f83063faf9b2d9855f3039239.jpg b/parse/train/BJj6qGbRW/images/87222dd54ce9d6c0992f4598f628dae14178d75f83063faf9b2d9855f3039239.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5742ee7af62bb21ffb9e37288a4cef56e42fdddf --- /dev/null +++ b/parse/train/BJj6qGbRW/images/87222dd54ce9d6c0992f4598f628dae14178d75f83063faf9b2d9855f3039239.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9c53c27f40a803713b9a31c13b49735094cc5651658fef01ea2dfd7ddbc8ac +size 85894 diff --git a/parse/train/BJj6qGbRW/images/875911c465b5db3c2e3f9b2e38d0b3b1a30909ecc266b76f3a9a1cbeb36f297e.jpg b/parse/train/BJj6qGbRW/images/875911c465b5db3c2e3f9b2e38d0b3b1a30909ecc266b76f3a9a1cbeb36f297e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c77cae3020a373424b0548c8fe3143f66f5fbb87 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/875911c465b5db3c2e3f9b2e38d0b3b1a30909ecc266b76f3a9a1cbeb36f297e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548f22c2e62cfb8064a7afb78a4f03da042a353809f72edff378caf717607947 +size 7040 diff --git a/parse/train/BJj6qGbRW/images/99e2458e560218a143c89603c764c8d7b9d362faf6930c265b4724de6b205482.jpg b/parse/train/BJj6qGbRW/images/99e2458e560218a143c89603c764c8d7b9d362faf6930c265b4724de6b205482.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a51103bc41e1664467133bc2d23980c62f5803e0 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/99e2458e560218a143c89603c764c8d7b9d362faf6930c265b4724de6b205482.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5568cfaeb56a20050b4b0ea9db9ef5259219273deffc645a5110f887a04ffc28 +size 3225 diff --git a/parse/train/BJj6qGbRW/images/ab10bd7c8353d73117caf2f121585d3517f677e117a02a0454fce76ec74734b7.jpg b/parse/train/BJj6qGbRW/images/ab10bd7c8353d73117caf2f121585d3517f677e117a02a0454fce76ec74734b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44151b91167558e52e8e52c97bdefebc441e1844 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/ab10bd7c8353d73117caf2f121585d3517f677e117a02a0454fce76ec74734b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e4aeae3f9389d8dab6404e87963421e88d23b7909b3e34b91c9a4dbcfe7084 +size 6263 diff --git a/parse/train/BJj6qGbRW/images/ab7fb28a484d119fed79007fdb4dbde7401999d4292c486b85a76412e1e59ede.jpg b/parse/train/BJj6qGbRW/images/ab7fb28a484d119fed79007fdb4dbde7401999d4292c486b85a76412e1e59ede.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae2e87da79c0b92ab98a9d491ab9e54da1cbbc94 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/ab7fb28a484d119fed79007fdb4dbde7401999d4292c486b85a76412e1e59ede.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54eca4de2cfb7d7fc6826106e0b0ddacd1077c04229748a8b7e87060ad7fead1 +size 52117 diff --git a/parse/train/BJj6qGbRW/images/af8f312e6bfe45541ec2d48eb1b22608ab823fc94a600078f07938ed0c9e2fab.jpg b/parse/train/BJj6qGbRW/images/af8f312e6bfe45541ec2d48eb1b22608ab823fc94a600078f07938ed0c9e2fab.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0e0ec31a53d4a554cf9c6e6a5f429c2e6a842b2f --- /dev/null +++ b/parse/train/BJj6qGbRW/images/af8f312e6bfe45541ec2d48eb1b22608ab823fc94a600078f07938ed0c9e2fab.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f1df71b471a6ac78a407d531d5f1f5a1f8e65332a41720cc15f6c40503a598 +size 25421 diff --git a/parse/train/BJj6qGbRW/images/b223122af0b98fa76252ceec175d22e622d1c92d6afb3fab831ea8c8485f8a63.jpg b/parse/train/BJj6qGbRW/images/b223122af0b98fa76252ceec175d22e622d1c92d6afb3fab831ea8c8485f8a63.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a77f3192dc8f29b683f6d8aa4cc46efb15fb0cb --- /dev/null +++ b/parse/train/BJj6qGbRW/images/b223122af0b98fa76252ceec175d22e622d1c92d6afb3fab831ea8c8485f8a63.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4feea9d6b36fe8fb8219054f4703918db6342a6330eacdd1a3c49169af75a0 +size 31998 diff --git a/parse/train/BJj6qGbRW/images/b4c088887f7a08550f0517ecbccd2048032004b20c06360795cf3dc382574d64.jpg b/parse/train/BJj6qGbRW/images/b4c088887f7a08550f0517ecbccd2048032004b20c06360795cf3dc382574d64.jpg new file mode 100644 index 0000000000000000000000000000000000000000..624cd2075f3bb6506587cc7002b9caabe8319b05 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/b4c088887f7a08550f0517ecbccd2048032004b20c06360795cf3dc382574d64.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4c3b55cae40e0785bce0116bec9627731a12cec30474f4409e8fc03c561094 +size 5963 diff --git a/parse/train/BJj6qGbRW/images/b99cbe91ce17b435eb28a5064b4a7aef09c414d743f61664cbc2d8103d226337.jpg b/parse/train/BJj6qGbRW/images/b99cbe91ce17b435eb28a5064b4a7aef09c414d743f61664cbc2d8103d226337.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be4c9301bf410c041d8b012a8f7df6ad49091094 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/b99cbe91ce17b435eb28a5064b4a7aef09c414d743f61664cbc2d8103d226337.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4b34d4009905c53468643cd79106e28fc2caa39dc596360d682c51a516789f +size 7723 diff --git a/parse/train/BJj6qGbRW/images/cba769c07ae71a49cc6a64b78741abbfb4f2c82cc84c69985d7b84ccd1f297f2.jpg b/parse/train/BJj6qGbRW/images/cba769c07ae71a49cc6a64b78741abbfb4f2c82cc84c69985d7b84ccd1f297f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..248b17accc9381fcb85b0c1bb09c7b2f8e6dd654 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/cba769c07ae71a49cc6a64b78741abbfb4f2c82cc84c69985d7b84ccd1f297f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12382d807faf6a56045c9443c8bc0728a887eee5ae6d40333626198cf71f3156 +size 67480 diff --git a/parse/train/BJj6qGbRW/images/cc6bdd9a79e888cec2779fcde6829e785bdd9cb8bba883bcf8aa54d996d7e1a7.jpg b/parse/train/BJj6qGbRW/images/cc6bdd9a79e888cec2779fcde6829e785bdd9cb8bba883bcf8aa54d996d7e1a7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f84943658c4647c0747b868cd43b7413c9c8de1 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/cc6bdd9a79e888cec2779fcde6829e785bdd9cb8bba883bcf8aa54d996d7e1a7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b868c5fdd92934a29b664b9fbd72e74356947a7739cf3c07041a79a068d8aa +size 3634 diff --git a/parse/train/BJj6qGbRW/images/eaf603a5e43c20546d0f231615b6e5b563d4f466336efd2d591400e51e0ef5d6.jpg b/parse/train/BJj6qGbRW/images/eaf603a5e43c20546d0f231615b6e5b563d4f466336efd2d591400e51e0ef5d6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7b31fda3577313bec5ddb4dcc595d58b5d5931a --- /dev/null +++ b/parse/train/BJj6qGbRW/images/eaf603a5e43c20546d0f231615b6e5b563d4f466336efd2d591400e51e0ef5d6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4ec1356b0c7bc7399b0787ae7b48a17b3a7587e9a2f48e9d84aa211ee36da2 +size 36767 diff --git a/parse/train/BJj6qGbRW/images/ef65374236211bf46446281a1608a844d5591b2b870029d8192e31a1323f5c4d.jpg b/parse/train/BJj6qGbRW/images/ef65374236211bf46446281a1608a844d5591b2b870029d8192e31a1323f5c4d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b023512b834014c6a07ca1158c90eb0e4861f71f --- /dev/null +++ b/parse/train/BJj6qGbRW/images/ef65374236211bf46446281a1608a844d5591b2b870029d8192e31a1323f5c4d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9387e09fa621003409cb1ea6b5e1255c7ae852a63409a6516ed3b93b4b930b6 +size 5859 diff --git a/parse/train/BJj6qGbRW/images/f38eabf35cdc750fbe4969ce4ddaefa5ad674cad5880cb8253ae0c611d3881fd.jpg b/parse/train/BJj6qGbRW/images/f38eabf35cdc750fbe4969ce4ddaefa5ad674cad5880cb8253ae0c611d3881fd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8cdb0722cfdc02976aaf792d4e95be7a51dac115 --- /dev/null +++ b/parse/train/BJj6qGbRW/images/f38eabf35cdc750fbe4969ce4ddaefa5ad674cad5880cb8253ae0c611d3881fd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea37f6576095fc94318d8741067879f77b9220b7c55ec0379436e7364e21503 +size 29774 diff --git a/parse/train/BkgnhTEtDS/images/14d5141d8d4272d6eb77e85e0756fc7b77528c13627ab79bc69e94da8fbfab05.jpg b/parse/train/BkgnhTEtDS/images/14d5141d8d4272d6eb77e85e0756fc7b77528c13627ab79bc69e94da8fbfab05.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8eb0aac7cda46e7e6645d585c0c2a21d91a4fefb --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/14d5141d8d4272d6eb77e85e0756fc7b77528c13627ab79bc69e94da8fbfab05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15415e812239257aa86b3708c6e8c9f1adbd5beef921c91b75b753448a2a25f8 +size 33128 diff --git a/parse/train/BkgnhTEtDS/images/176cfa9567e2c4a8f290e97bf9e3dd086d6b183d5d81578a0518b355ab4d78e0.jpg b/parse/train/BkgnhTEtDS/images/176cfa9567e2c4a8f290e97bf9e3dd086d6b183d5d81578a0518b355ab4d78e0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25dab7d0ad681bf5255ed48be043bf222cb95d21 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/176cfa9567e2c4a8f290e97bf9e3dd086d6b183d5d81578a0518b355ab4d78e0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04bdf358f4c7bd5ad1e7d8053e046067cc0db42f77417cc859fb1b0c1a0bb532 +size 70601 diff --git a/parse/train/BkgnhTEtDS/images/21fd470750d5dc6388234135b644ab855f21967212499be6c4e6a14e1650b3c7.jpg b/parse/train/BkgnhTEtDS/images/21fd470750d5dc6388234135b644ab855f21967212499be6c4e6a14e1650b3c7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..108b050a14aecbe27ff835bb213cd4558df56f4a --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/21fd470750d5dc6388234135b644ab855f21967212499be6c4e6a14e1650b3c7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cfd3241e6760cbdb486645f380f1b97a080107cbbda17c5d6e10523d3e2e70 +size 18671 diff --git a/parse/train/BkgnhTEtDS/images/261f966830ec935321874e06cf6d957c51abfd170ab6143bbb90f688b4010cb7.jpg b/parse/train/BkgnhTEtDS/images/261f966830ec935321874e06cf6d957c51abfd170ab6143bbb90f688b4010cb7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca196dce08a777420d1fdcc80b1ebb7291cae28b --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/261f966830ec935321874e06cf6d957c51abfd170ab6143bbb90f688b4010cb7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7800c7a98efe603ddfe1a2d27b4b3bce565d6235aadd2040ab9f2aa7ecf7c8 +size 47920 diff --git a/parse/train/BkgnhTEtDS/images/28b771aba239417ad543d9e147807e4254dd8c4b1d11446e2aed660293f54280.jpg b/parse/train/BkgnhTEtDS/images/28b771aba239417ad543d9e147807e4254dd8c4b1d11446e2aed660293f54280.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ce5a9bba6737c73a866ccec3c2a4cf6cf0c0700f --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/28b771aba239417ad543d9e147807e4254dd8c4b1d11446e2aed660293f54280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57dacf40ba3bece0eeb743b5145dfc6d1f7b016564282ebdd88af7c5dc51078b +size 195666 diff --git a/parse/train/BkgnhTEtDS/images/4466c0e81da8a74a15b634b7bf739e402759928deaf08519a126b360b7d8e755.jpg b/parse/train/BkgnhTEtDS/images/4466c0e81da8a74a15b634b7bf739e402759928deaf08519a126b360b7d8e755.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72338f4ca91f49ac6bb90690087ceadecc261278 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/4466c0e81da8a74a15b634b7bf739e402759928deaf08519a126b360b7d8e755.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee74d8c4edea11d2987a34b5ee48c3d37ff29c1fd655253e75143e25e8cb46b +size 30673 diff --git a/parse/train/BkgnhTEtDS/images/480e13525df3896e6b655431ee0384e02d96c2517f15aa9d339ec4a7d2407b19.jpg b/parse/train/BkgnhTEtDS/images/480e13525df3896e6b655431ee0384e02d96c2517f15aa9d339ec4a7d2407b19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfc34e6bd223e08b2ab1ec49411108a68107b22d --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/480e13525df3896e6b655431ee0384e02d96c2517f15aa9d339ec4a7d2407b19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fead231a9a113f63cab76a7549299a5adbdcc4086a9d1d8d77a20209142f117 +size 41055 diff --git a/parse/train/BkgnhTEtDS/images/62887da9b4a452769776a43708406488521dde83c3c309811141a5d2e92bfcbc.jpg b/parse/train/BkgnhTEtDS/images/62887da9b4a452769776a43708406488521dde83c3c309811141a5d2e92bfcbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eda828dc43bb04002f659f75cceb25fe194c957 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/62887da9b4a452769776a43708406488521dde83c3c309811141a5d2e92bfcbc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feef43016b2bc5b1d8f4b52dd3d818a48779d7025ecc7f6064d26317f92ff7c3 +size 36526 diff --git a/parse/train/BkgnhTEtDS/images/6f35d7a072a295fe00e45cd2bbb330614f640f667f5209dcfef5cfa9613a6e5b.jpg b/parse/train/BkgnhTEtDS/images/6f35d7a072a295fe00e45cd2bbb330614f640f667f5209dcfef5cfa9613a6e5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb38ee83443b014efabcca6707dd20270bfa78f5 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/6f35d7a072a295fe00e45cd2bbb330614f640f667f5209dcfef5cfa9613a6e5b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321d2413ea5cc9ebffeec19c2526d179bb6102e8da7a3117c76fccee98bb6f4 +size 53711 diff --git a/parse/train/BkgnhTEtDS/images/7212458588889e3527906f884956c078650304486ef6a9556937065ef4cb4446.jpg b/parse/train/BkgnhTEtDS/images/7212458588889e3527906f884956c078650304486ef6a9556937065ef4cb4446.jpg new file mode 100644 index 0000000000000000000000000000000000000000..39b72d4ad789fba398f11e337b9d6cfd566532fc --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/7212458588889e3527906f884956c078650304486ef6a9556937065ef4cb4446.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7014d815ad27a13d398d8031ed515fd00686bd74513f191ce2734525c111ef +size 92717 diff --git a/parse/train/BkgnhTEtDS/images/77a0bc897efb4332265742f4a161af941ef6d34050c4c67ce3152deb4ca6aa08.jpg b/parse/train/BkgnhTEtDS/images/77a0bc897efb4332265742f4a161af941ef6d34050c4c67ce3152deb4ca6aa08.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab294d61aa0e4104cb504e2860a99567d0237ebf --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/77a0bc897efb4332265742f4a161af941ef6d34050c4c67ce3152deb4ca6aa08.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86a5f7d8d068ba8bbf6cf5b424080a58ba0b5e421964d96f4f110aacfde1013 +size 12839 diff --git a/parse/train/BkgnhTEtDS/images/8a1cc99aa0d6af07f0cc6bd1634a2891c652636634c4915a0735fac1da313350.jpg b/parse/train/BkgnhTEtDS/images/8a1cc99aa0d6af07f0cc6bd1634a2891c652636634c4915a0735fac1da313350.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72f76bcf09e1fa553c9ad8075883d7bc3f1b9f09 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/8a1cc99aa0d6af07f0cc6bd1634a2891c652636634c4915a0735fac1da313350.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac7d002cfca0d9724957dae95413445faaaa71dc3ad7612476413aaae8d8ef9 +size 98466 diff --git a/parse/train/BkgnhTEtDS/images/8dacf52d7af51e8ceb50760fa62aaedd48a2526ac026f854efed2d30d7010636.jpg b/parse/train/BkgnhTEtDS/images/8dacf52d7af51e8ceb50760fa62aaedd48a2526ac026f854efed2d30d7010636.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c303f4cce4eb2b0fd4e006485831e0eeb4bf6e67 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/8dacf52d7af51e8ceb50760fa62aaedd48a2526ac026f854efed2d30d7010636.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f8cbc7384991ed9612d14180961e6cd93a025d2d7b1d7490fa9c55ea2de726 +size 118231 diff --git a/parse/train/BkgnhTEtDS/images/90b8e36009dccdbbffcb2065e8ddcedbdff85a0eef35a9fe6b561bd69db1b1a0.jpg b/parse/train/BkgnhTEtDS/images/90b8e36009dccdbbffcb2065e8ddcedbdff85a0eef35a9fe6b561bd69db1b1a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e052a7ece7c3c36da855eae626cdc575f70b554 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/90b8e36009dccdbbffcb2065e8ddcedbdff85a0eef35a9fe6b561bd69db1b1a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d17fd64764f8828f7f205d2d4236be2af7cb8ff5c2a4b072b84e44a75488614 +size 33596 diff --git a/parse/train/BkgnhTEtDS/images/97d9eca2b0f1db7ba92c2bdb92769a97a14f536e83b59ce74445caa04f4a5590.jpg b/parse/train/BkgnhTEtDS/images/97d9eca2b0f1db7ba92c2bdb92769a97a14f536e83b59ce74445caa04f4a5590.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9ee874f52c892116102bca6d6bbed99607ae4cd7 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/97d9eca2b0f1db7ba92c2bdb92769a97a14f536e83b59ce74445caa04f4a5590.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393e6d267d1f3d4b186f6d00308adcf03223eb3bb116601179a246c5e4f95689 +size 43282 diff --git a/parse/train/BkgnhTEtDS/images/b6ae74e4f4ccf7c978df8ac6ef414f4d23615cdc387f916b8944875db9cde694.jpg b/parse/train/BkgnhTEtDS/images/b6ae74e4f4ccf7c978df8ac6ef414f4d23615cdc387f916b8944875db9cde694.jpg new file mode 100644 index 0000000000000000000000000000000000000000..711817955b28c18c59ee51e839479321f434fd0c --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/b6ae74e4f4ccf7c978df8ac6ef414f4d23615cdc387f916b8944875db9cde694.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4e5ffa7ac1dc208e93bf26c1fa2603586ea0c921414c806f869af6545cd271 +size 10667 diff --git a/parse/train/BkgnhTEtDS/images/b7eea8be6e3f2735c9e5bece005d6c58b99d0da48001db163443d290e687166a.jpg b/parse/train/BkgnhTEtDS/images/b7eea8be6e3f2735c9e5bece005d6c58b99d0da48001db163443d290e687166a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd4e184efd6cd88a9baa484abcb9951a3ee6445b --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/b7eea8be6e3f2735c9e5bece005d6c58b99d0da48001db163443d290e687166a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d273b26895ee35ec4392f3fab27999eb353949d8caa757ee51aa997ffbfb9a5d +size 6579 diff --git a/parse/train/BkgnhTEtDS/images/cc5064bdcaa4814e7752e7008e4d0776c2b6dbc4e8f981d1258a946d9bef02a5.jpg b/parse/train/BkgnhTEtDS/images/cc5064bdcaa4814e7752e7008e4d0776c2b6dbc4e8f981d1258a946d9bef02a5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0760b52ddba223ef11e6fb408165ea907e088408 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/cc5064bdcaa4814e7752e7008e4d0776c2b6dbc4e8f981d1258a946d9bef02a5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff9e3d5bfd5af6d1b33c3a9ba99f0f455a9864d31be73e0d0cb4eb8e806707d +size 39712 diff --git a/parse/train/BkgnhTEtDS/images/ded4bfa5e329b1dc2670f7b8b77d998697829c871d57eff4d770f4c194ea5740.jpg b/parse/train/BkgnhTEtDS/images/ded4bfa5e329b1dc2670f7b8b77d998697829c871d57eff4d770f4c194ea5740.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a67a52d9e4b2873285d6443a3812eb03579ef097 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/ded4bfa5e329b1dc2670f7b8b77d998697829c871d57eff4d770f4c194ea5740.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccf6ebab4db72bd7103116c8e9a5e0426d446755c1eb87aabc62c4474a0b608 +size 15417 diff --git a/parse/train/BkgnhTEtDS/images/e4b75fb8c322ff5ab5711bf8cc1b9cc54f2ee583cb99c2a343bd16f4f9b13efa.jpg b/parse/train/BkgnhTEtDS/images/e4b75fb8c322ff5ab5711bf8cc1b9cc54f2ee583cb99c2a343bd16f4f9b13efa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c1982d44a120f1202e154f3b5129e4fd8199245 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/e4b75fb8c322ff5ab5711bf8cc1b9cc54f2ee583cb99c2a343bd16f4f9b13efa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c6ac4d3303a77f1aac9452a51ad587928bc3d7e013ac270ca70a3ac94b2739 +size 31423 diff --git a/parse/train/BkgnhTEtDS/images/ee53c18b6b3c4d241e961bbbafd4d4bf375eec85c4d16660c2468d16cc5d564f.jpg b/parse/train/BkgnhTEtDS/images/ee53c18b6b3c4d241e961bbbafd4d4bf375eec85c4d16660c2468d16cc5d564f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e8c1d949d95f9783b2ef14774087ab652c0abd0 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/ee53c18b6b3c4d241e961bbbafd4d4bf375eec85c4d16660c2468d16cc5d564f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546ee0c45a3dab31433852c616331e2689493665d8fa39c9a025777503b01026 +size 5488 diff --git a/parse/train/BkgnhTEtDS/images/f37006422183de46f928bb90eff5dbd19815772f9ca9c1bee0161fb90510a5f0.jpg b/parse/train/BkgnhTEtDS/images/f37006422183de46f928bb90eff5dbd19815772f9ca9c1bee0161fb90510a5f0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5f460d33e4d8f82bdf482ace13dcd54193ddbfe --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/f37006422183de46f928bb90eff5dbd19815772f9ca9c1bee0161fb90510a5f0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25fef19450cea76e226a2c3446e69b2b1850bea507b81b77230794ce53ea0dcf +size 35546 diff --git a/parse/train/BkgnhTEtDS/images/fc4ee3bfc13dc9925470c4175950127409553df497aace99718e1a73f9802056.jpg b/parse/train/BkgnhTEtDS/images/fc4ee3bfc13dc9925470c4175950127409553df497aace99718e1a73f9802056.jpg new file mode 100644 index 0000000000000000000000000000000000000000..979289d5663d0f4b2341e705fdc2633ee98f74f9 --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/fc4ee3bfc13dc9925470c4175950127409553df497aace99718e1a73f9802056.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dab853613a47f3f5e5b0c7d4e348bdef314a565f6cd5098139b13bfedc5e0b3 +size 21800 diff --git a/parse/train/BkgnhTEtDS/images/ff862d3e6313885ae759aca9d98da94dbb45d5b51356ab6498d8a9d2658acc27.jpg b/parse/train/BkgnhTEtDS/images/ff862d3e6313885ae759aca9d98da94dbb45d5b51356ab6498d8a9d2658acc27.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b48dbe67c83aecc86085f295bde48c11f922b0fb --- /dev/null +++ b/parse/train/BkgnhTEtDS/images/ff862d3e6313885ae759aca9d98da94dbb45d5b51356ab6498d8a9d2658acc27.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28db06031dacd45ed8d1090fd0d007230268716c22adec8c6859c933cdd8603 +size 6277 diff --git a/parse/train/ByG8A7cee/images/0d8bc099cf3f15db245da8f1f34f6952c46fb09dd90e818d9f8bb3b1af57baa3.jpg b/parse/train/ByG8A7cee/images/0d8bc099cf3f15db245da8f1f34f6952c46fb09dd90e818d9f8bb3b1af57baa3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d7f7c04ef6304706b8681d64f7283e8869e2d03 --- /dev/null +++ b/parse/train/ByG8A7cee/images/0d8bc099cf3f15db245da8f1f34f6952c46fb09dd90e818d9f8bb3b1af57baa3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3462f68e18498b15e67ff800df4acf96a59dd8070fbb598d3b66b59e819e6b +size 128745 diff --git a/parse/train/ByG8A7cee/images/26e8222cee079a6d8c9cde545d6d81bc13d54638dfc2872f8894bd40f52a619d.jpg b/parse/train/ByG8A7cee/images/26e8222cee079a6d8c9cde545d6d81bc13d54638dfc2872f8894bd40f52a619d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b1610a6c929295a0e3958fc07950e34e830b06e --- /dev/null +++ b/parse/train/ByG8A7cee/images/26e8222cee079a6d8c9cde545d6d81bc13d54638dfc2872f8894bd40f52a619d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19592f77c5c6d72d875fb11839dfc5e8dd0469a2e682e22da2b9042d3685a6e5 +size 9806 diff --git a/parse/train/ByG8A7cee/images/340062ad53ad84da8e92a8d8255d36056c64c4c2f216b06448d398fcd0853bcc.jpg b/parse/train/ByG8A7cee/images/340062ad53ad84da8e92a8d8255d36056c64c4c2f216b06448d398fcd0853bcc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f60d349dd7abb4d8f689b96adcf9fd67b8f1264 --- /dev/null +++ b/parse/train/ByG8A7cee/images/340062ad53ad84da8e92a8d8255d36056c64c4c2f216b06448d398fcd0853bcc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af144bcc03dbd20fe15eef5f797b922f18f4ed931046c20fd13174016e034084 +size 4348 diff --git a/parse/train/ByG8A7cee/images/4397ec1e96d277d1035ee65ee15160d70077ae573ac28915367c5384afdbae7a.jpg b/parse/train/ByG8A7cee/images/4397ec1e96d277d1035ee65ee15160d70077ae573ac28915367c5384afdbae7a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1ac9c8af0e321370fe8e222787c434db195f51d --- /dev/null +++ b/parse/train/ByG8A7cee/images/4397ec1e96d277d1035ee65ee15160d70077ae573ac28915367c5384afdbae7a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0355da18e81929f4c3eb7d3215299498049aa4a232d675314777e603f504806 +size 7133 diff --git a/parse/train/ByG8A7cee/images/4bf9239ef5f04ab5432eae55b9a70f34a73dae3493ed69a908a9d5fd13f4c2f1.jpg b/parse/train/ByG8A7cee/images/4bf9239ef5f04ab5432eae55b9a70f34a73dae3493ed69a908a9d5fd13f4c2f1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2719ada1d221f8d692bc58fe61a1a95b40746d3e --- /dev/null +++ b/parse/train/ByG8A7cee/images/4bf9239ef5f04ab5432eae55b9a70f34a73dae3493ed69a908a9d5fd13f4c2f1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29e7e111040903b9e9592d2ccc97146fc89bafaf7ab9521004b246d9b136e84a +size 34348 diff --git a/parse/train/ByG8A7cee/images/540e5f6a28797252925d3445abfb72ca056f1c0a464097561f7c4b5ff011b8df.jpg b/parse/train/ByG8A7cee/images/540e5f6a28797252925d3445abfb72ca056f1c0a464097561f7c4b5ff011b8df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec2f14a8d20d01cc267a71561fbb2a7f7011b067 --- /dev/null +++ b/parse/train/ByG8A7cee/images/540e5f6a28797252925d3445abfb72ca056f1c0a464097561f7c4b5ff011b8df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0b54321e64b32ff2f42e1c47ff5b4f35f7277a1604a3fd8e2f22eb25745b5f +size 77878 diff --git a/parse/train/ByG8A7cee/images/5c040a0339d10ef5db2a8c0736a89dc5f36207d727dc95cefe05eff4a67e065b.jpg b/parse/train/ByG8A7cee/images/5c040a0339d10ef5db2a8c0736a89dc5f36207d727dc95cefe05eff4a67e065b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a3d2fbd246069044800a77baf86282f6bc5dad5 --- /dev/null +++ b/parse/train/ByG8A7cee/images/5c040a0339d10ef5db2a8c0736a89dc5f36207d727dc95cefe05eff4a67e065b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552e281be821a2f20a53fa46eeeecb022f7179d556443c853363d91c1f2be749 +size 48354 diff --git a/parse/train/ByG8A7cee/images/787f483a8556a3d8a8f59733ad85ae9b906c646cdc53288cac6b92ec15023293.jpg b/parse/train/ByG8A7cee/images/787f483a8556a3d8a8f59733ad85ae9b906c646cdc53288cac6b92ec15023293.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3978111fbeec97f0a23b9dafe150d50c330d4411 --- /dev/null +++ b/parse/train/ByG8A7cee/images/787f483a8556a3d8a8f59733ad85ae9b906c646cdc53288cac6b92ec15023293.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb2a93626a19dab80ec11095aaafeb07b4ad5fba96ee72805dcc9e4997ac16c +size 34871 diff --git a/parse/train/ByG8A7cee/images/801ffef07eb629bad790ce259b827d304563c3a93b5991dd3a911571718eca3e.jpg b/parse/train/ByG8A7cee/images/801ffef07eb629bad790ce259b827d304563c3a93b5991dd3a911571718eca3e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86802c38e9719cd94da985cc800844c0afae6b24 --- /dev/null +++ b/parse/train/ByG8A7cee/images/801ffef07eb629bad790ce259b827d304563c3a93b5991dd3a911571718eca3e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6063d7a5aa740af1b58bb800b05b1a96048b9e177692c5f45ad7a9d116461a09 +size 34610 diff --git a/parse/train/ByG8A7cee/images/87ef1fc8d188ea02069cf542faffb56d265b9b1740204980353fa21d6da852bf.jpg b/parse/train/ByG8A7cee/images/87ef1fc8d188ea02069cf542faffb56d265b9b1740204980353fa21d6da852bf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2643206be1935ba4a535edd2e3b93b35c146ec3 --- /dev/null +++ b/parse/train/ByG8A7cee/images/87ef1fc8d188ea02069cf542faffb56d265b9b1740204980353fa21d6da852bf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799b5fc114caa088a4061001dab66d9cda9b642e955b640a476e621827a1ccf8 +size 15604 diff --git a/parse/train/ByG8A7cee/images/91ff1c3dba5675cded295e88770f48349c81852b2cd949f25ff89fdc5939fb54.jpg b/parse/train/ByG8A7cee/images/91ff1c3dba5675cded295e88770f48349c81852b2cd949f25ff89fdc5939fb54.jpg new file mode 100644 index 0000000000000000000000000000000000000000..99162b2480c28a31639f60fe51446469ade0e184 --- /dev/null +++ b/parse/train/ByG8A7cee/images/91ff1c3dba5675cded295e88770f48349c81852b2cd949f25ff89fdc5939fb54.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac0dd140f5f3783dd0c0bb001595f9f34cbe11ff568103010cf4c64896848013 +size 135419 diff --git a/parse/train/ByG8A7cee/images/95b63cb0e3b7bf317eb1f705bb06c0974b38241015fc373a77f885c8ed9456e4.jpg b/parse/train/ByG8A7cee/images/95b63cb0e3b7bf317eb1f705bb06c0974b38241015fc373a77f885c8ed9456e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c691c7272c3c841f27f8ae2db12ba304b92f6548 --- /dev/null +++ b/parse/train/ByG8A7cee/images/95b63cb0e3b7bf317eb1f705bb06c0974b38241015fc373a77f885c8ed9456e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4344b8efbf33c5ed7cf1b14570b5f7d7857f54d8b7a398136f5d482160f7a80a +size 4681 diff --git a/parse/train/ByG8A7cee/images/97d1e470685ca1f07412db7cba45713c6027dcdcb3319467583430504adf11d3.jpg b/parse/train/ByG8A7cee/images/97d1e470685ca1f07412db7cba45713c6027dcdcb3319467583430504adf11d3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d5c08ac52faac745fb5aaa958f0673339015926 --- /dev/null +++ b/parse/train/ByG8A7cee/images/97d1e470685ca1f07412db7cba45713c6027dcdcb3319467583430504adf11d3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34394d67dc546d89533cd5c1d6776533bae437d7c2ceacf529a6b68c074b11b4 +size 19368 diff --git a/parse/train/ByG8A7cee/images/a408daa414778b14a0cab2c0d09ff2fd66785f031873300b5337363e5f169b6a.jpg b/parse/train/ByG8A7cee/images/a408daa414778b14a0cab2c0d09ff2fd66785f031873300b5337363e5f169b6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd32eaf2434f91b68c4afcd4c48aca953e4af813 --- /dev/null +++ b/parse/train/ByG8A7cee/images/a408daa414778b14a0cab2c0d09ff2fd66785f031873300b5337363e5f169b6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b259fa45f4516f8a091b7ec9dc878610d3f0148a94a349634077018b4af84c +size 4129 diff --git a/parse/train/ByG8A7cee/images/a92d24cf1d7529a7eabb16f01b511d907c55d0cf1f852d911cc363ae18227d26.jpg b/parse/train/ByG8A7cee/images/a92d24cf1d7529a7eabb16f01b511d907c55d0cf1f852d911cc363ae18227d26.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff0638f81e7eecf1010fdf9a560438b54ee69b8a --- /dev/null +++ b/parse/train/ByG8A7cee/images/a92d24cf1d7529a7eabb16f01b511d907c55d0cf1f852d911cc363ae18227d26.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c9d02393a8f88be4ce50f43b6b95536573a2378c8582142ee93a9e17708cf4 +size 9931 diff --git a/parse/train/ByG8A7cee/images/b0ecbcb0faa2ea176f8574992b4d9fd0e2656f8d2a9d4622b8cbcf038acd89ca.jpg b/parse/train/ByG8A7cee/images/b0ecbcb0faa2ea176f8574992b4d9fd0e2656f8d2a9d4622b8cbcf038acd89ca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd569bf03c19f96e93d36b89e135287eca83b571 --- /dev/null +++ b/parse/train/ByG8A7cee/images/b0ecbcb0faa2ea176f8574992b4d9fd0e2656f8d2a9d4622b8cbcf038acd89ca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee0663624987a3811ba0992240bad4fbc4165d828a154c38766b16b2f32ce43 +size 55136 diff --git a/parse/train/ByG8A7cee/images/b3c493786dc3a9b650fc7c012d8f1e8c16fa322597d6a17781862a6e4457f828.jpg b/parse/train/ByG8A7cee/images/b3c493786dc3a9b650fc7c012d8f1e8c16fa322597d6a17781862a6e4457f828.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32dd63112a9529542d7db3b5da6f920d9098d5af --- /dev/null +++ b/parse/train/ByG8A7cee/images/b3c493786dc3a9b650fc7c012d8f1e8c16fa322597d6a17781862a6e4457f828.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d64bc916188b423bbb12b91accf0d37e7830190105c2d2642d30200cb261e35 +size 25643 diff --git a/parse/train/ByG8A7cee/images/b5c27ea925b0d009a8f43c195c902d40ad96012b0d9951f391fc954740b4293c.jpg b/parse/train/ByG8A7cee/images/b5c27ea925b0d009a8f43c195c902d40ad96012b0d9951f391fc954740b4293c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e8aece60fc08e9c60c07854933e3ce3a8c1461c1 --- /dev/null +++ b/parse/train/ByG8A7cee/images/b5c27ea925b0d009a8f43c195c902d40ad96012b0d9951f391fc954740b4293c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15d4a02fd80be15eca456595fb01f3925dfef0496185fbf0a8d0f0859b57f18d +size 11597 diff --git a/parse/train/ByG8A7cee/images/c611a549b8b4005a895ec610f9ac220997b6863c479d2d4b105e794440070b62.jpg b/parse/train/ByG8A7cee/images/c611a549b8b4005a895ec610f9ac220997b6863c479d2d4b105e794440070b62.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca1273a92455d25e165501130637ea344d5130a8 --- /dev/null +++ b/parse/train/ByG8A7cee/images/c611a549b8b4005a895ec610f9ac220997b6863c479d2d4b105e794440070b62.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa983299ada6ede1293558a98f02f774cf144973dae9339279b7e77f1a8d5ac +size 30430 diff --git a/parse/train/ByG8A7cee/images/cfecb832e28e27b7c193e6f0fca11681f8407a83b291fbb8a2098dd7f07d9b43.jpg b/parse/train/ByG8A7cee/images/cfecb832e28e27b7c193e6f0fca11681f8407a83b291fbb8a2098dd7f07d9b43.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b04b16876650e139e30397aa0fcb0b77f25e3c8e --- /dev/null +++ b/parse/train/ByG8A7cee/images/cfecb832e28e27b7c193e6f0fca11681f8407a83b291fbb8a2098dd7f07d9b43.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9090e5120b73048d160e6643f98d3b72977f5f57d428247c9054de550ed6e7 +size 126915 diff --git a/parse/train/ByG8A7cee/images/d3108c6d0c18ea8ba368c798cbd6f63b81f84be385fb73c6403abc76351dad2e.jpg b/parse/train/ByG8A7cee/images/d3108c6d0c18ea8ba368c798cbd6f63b81f84be385fb73c6403abc76351dad2e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..24063c7bd48d3371d32c6929457b7d4646bd9430 --- /dev/null +++ b/parse/train/ByG8A7cee/images/d3108c6d0c18ea8ba368c798cbd6f63b81f84be385fb73c6403abc76351dad2e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21704062988a0a8813ecd9d534f392cb2c54680fdf394e3743f01ee5b947071 +size 61860 diff --git a/parse/train/ByG8A7cee/images/e31084ef79ac19593ab17d5c577c581bfc002ada7a48a379f96b165f2241b3d5.jpg b/parse/train/ByG8A7cee/images/e31084ef79ac19593ab17d5c577c581bfc002ada7a48a379f96b165f2241b3d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89c1ef48e053af7042ca7c20b1615503499f48bb --- /dev/null +++ b/parse/train/ByG8A7cee/images/e31084ef79ac19593ab17d5c577c581bfc002ada7a48a379f96b165f2241b3d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a5dad617edb70a706a631d6adf2ff81895c2eee268d4028b921994ee6d69c7 +size 128453 diff --git a/parse/train/ByG8A7cee/images/e5d980b4e67b4495600016bae44aca7cb6065cf154c0da9ccd8f88373126db37.jpg b/parse/train/ByG8A7cee/images/e5d980b4e67b4495600016bae44aca7cb6065cf154c0da9ccd8f88373126db37.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03db6fddd1a3effa77241306e62f7cf1baa077dd --- /dev/null +++ b/parse/train/ByG8A7cee/images/e5d980b4e67b4495600016bae44aca7cb6065cf154c0da9ccd8f88373126db37.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50bb6c6e7741b1a63b0f1b10d0e8ada075831c171be717de319949867f2c7d0c +size 12524 diff --git a/parse/train/ByG8A7cee/images/ea6534fd1aeab549d7a3230dd7619c1c9e486cf87dcea499428bbe141af10525.jpg b/parse/train/ByG8A7cee/images/ea6534fd1aeab549d7a3230dd7619c1c9e486cf87dcea499428bbe141af10525.jpg new file mode 100644 index 0000000000000000000000000000000000000000..969753615afb6ef477d752a70e4b386fe93ff778 --- /dev/null +++ b/parse/train/ByG8A7cee/images/ea6534fd1aeab549d7a3230dd7619c1c9e486cf87dcea499428bbe141af10525.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f1b61309182444f0f8e6e2013b603b91110bf9552b58e7b331a46bbfaae0da +size 4754 diff --git a/parse/train/ByG8A7cee/images/ebaa008105e7dd987239a31655f6ff856e65cab987a99b534f7290d9dc32013b.jpg b/parse/train/ByG8A7cee/images/ebaa008105e7dd987239a31655f6ff856e65cab987a99b534f7290d9dc32013b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a731d86fe7478561b1dfcc8bb2521b108b70156 --- /dev/null +++ b/parse/train/ByG8A7cee/images/ebaa008105e7dd987239a31655f6ff856e65cab987a99b534f7290d9dc32013b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300a53d2f0347e4ff7932dde356a3aa2dfe8bf15a189dacf870110fe05f00af3 +size 15365 diff --git a/parse/train/ByG8A7cee/images/ed337d504821f92e0a5582716c9ae60118e31da5536dda3a598f2c873c9b12f5.jpg b/parse/train/ByG8A7cee/images/ed337d504821f92e0a5582716c9ae60118e31da5536dda3a598f2c873c9b12f5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9cef60c54c4c24893aa32a91c9c0fcfa8ce3173 --- /dev/null +++ b/parse/train/ByG8A7cee/images/ed337d504821f92e0a5582716c9ae60118e31da5536dda3a598f2c873c9b12f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1dd546b2670e3493cfbb177f4c7ecb09820598fc6ccd79fef2fc17794ae0b5b +size 23977 diff --git a/parse/train/ByG8A7cee/images/ed3d08b73696099b317ddeec2b6f3256ec66046f67b2cae8ab186414717f7a61.jpg b/parse/train/ByG8A7cee/images/ed3d08b73696099b317ddeec2b6f3256ec66046f67b2cae8ab186414717f7a61.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3903171480a67e919cc81758dea17d1b4d9d695 --- /dev/null +++ b/parse/train/ByG8A7cee/images/ed3d08b73696099b317ddeec2b6f3256ec66046f67b2cae8ab186414717f7a61.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d955ece75f446efc05bb5cb1f73ca1e4835a957922fee176f1120ce61050fbe +size 18325 diff --git a/parse/train/ByG8A7cee/images/f1a299ecc2ff105190a3839af5d92f14adfd4953c18d2e38eb529392a72a4281.jpg b/parse/train/ByG8A7cee/images/f1a299ecc2ff105190a3839af5d92f14adfd4953c18d2e38eb529392a72a4281.jpg new file mode 100644 index 0000000000000000000000000000000000000000..90ca55f6d3d130f9fc6291bcd0df9783353abe74 --- /dev/null +++ b/parse/train/ByG8A7cee/images/f1a299ecc2ff105190a3839af5d92f14adfd4953c18d2e38eb529392a72a4281.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a13309c0d9f7f4a910dbe7b50aaeb7f4d2a91e541e68d0504bf75634398dab5 +size 9716 diff --git a/parse/train/CoJibBRjPXQ/images/7c22c9c8c12c88279f31b5b2a401a871effbd359f054d58c37179f5c1046d280.jpg b/parse/train/CoJibBRjPXQ/images/7c22c9c8c12c88279f31b5b2a401a871effbd359f054d58c37179f5c1046d280.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f2f1c4f3496ad914e0233980e2fe465321b87f6 --- /dev/null +++ b/parse/train/CoJibBRjPXQ/images/7c22c9c8c12c88279f31b5b2a401a871effbd359f054d58c37179f5c1046d280.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e3e1f3b3d2ff41ee77fa92bf1d2b03b533b6f57fdf90cf90d52800779ed456 +size 4858 diff --git a/parse/train/CoJibBRjPXQ/images/d827ea832926243730d2cd9fc8593745ab0ac4f8b531fce315776bf6a2b7038c.jpg b/parse/train/CoJibBRjPXQ/images/d827ea832926243730d2cd9fc8593745ab0ac4f8b531fce315776bf6a2b7038c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff8f0b1e3f73a9bb47add00f448feda56d03ec7d --- /dev/null +++ b/parse/train/CoJibBRjPXQ/images/d827ea832926243730d2cd9fc8593745ab0ac4f8b531fce315776bf6a2b7038c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edb01c8972309153e46398cca9a56c2438106ebfd4cc500dda4a9967b6451bc +size 6293 diff --git a/parse/train/H1gsz30cKX/images/0e2a8372355bd21f518bfec0e86c744b133c489b20e5aa02ac4b1385e4b217fc.jpg b/parse/train/H1gsz30cKX/images/0e2a8372355bd21f518bfec0e86c744b133c489b20e5aa02ac4b1385e4b217fc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0a45eb781fa54fbd8a611ecc0398d49ed589a11 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/0e2a8372355bd21f518bfec0e86c744b133c489b20e5aa02ac4b1385e4b217fc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a67746c3237d6e5bfad127e002da1e87fe3b2ec96e615c2503a74324a2fdcb +size 6423 diff --git a/parse/train/H1gsz30cKX/images/19cbfc668aa15ef2db3bc40902065064de11252e3d0f0b7d0f0146acae93b6da.jpg b/parse/train/H1gsz30cKX/images/19cbfc668aa15ef2db3bc40902065064de11252e3d0f0b7d0f0146acae93b6da.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0747a6147be29a33fcd2a13035125ae513b6c715 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/19cbfc668aa15ef2db3bc40902065064de11252e3d0f0b7d0f0146acae93b6da.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02707dbb8b80899009a1df46cc7a584e1269a527c307d3d6984aa006d767ca14 +size 10644 diff --git a/parse/train/H1gsz30cKX/images/2858571236dfd6798aa2aeee5a46dc3d33d916b2bb9d64e042f096696cf2a538.jpg b/parse/train/H1gsz30cKX/images/2858571236dfd6798aa2aeee5a46dc3d33d916b2bb9d64e042f096696cf2a538.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc87a0f7f31c7ec37cfd42fd905a41956501454d --- /dev/null +++ b/parse/train/H1gsz30cKX/images/2858571236dfd6798aa2aeee5a46dc3d33d916b2bb9d64e042f096696cf2a538.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916e03a8680d6eaee3698045534898094069725776c1c16595069665a3e63ebe +size 22024 diff --git a/parse/train/H1gsz30cKX/images/30e4708c274fbf135b2b74afd4e970d05a074e4fe9f000054916d3b37f60f7db.jpg b/parse/train/H1gsz30cKX/images/30e4708c274fbf135b2b74afd4e970d05a074e4fe9f000054916d3b37f60f7db.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5cc6268845a2407dd2f848b46fcff233328f76c --- /dev/null +++ b/parse/train/H1gsz30cKX/images/30e4708c274fbf135b2b74afd4e970d05a074e4fe9f000054916d3b37f60f7db.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed521ef745207470f3b7554dbb0862751747cc80b8d5887135a9af8619950718 +size 8884 diff --git a/parse/train/H1gsz30cKX/images/354bc2ccfe67ad374bdb3cda81c878b2a3bc931df71fdf28c36b1569790be0fe.jpg b/parse/train/H1gsz30cKX/images/354bc2ccfe67ad374bdb3cda81c878b2a3bc931df71fdf28c36b1569790be0fe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eed186bae3efed09447d612161a9aa5eea715c23 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/354bc2ccfe67ad374bdb3cda81c878b2a3bc931df71fdf28c36b1569790be0fe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9494c997dcb98fe2415a3efab558f402c0e07f28058a01c453972149245264e8 +size 6182 diff --git a/parse/train/H1gsz30cKX/images/38c64d7e4d21fc85290bb1636b9466c0c9e2ef53d8fd0d2b1d9e3e4368361916.jpg b/parse/train/H1gsz30cKX/images/38c64d7e4d21fc85290bb1636b9466c0c9e2ef53d8fd0d2b1d9e3e4368361916.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0119784d5432a758ec8218835e345c62a4819ea --- /dev/null +++ b/parse/train/H1gsz30cKX/images/38c64d7e4d21fc85290bb1636b9466c0c9e2ef53d8fd0d2b1d9e3e4368361916.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620cb8b428c7d7fe4b8984529fc8096f1484c84707660630857088d1b11ea7d8 +size 35001 diff --git a/parse/train/H1gsz30cKX/images/398499f9c9d6d0133fad8c85e58b7f0d8a9d29683ca29e4e1224e86ab12941e4.jpg b/parse/train/H1gsz30cKX/images/398499f9c9d6d0133fad8c85e58b7f0d8a9d29683ca29e4e1224e86ab12941e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..712d75d2e9c527228b9ce892d522f05087ccc121 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/398499f9c9d6d0133fad8c85e58b7f0d8a9d29683ca29e4e1224e86ab12941e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb1d249efc13ef0e4f596e4323cd2c4ecd957ce1a00fa943cb41bbb5fdcf934 +size 6353 diff --git a/parse/train/H1gsz30cKX/images/4804283d5b82e63f79a191f760a0bdafe201593314a1adc2f262aec768105182.jpg b/parse/train/H1gsz30cKX/images/4804283d5b82e63f79a191f760a0bdafe201593314a1adc2f262aec768105182.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d734a2a7dad92f167b78472531fe4c57838e5921 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/4804283d5b82e63f79a191f760a0bdafe201593314a1adc2f262aec768105182.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9693267c8c3f26eec54787231371d74cc097e542b129449bd5aa52a1e4c507 +size 9713 diff --git a/parse/train/H1gsz30cKX/images/537c38f157055a7e3b143ba0ccac73fe3c7f1c97f90509a19ecbb66f1cf949bc.jpg b/parse/train/H1gsz30cKX/images/537c38f157055a7e3b143ba0ccac73fe3c7f1c97f90509a19ecbb66f1cf949bc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2c3b3beabb5288d2ec5c6de85f7a2d3959ffff2 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/537c38f157055a7e3b143ba0ccac73fe3c7f1c97f90509a19ecbb66f1cf949bc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6192c9276bbfe6d0bb5ade89de66db2f3085fa047e972b8977794355f875f553 +size 26663 diff --git a/parse/train/H1gsz30cKX/images/55ff2aed419a17e3a09e3b7c32de44369f3124b4ad3546c6158ac8cf0eb94f94.jpg b/parse/train/H1gsz30cKX/images/55ff2aed419a17e3a09e3b7c32de44369f3124b4ad3546c6158ac8cf0eb94f94.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0e8f0777e0dd0c082a584a4773ad6d7505c4aaa --- /dev/null +++ b/parse/train/H1gsz30cKX/images/55ff2aed419a17e3a09e3b7c32de44369f3124b4ad3546c6158ac8cf0eb94f94.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86731cea88517d200ce4b28a599db0b0ef205118fc76405a992e1530db132f7e +size 59218 diff --git a/parse/train/H1gsz30cKX/images/74c4793d1cc68ac77394c9804634449f7af656cc149ee4027db4cad4c68eb537.jpg b/parse/train/H1gsz30cKX/images/74c4793d1cc68ac77394c9804634449f7af656cc149ee4027db4cad4c68eb537.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cad67ec54a088eefe79149dd5445d530da00da6c --- /dev/null +++ b/parse/train/H1gsz30cKX/images/74c4793d1cc68ac77394c9804634449f7af656cc149ee4027db4cad4c68eb537.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba45c32587a0a345214de024b3cdcdf3a75398c029612cfb3214c3d6eb0459b9 +size 6225 diff --git a/parse/train/H1gsz30cKX/images/78b81c5be3a25c4d1ab14ffd3dc66b25a9ff6843f4fca3512ed639bdb9af9eca.jpg b/parse/train/H1gsz30cKX/images/78b81c5be3a25c4d1ab14ffd3dc66b25a9ff6843f4fca3512ed639bdb9af9eca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28cf7c5a5ba3a9c4a12b02a150fbe66f775a550d --- /dev/null +++ b/parse/train/H1gsz30cKX/images/78b81c5be3a25c4d1ab14ffd3dc66b25a9ff6843f4fca3512ed639bdb9af9eca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6852fb6d49d3fbe5b78bd7e87af69959b3e327173b1d93d988c5358d23784b3f +size 14248 diff --git a/parse/train/H1gsz30cKX/images/8130cec28a7b345ce4e7646617b21508916bccca607ecc91101cefa281747679.jpg b/parse/train/H1gsz30cKX/images/8130cec28a7b345ce4e7646617b21508916bccca607ecc91101cefa281747679.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4703760e356a4e70963a215dfc6134d6c3665c2f --- /dev/null +++ b/parse/train/H1gsz30cKX/images/8130cec28a7b345ce4e7646617b21508916bccca607ecc91101cefa281747679.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eafc48548b266c0e163f3dd7598d30a2f1b3580366d7fb18d61ceba74ceefc6 +size 22908 diff --git a/parse/train/H1gsz30cKX/images/883adc084156a2569b22a6b01004e359a3524de4743b7d277346c7afa67f66e4.jpg b/parse/train/H1gsz30cKX/images/883adc084156a2569b22a6b01004e359a3524de4743b7d277346c7afa67f66e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbb1a3ec0c1da350a4655d055ad66d5467c6de2b --- /dev/null +++ b/parse/train/H1gsz30cKX/images/883adc084156a2569b22a6b01004e359a3524de4743b7d277346c7afa67f66e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9ccfec0c04e8ae749488ed0e60036fe2f883f7bd919631ebcb67a7e8ee890e +size 13553 diff --git a/parse/train/H1gsz30cKX/images/905f33795715630faff0c9c4a6826da5b7cb9da0cd6013eb661cacaac41b5ec3.jpg b/parse/train/H1gsz30cKX/images/905f33795715630faff0c9c4a6826da5b7cb9da0cd6013eb661cacaac41b5ec3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa2944e9808b5f09d4d684427092cb49a6d308ea --- /dev/null +++ b/parse/train/H1gsz30cKX/images/905f33795715630faff0c9c4a6826da5b7cb9da0cd6013eb661cacaac41b5ec3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a6018ec98c6bde5b43e810bb6718924f1067b882f49f7d18a6fab3664e613b +size 41864 diff --git a/parse/train/H1gsz30cKX/images/da89b7dd5fec8489d2ad59f776c3e83f8ca13ebce56a81fffc66483a41e1d878.jpg b/parse/train/H1gsz30cKX/images/da89b7dd5fec8489d2ad59f776c3e83f8ca13ebce56a81fffc66483a41e1d878.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8a842ce30c8ca8711e7fa7b62272af526523e683 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/da89b7dd5fec8489d2ad59f776c3e83f8ca13ebce56a81fffc66483a41e1d878.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744020e032737b83337e14b31b20034814f880a6fe733153219cb7ddcc28b96e +size 55111 diff --git a/parse/train/H1gsz30cKX/images/e75f03f692fbdecb4d4d0ba1dee6ce5dd3e425677c72c8e453216d4943e27736.jpg b/parse/train/H1gsz30cKX/images/e75f03f692fbdecb4d4d0ba1dee6ce5dd3e425677c72c8e453216d4943e27736.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6188ae2fbc022916653c86454928d96231c0e1a9 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/e75f03f692fbdecb4d4d0ba1dee6ce5dd3e425677c72c8e453216d4943e27736.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d3e0ec81a8d15cd14e189587211e4c0079caeaa4d27936d99f054c6622aab0 +size 3754 diff --git a/parse/train/H1gsz30cKX/images/e79006f60cf0c63d04fcb7a2ffeb67b309de6f9f0609731968f790194e09f4f8.jpg b/parse/train/H1gsz30cKX/images/e79006f60cf0c63d04fcb7a2ffeb67b309de6f9f0609731968f790194e09f4f8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..26428d6bed8ba9a926c1e2f374a89eb575e6c541 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/e79006f60cf0c63d04fcb7a2ffeb67b309de6f9f0609731968f790194e09f4f8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6ced8c1ff4c5581b9c786904350e14a7b3dc9053717a43f7e0a526deff3ff7 +size 3788 diff --git a/parse/train/H1gsz30cKX/images/eb933564a54697924a6c059f00143812bc42d3505a8cdfaa819bc773bd07191d.jpg b/parse/train/H1gsz30cKX/images/eb933564a54697924a6c059f00143812bc42d3505a8cdfaa819bc773bd07191d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fb4369813a8535abd34427cb9d3bf0485ac4ebf --- /dev/null +++ b/parse/train/H1gsz30cKX/images/eb933564a54697924a6c059f00143812bc42d3505a8cdfaa819bc773bd07191d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b20d9d81b1c0e0c54c49424e79d8270830e614a170bd08ab5c411bb64aef26 +size 6344 diff --git a/parse/train/H1gsz30cKX/images/ef02c8b145d1eb4c9762a4cfb8c49e44e8a302afe7c886576d5fe3f735032268.jpg b/parse/train/H1gsz30cKX/images/ef02c8b145d1eb4c9762a4cfb8c49e44e8a302afe7c886576d5fe3f735032268.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca860bb84807ccb9e8f721cc536835a60329e084 --- /dev/null +++ b/parse/train/H1gsz30cKX/images/ef02c8b145d1eb4c9762a4cfb8c49e44e8a302afe7c886576d5fe3f735032268.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09d422ceeaecda324a78cda0113f5979b67b424f1ecacfff4ee5af73cabc906 +size 12284 diff --git a/parse/train/HJx8HANFDH/images/115bac487878806e7316165359d15fa6bc73121087e7091b958ce8f04a0fc66e.jpg b/parse/train/HJx8HANFDH/images/115bac487878806e7316165359d15fa6bc73121087e7091b958ce8f04a0fc66e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e73bbd79331dda9509463837b837925ed005c1b --- /dev/null +++ b/parse/train/HJx8HANFDH/images/115bac487878806e7316165359d15fa6bc73121087e7091b958ce8f04a0fc66e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755c32b25b0900386a2b8ca29c59195f90cb40478b735bdd8f119fb968eb4608 +size 10903 diff --git a/parse/train/HJx8HANFDH/images/29489c356c8edf50ad7483d7091a3251e41be4dbf67089041a455ece09e0bcf8.jpg b/parse/train/HJx8HANFDH/images/29489c356c8edf50ad7483d7091a3251e41be4dbf67089041a455ece09e0bcf8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cc057e3f1fffddecad0de6b3c09152a838776c2 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/29489c356c8edf50ad7483d7091a3251e41be4dbf67089041a455ece09e0bcf8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26b025ea4bdee8a03865e8c9d7ebaccde51945ca9c1d44ec1a8df21b7bb3f24 +size 32431 diff --git a/parse/train/HJx8HANFDH/images/3eebeb4423bc3f879a9ef4ddaeaf4316cb2e467487162b83772c37a1c16bb914.jpg b/parse/train/HJx8HANFDH/images/3eebeb4423bc3f879a9ef4ddaeaf4316cb2e467487162b83772c37a1c16bb914.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ffeff8895a040f590b0e5d6fdc592e615a5dcf78 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/3eebeb4423bc3f879a9ef4ddaeaf4316cb2e467487162b83772c37a1c16bb914.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5c7a93deb1436d10f609cbf22ec2eaf79ee4f58072e8f2dbe0c2cd6c0d9a64 +size 1905 diff --git a/parse/train/HJx8HANFDH/images/3f20fadce4f9178c276c88374ff0abe84fae5f881b6818605f704c3d0f2e643e.jpg b/parse/train/HJx8HANFDH/images/3f20fadce4f9178c276c88374ff0abe84fae5f881b6818605f704c3d0f2e643e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..13ce3ee9d8169b17d1693e42a34530bcdf12b0b7 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/3f20fadce4f9178c276c88374ff0abe84fae5f881b6818605f704c3d0f2e643e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9e80bbf768a3d7e3fee3e5ec3b6bf8cab73f99761b50d69acdcb492cfa014b +size 78030 diff --git a/parse/train/HJx8HANFDH/images/406160c3f299147ee2fb12e0bbc11e07f2a2e0ef05ef6123e4df1aa0616c569a.jpg b/parse/train/HJx8HANFDH/images/406160c3f299147ee2fb12e0bbc11e07f2a2e0ef05ef6123e4df1aa0616c569a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8aa9fba2f1c862c60d66529dce13c3f3aafeb590 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/406160c3f299147ee2fb12e0bbc11e07f2a2e0ef05ef6123e4df1aa0616c569a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b7bc1f4b8f6dc40ca9413bf217bcf9d73e73f20155e2b98b359f6d04768c14 +size 15352 diff --git a/parse/train/HJx8HANFDH/images/454648b42daa116db5d12821592b8035d801ff5be1bf61efe2fe8f52b26326b1.jpg b/parse/train/HJx8HANFDH/images/454648b42daa116db5d12821592b8035d801ff5be1bf61efe2fe8f52b26326b1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f30155f22984cec09d639d7b7a5af9473bbe1e35 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/454648b42daa116db5d12821592b8035d801ff5be1bf61efe2fe8f52b26326b1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9185a90a67c9534715a2265dfca174af70bd83dc73868bfed6f241bc3ffbc2c +size 17886 diff --git a/parse/train/HJx8HANFDH/images/482060d12db47487926c41427bb957087bb44c323aa2168a7c9333df1538419a.jpg b/parse/train/HJx8HANFDH/images/482060d12db47487926c41427bb957087bb44c323aa2168a7c9333df1538419a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..809fc90286726460c3391e192c96348be0a0f30c --- /dev/null +++ b/parse/train/HJx8HANFDH/images/482060d12db47487926c41427bb957087bb44c323aa2168a7c9333df1538419a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df10247ae3b81aab386d2539d67778b33d6e941667ec0d8589971fea7495242b +size 136549 diff --git a/parse/train/HJx8HANFDH/images/6659de742562522511cf091a2528049428692133763538c175898b2e2b14a9b5.jpg b/parse/train/HJx8HANFDH/images/6659de742562522511cf091a2528049428692133763538c175898b2e2b14a9b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c5ec18a977acfa098d4591628f9422f41fb4b6d --- /dev/null +++ b/parse/train/HJx8HANFDH/images/6659de742562522511cf091a2528049428692133763538c175898b2e2b14a9b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d2ae23880a603b77180a711819180f6cb107b401fd0f98d135af5ab93231dd +size 130366 diff --git a/parse/train/HJx8HANFDH/images/673ee9f6a13bb42550fd82131529555ee9a1f33a8cedf7665e7273ad9763421b.jpg b/parse/train/HJx8HANFDH/images/673ee9f6a13bb42550fd82131529555ee9a1f33a8cedf7665e7273ad9763421b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..48c1fddfeb1be4731ac83e61aa953dbee0b88a11 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/673ee9f6a13bb42550fd82131529555ee9a1f33a8cedf7665e7273ad9763421b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e508b3b48485ed712b132bc96cb186374a46ca8b623b77ec1e4a3377dcf4eb3 +size 9496 diff --git a/parse/train/HJx8HANFDH/images/6d3078e02a3ef552801d13c8e7a78c2381c693c42b2c1d4d895f48f22b653f4a.jpg b/parse/train/HJx8HANFDH/images/6d3078e02a3ef552801d13c8e7a78c2381c693c42b2c1d4d895f48f22b653f4a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2619138723d9cbbf22f00b8a3853a9c8a2ef6d8 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/6d3078e02a3ef552801d13c8e7a78c2381c693c42b2c1d4d895f48f22b653f4a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05bc5d72a6604b609ce695d572f839cc503042ccbd3c8d6d08062e31a6c6257 +size 47619 diff --git a/parse/train/HJx8HANFDH/images/8a0c670c0234682b60e9b7b096698d87020ef24aec1aec23fd93fcd21fa25204.jpg b/parse/train/HJx8HANFDH/images/8a0c670c0234682b60e9b7b096698d87020ef24aec1aec23fd93fcd21fa25204.jpg new file mode 100644 index 0000000000000000000000000000000000000000..952b6885430a9d2e4c341c9b6cb8696e21cd7fff --- /dev/null +++ b/parse/train/HJx8HANFDH/images/8a0c670c0234682b60e9b7b096698d87020ef24aec1aec23fd93fcd21fa25204.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c8aa4e0f4fb3dc6b9c520d4723961e267bb0278dd74e747a0c5b50891adb11 +size 5719 diff --git a/parse/train/HJx8HANFDH/images/8f4ca1ef0ea730ecd5e2c2de2a34527f0570a96138effd393db293133246641e.jpg b/parse/train/HJx8HANFDH/images/8f4ca1ef0ea730ecd5e2c2de2a34527f0570a96138effd393db293133246641e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5476dae128a2c37bc90579664a91af96cdc8dec --- /dev/null +++ b/parse/train/HJx8HANFDH/images/8f4ca1ef0ea730ecd5e2c2de2a34527f0570a96138effd393db293133246641e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1f397e9291335b81d4e33acb509ba37965525ae5a7b82104a4e5c423bb73f2 +size 10179 diff --git a/parse/train/HJx8HANFDH/images/91a0e20c3b635451d7f134236fe23e1ccfff184a466cf2b66a710e4152d1e91b.jpg b/parse/train/HJx8HANFDH/images/91a0e20c3b635451d7f134236fe23e1ccfff184a466cf2b66a710e4152d1e91b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..398cbd35449ebbce369c1236104b86bc35133d52 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/91a0e20c3b635451d7f134236fe23e1ccfff184a466cf2b66a710e4152d1e91b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfaead03f92211d982c1b2412ea2404b446e1738c7a8d0c8733121efdded18a +size 43230 diff --git a/parse/train/HJx8HANFDH/images/92f66c92aef368f7095d90e74e655d455c2061e3ee87962b22bc0281c94a8358.jpg b/parse/train/HJx8HANFDH/images/92f66c92aef368f7095d90e74e655d455c2061e3ee87962b22bc0281c94a8358.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63f7e8dc6bbeceac3f70ae3bfec893e2aa8d6957 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/92f66c92aef368f7095d90e74e655d455c2061e3ee87962b22bc0281c94a8358.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ca36b56c08c20e885a25dbf1d1f48a56c87dd26ff7157dc53f4a3f9e854d07 +size 10869 diff --git a/parse/train/HJx8HANFDH/images/993967b9ab93403a01938df2b679e33736e171d9d2e477790f842843016fcf50.jpg b/parse/train/HJx8HANFDH/images/993967b9ab93403a01938df2b679e33736e171d9d2e477790f842843016fcf50.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67c6f5dccd0c602313270fb31ff194ffc040a99e --- /dev/null +++ b/parse/train/HJx8HANFDH/images/993967b9ab93403a01938df2b679e33736e171d9d2e477790f842843016fcf50.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261664081b2e2bda083d27d201fae33fe1e156006ef4d45dc8c9d7dc73d450fe +size 10163 diff --git a/parse/train/HJx8HANFDH/images/a248467460f39c15724258b53f8eec21caf7de4de9a1bf2f07228df5d4e8e34d.jpg b/parse/train/HJx8HANFDH/images/a248467460f39c15724258b53f8eec21caf7de4de9a1bf2f07228df5d4e8e34d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bb14fc2ce52f8016ade09d75193d5a98e90026e --- /dev/null +++ b/parse/train/HJx8HANFDH/images/a248467460f39c15724258b53f8eec21caf7de4de9a1bf2f07228df5d4e8e34d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80ac1e9288fffa21bce28d2eeb861770281d35252b8052c375558c3f95124c7 +size 11827 diff --git a/parse/train/HJx8HANFDH/images/a2e4b0226c04ff410df7cec791e50237d3d80587333c98f5c5542d9abe6e035b.jpg b/parse/train/HJx8HANFDH/images/a2e4b0226c04ff410df7cec791e50237d3d80587333c98f5c5542d9abe6e035b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d117b12b99a4fb3750b2b70a147f937a98a63269 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/a2e4b0226c04ff410df7cec791e50237d3d80587333c98f5c5542d9abe6e035b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f3532aa026808dd1295fdd513ddcf4ff183779a399bb22b346560ce9d376de +size 3291 diff --git a/parse/train/HJx8HANFDH/images/a9d6ead877cad9b2947716dad81efb2c50187e28d5da4f89f16d362b507e9344.jpg b/parse/train/HJx8HANFDH/images/a9d6ead877cad9b2947716dad81efb2c50187e28d5da4f89f16d362b507e9344.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4bd8d65819218e547c713c9a9dca517c9931a1fc --- /dev/null +++ b/parse/train/HJx8HANFDH/images/a9d6ead877cad9b2947716dad81efb2c50187e28d5da4f89f16d362b507e9344.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206f0ad0368f267d541f3a4fc6cf5996b3da49325fecb130dcae0dbd1c77ecb4 +size 12450 diff --git a/parse/train/HJx8HANFDH/images/ab0c49f48fbb2d1b605c40e2a3941d6ed8b5321a4b137d21772d7cd209835e70.jpg b/parse/train/HJx8HANFDH/images/ab0c49f48fbb2d1b605c40e2a3941d6ed8b5321a4b137d21772d7cd209835e70.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9976230351fc762dd943fb519faaced512e18548 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/ab0c49f48fbb2d1b605c40e2a3941d6ed8b5321a4b137d21772d7cd209835e70.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c184ca4cef0858a95098f8007cc3d69eacf2ceab93e54ecee388c229cc168591 +size 39571 diff --git a/parse/train/HJx8HANFDH/images/ac8d0517baa1a6f86e22fa3573bf542100e96d4b596383d4c40c88b9d4548be8.jpg b/parse/train/HJx8HANFDH/images/ac8d0517baa1a6f86e22fa3573bf542100e96d4b596383d4c40c88b9d4548be8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5ab4cb3d9c61edfde27e6af3012896f3e638cf2 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/ac8d0517baa1a6f86e22fa3573bf542100e96d4b596383d4c40c88b9d4548be8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1a66a0b94b5275ddf08ce9c5c1dac96b67cb383a8a6509b702b818643000ff8 +size 40510 diff --git a/parse/train/HJx8HANFDH/images/b2b081aa337d60eaa819cfef46ebe49ae3725bfcfef6048ec52e8790a6c460a2.jpg b/parse/train/HJx8HANFDH/images/b2b081aa337d60eaa819cfef46ebe49ae3725bfcfef6048ec52e8790a6c460a2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19d8c21ba7d840814e74b6c5a1341599f4de30ee --- /dev/null +++ b/parse/train/HJx8HANFDH/images/b2b081aa337d60eaa819cfef46ebe49ae3725bfcfef6048ec52e8790a6c460a2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a8108028a3179cce887113daa047d855b19b4a4a9d9bb54026d6f3f047a682 +size 9757 diff --git a/parse/train/HJx8HANFDH/images/b2ec227a8660b69a16887d20a4f2a8d0c6c038ba581d10bd2680a581e3ec5c11.jpg b/parse/train/HJx8HANFDH/images/b2ec227a8660b69a16887d20a4f2a8d0c6c038ba581d10bd2680a581e3ec5c11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b81477e389b7de37f4deefe2fcb9491355ecf91 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/b2ec227a8660b69a16887d20a4f2a8d0c6c038ba581d10bd2680a581e3ec5c11.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692bdacea5ac4529468e69e7e100a6e71154b86dcd82864df645ce18c1911aea +size 64000 diff --git a/parse/train/HJx8HANFDH/images/bdf07763ee114b64be5f84db15e2975e1b8f0c6d3e148eb2a38297bf14fb4db0.jpg b/parse/train/HJx8HANFDH/images/bdf07763ee114b64be5f84db15e2975e1b8f0c6d3e148eb2a38297bf14fb4db0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7f8fb35de7e9d9268f8e0c62d10007dc61133b8 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/bdf07763ee114b64be5f84db15e2975e1b8f0c6d3e148eb2a38297bf14fb4db0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40626c21d331d78c1aeb1b5c05a58476ecb3076b37b922aa264c922dc78aa670 +size 6305 diff --git a/parse/train/HJx8HANFDH/images/be7946bdf8ebdb42019eca6e011bc298054c7dda6a1399177c1f668bdf207a0b.jpg b/parse/train/HJx8HANFDH/images/be7946bdf8ebdb42019eca6e011bc298054c7dda6a1399177c1f668bdf207a0b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b25d1e88d4f1412d6ed99229de5431cc1c6f3ea4 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/be7946bdf8ebdb42019eca6e011bc298054c7dda6a1399177c1f668bdf207a0b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42cfe49aac38c55008b69a422a6c355bf84f5a56530c0051688f84e2037a4098 +size 40138 diff --git a/parse/train/HJx8HANFDH/images/cecc4655cf5c9afc4a319ad43467b0988ebba771630b9cf3eb2050bfa5907aa7.jpg b/parse/train/HJx8HANFDH/images/cecc4655cf5c9afc4a319ad43467b0988ebba771630b9cf3eb2050bfa5907aa7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46ab5c1ba9c40c45bf20ddfe450ac731b81e5a13 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/cecc4655cf5c9afc4a319ad43467b0988ebba771630b9cf3eb2050bfa5907aa7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db24d03c80adb71b7d27553d206ceb268fd0e371940e320fbbc13cb71489b750 +size 2399 diff --git a/parse/train/HJx8HANFDH/images/d190a734eb42426e465e5aeee5e9ace7cc5b960ff13aa6c3d463afff8a345732.jpg b/parse/train/HJx8HANFDH/images/d190a734eb42426e465e5aeee5e9ace7cc5b960ff13aa6c3d463afff8a345732.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e43f271a7cf7e34e6b95f9322bef861fb37555c --- /dev/null +++ b/parse/train/HJx8HANFDH/images/d190a734eb42426e465e5aeee5e9ace7cc5b960ff13aa6c3d463afff8a345732.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ab7ac4fae5806d825d9f3ea27dda24a4cb2fc5b50afcd24f18417230d7e8805 +size 5992 diff --git a/parse/train/HJx8HANFDH/images/d1dfbdb1b385293e02bdc19fb34a155438c24a883b94d2a96e47783123c9b4b5.jpg b/parse/train/HJx8HANFDH/images/d1dfbdb1b385293e02bdc19fb34a155438c24a883b94d2a96e47783123c9b4b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a64f7a6467753e959cc0aea43f5ff58c71b16909 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/d1dfbdb1b385293e02bdc19fb34a155438c24a883b94d2a96e47783123c9b4b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfc36646c7df0047a22be1a4962f7353c90e1bfaf350fefa9f15de6f2d6f650 +size 6039 diff --git a/parse/train/HJx8HANFDH/images/d5afdf7852a81ee90ab5c0c92e02c56a91a40d4a275bc83427d4e377df862c21.jpg b/parse/train/HJx8HANFDH/images/d5afdf7852a81ee90ab5c0c92e02c56a91a40d4a275bc83427d4e377df862c21.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06b0967a5b5e24a18dea59dabafaf5a5ee6c0431 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/d5afdf7852a81ee90ab5c0c92e02c56a91a40d4a275bc83427d4e377df862c21.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51d430192bb6b67650382878fe1ad4ca11c75fe11378245b9d3448d9ca840c0 +size 2705 diff --git a/parse/train/HJx8HANFDH/images/e10105116458515a8f40438e0218ef77056055bbde4a89f31a0ce16c0bbad001.jpg b/parse/train/HJx8HANFDH/images/e10105116458515a8f40438e0218ef77056055bbde4a89f31a0ce16c0bbad001.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45ffef0327b4070173c028a94ffb97cf4e2be113 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/e10105116458515a8f40438e0218ef77056055bbde4a89f31a0ce16c0bbad001.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b7394134b6178c3cb25d920c8fb23746b68848252eec27e98beeab904adc10 +size 3620 diff --git a/parse/train/HJx8HANFDH/images/f108fa8142bb6f28f4b4f3af264a7dfc63fa21a12ae13e1dbcd998bb0c6f0781.jpg b/parse/train/HJx8HANFDH/images/f108fa8142bb6f28f4b4f3af264a7dfc63fa21a12ae13e1dbcd998bb0c6f0781.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8d9cca31a4ca3fe7d719d3b1c24691d74f1a4a66 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/f108fa8142bb6f28f4b4f3af264a7dfc63fa21a12ae13e1dbcd998bb0c6f0781.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cba5532748f974525296d234551e86963bdedb09391d52d433d483187f278ef +size 13129 diff --git a/parse/train/HJx8HANFDH/images/fbb1da4cba95e5936cdbaee6970f5412ffecede1e12e9307ba3dac1e169efe75.jpg b/parse/train/HJx8HANFDH/images/fbb1da4cba95e5936cdbaee6970f5412ffecede1e12e9307ba3dac1e169efe75.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67d43b4603b5d9ac5a1f6b6be6f2699d52035504 --- /dev/null +++ b/parse/train/HJx8HANFDH/images/fbb1da4cba95e5936cdbaee6970f5412ffecede1e12e9307ba3dac1e169efe75.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35ce4129f886d67430c649660cecce87a139222fdf2e01ff5e32fd13ed4695d +size 42628 diff --git a/parse/train/HJx8HANFDH/images/fe8b5eebba3bc1e2a11923aaf691dda9d81fa2c0ff392f524224d3b5dd9f508e.jpg b/parse/train/HJx8HANFDH/images/fe8b5eebba3bc1e2a11923aaf691dda9d81fa2c0ff392f524224d3b5dd9f508e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0758d95c4d4681ae627ec7e4a361a1d61df0aa7e --- /dev/null +++ b/parse/train/HJx8HANFDH/images/fe8b5eebba3bc1e2a11923aaf691dda9d81fa2c0ff392f524224d3b5dd9f508e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bec018dc172312cec2b7babbaad8a5a0e4856d88779e28283819ca9753b8a4ac +size 5241 diff --git a/parse/train/Hkg5lAEtvS/images/208d42b20be17802a02bb9b2d7de777251fa27892023449a6ae1f3dfe5ae1f28.jpg b/parse/train/Hkg5lAEtvS/images/208d42b20be17802a02bb9b2d7de777251fa27892023449a6ae1f3dfe5ae1f28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..64cbaaac6161b0de8a1bf2bdb2a5f68c8d15d6c7 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/208d42b20be17802a02bb9b2d7de777251fa27892023449a6ae1f3dfe5ae1f28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2993032f3a783aabaa5a7bb425eaa0cee989aadacbc41bd68c3f1c8dd5abb2f +size 3239 diff --git a/parse/train/Hkg5lAEtvS/images/22fd2005ab7d1a6e9fea30e714f34d338c736ed1c5dab1b73dbc4a4eb96b7a8c.jpg b/parse/train/Hkg5lAEtvS/images/22fd2005ab7d1a6e9fea30e714f34d338c736ed1c5dab1b73dbc4a4eb96b7a8c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d77ebfdf7b970cc94e64b991663dd53b3c150849 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/22fd2005ab7d1a6e9fea30e714f34d338c736ed1c5dab1b73dbc4a4eb96b7a8c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70eaec6a21a78008b4ae4499af7ab119072f1e98aa994707ff01919bc3b0a55 +size 7935 diff --git a/parse/train/Hkg5lAEtvS/images/36d60e00851b30146bd9c64828d69da7c70deee1f0181829a6eaa510a674eded.jpg b/parse/train/Hkg5lAEtvS/images/36d60e00851b30146bd9c64828d69da7c70deee1f0181829a6eaa510a674eded.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c6fafe97bd2c745600fd6a1ee6735195f151e8c --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/36d60e00851b30146bd9c64828d69da7c70deee1f0181829a6eaa510a674eded.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221c7735021e2abc6ba3f16191fd73ea9a5873e182705f5b75ef45a86065db95 +size 50516 diff --git a/parse/train/Hkg5lAEtvS/images/3cf6e49c47018bedabb85643400eed543dec6cb5a0f437239a553611cfbd009a.jpg b/parse/train/Hkg5lAEtvS/images/3cf6e49c47018bedabb85643400eed543dec6cb5a0f437239a553611cfbd009a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..335511573273eed9ae95603b5cb587d95fb0c237 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/3cf6e49c47018bedabb85643400eed543dec6cb5a0f437239a553611cfbd009a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efe062fe50515bf27bc18c79bab4ea205e87265fb6eed25404adf15178688d2 +size 44038 diff --git a/parse/train/Hkg5lAEtvS/images/488d55e08108e2dae40f5e9baecf6845f1b47c28e53cc05e693fe8e7bc4202d8.jpg b/parse/train/Hkg5lAEtvS/images/488d55e08108e2dae40f5e9baecf6845f1b47c28e53cc05e693fe8e7bc4202d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2b2f5006ac29fc39451d5b3b3a69d40598930ee --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/488d55e08108e2dae40f5e9baecf6845f1b47c28e53cc05e693fe8e7bc4202d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a6ce8e25405b7d5f8938472a6b80ff24d69705f1aef1ea0cae3aa58fc2b6a0 +size 9918 diff --git a/parse/train/Hkg5lAEtvS/images/5c07bfd96b8388bbb171a928a479a408616c5cc56bee0ce65c761b50565aa4e9.jpg b/parse/train/Hkg5lAEtvS/images/5c07bfd96b8388bbb171a928a479a408616c5cc56bee0ce65c761b50565aa4e9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b025434878607157710e32bf7c730de1d19ad015 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/5c07bfd96b8388bbb171a928a479a408616c5cc56bee0ce65c761b50565aa4e9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bca6a500f9a14dad689b01870069c96ed5b2c99a4a842a6f06c4017b3b21c0 +size 36478 diff --git a/parse/train/Hkg5lAEtvS/images/6004eb3db4284d0117e3e43ad8c661dbec0978ca806171fc9e6aefe55ddbd521.jpg b/parse/train/Hkg5lAEtvS/images/6004eb3db4284d0117e3e43ad8c661dbec0978ca806171fc9e6aefe55ddbd521.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8cbf50b6e6154d8d84819755a5143cf70565afc --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/6004eb3db4284d0117e3e43ad8c661dbec0978ca806171fc9e6aefe55ddbd521.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82f99ad1d65144013d35ddbab25ffb8c326a81a03e665e6417fe55ee3b19ef5 +size 32126 diff --git a/parse/train/Hkg5lAEtvS/images/6393ab1d24f39cca6af91985687a80ea43df6f3679076d05f48af4013c1d2cdc.jpg b/parse/train/Hkg5lAEtvS/images/6393ab1d24f39cca6af91985687a80ea43df6f3679076d05f48af4013c1d2cdc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e56ad9e4f5fde8258cb97f05941b88f90b18719 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/6393ab1d24f39cca6af91985687a80ea43df6f3679076d05f48af4013c1d2cdc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286ee23033ec50716f513cf066d383f9cf80fa44e8fb79a2f0bbae100638bcce +size 9849 diff --git a/parse/train/Hkg5lAEtvS/images/69f77b4bf1d58a71b5ba0d2c04fb8c3f9733f8545e42271338443e1328ef801d.jpg b/parse/train/Hkg5lAEtvS/images/69f77b4bf1d58a71b5ba0d2c04fb8c3f9733f8545e42271338443e1328ef801d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67ada88cdcadffd0ecf98de184859a3d1b2ca529 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/69f77b4bf1d58a71b5ba0d2c04fb8c3f9733f8545e42271338443e1328ef801d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f8c0a7b695edc0dcd547f32a9b1047458b092c9ab1558496c719a08898cb9d +size 2311 diff --git a/parse/train/Hkg5lAEtvS/images/6ce600b0b08c1dd34bb4b6e98ce118b3c0b54e388a7ffa3b53faa3047d99107f.jpg b/parse/train/Hkg5lAEtvS/images/6ce600b0b08c1dd34bb4b6e98ce118b3c0b54e388a7ffa3b53faa3047d99107f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da5ec6e1255053cd5e87829c284809802a4e8035 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/6ce600b0b08c1dd34bb4b6e98ce118b3c0b54e388a7ffa3b53faa3047d99107f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ea7f1e497abbb875efbcf6644e1c178fb6930f7bc6d02e3e39303f0eaea07f +size 35498 diff --git a/parse/train/Hkg5lAEtvS/images/745b50dd517594578d14941a42da8f3d2262488151ed0b96fda8b22c370a336b.jpg b/parse/train/Hkg5lAEtvS/images/745b50dd517594578d14941a42da8f3d2262488151ed0b96fda8b22c370a336b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..21d5db08736856dcb143346e56ac2115ade2c85e --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/745b50dd517594578d14941a42da8f3d2262488151ed0b96fda8b22c370a336b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28efeb6a29db56225ef9f9ed9ff1839494f448c3b6811397cabf2c1e87d87881 +size 28621 diff --git a/parse/train/Hkg5lAEtvS/images/7d3386d2bc1b4492371a10e129eb0524d58d151d9be0ce449d32d34be7a992ed.jpg b/parse/train/Hkg5lAEtvS/images/7d3386d2bc1b4492371a10e129eb0524d58d151d9be0ce449d32d34be7a992ed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a23674bf1685a0e5221e282843d2d1edc06e747 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/7d3386d2bc1b4492371a10e129eb0524d58d151d9be0ce449d32d34be7a992ed.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23bb20737883f35c88baade3bd33807cc150624c78118f685badaf49c6a9e82 +size 19509 diff --git a/parse/train/Hkg5lAEtvS/images/7e6029ad51a082e9fc1435b8078241282fa24ce48bfaeff391be267632a187fe.jpg b/parse/train/Hkg5lAEtvS/images/7e6029ad51a082e9fc1435b8078241282fa24ce48bfaeff391be267632a187fe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c078120c55dc83727979c827fbf48a50ce7ac53 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/7e6029ad51a082e9fc1435b8078241282fa24ce48bfaeff391be267632a187fe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37043f84971661c2c19126a81a79bb4c0252f19089c3959db3df873ed8d412c +size 49227 diff --git a/parse/train/Hkg5lAEtvS/images/8d293ee45befbc219153b4c5ffeacc575a284b4bf0a541403a879da2db5f5d4f.jpg b/parse/train/Hkg5lAEtvS/images/8d293ee45befbc219153b4c5ffeacc575a284b4bf0a541403a879da2db5f5d4f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28bf027fbb6daa00b2dbf8846454c384413bea04 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/8d293ee45befbc219153b4c5ffeacc575a284b4bf0a541403a879da2db5f5d4f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4c4695c56d52827539bd9a0da566d837489e414c702fcce83fc51807800225 +size 22770 diff --git a/parse/train/Hkg5lAEtvS/images/914ffee4588fed8780f7254c653b0b9d91dca00cbb640a560640deac0d14d7b8.jpg b/parse/train/Hkg5lAEtvS/images/914ffee4588fed8780f7254c653b0b9d91dca00cbb640a560640deac0d14d7b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1faddfb21bfc9761809a4318c4f30bc1ae0e25bc --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/914ffee4588fed8780f7254c653b0b9d91dca00cbb640a560640deac0d14d7b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e782d05cf8dd3d96bcca5150ec3d68787f74351afe8f9c9956ece0776b0dccf0 +size 110914 diff --git a/parse/train/Hkg5lAEtvS/images/ad2aeede055f9a462305942ec37e3b80dc7745335389e972c80a267d2c3885fc.jpg b/parse/train/Hkg5lAEtvS/images/ad2aeede055f9a462305942ec37e3b80dc7745335389e972c80a267d2c3885fc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dcf3bc03cda34dec3a8e8dbb81eb15bfbcc738a7 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/ad2aeede055f9a462305942ec37e3b80dc7745335389e972c80a267d2c3885fc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a273ae2adadea95ad664ed974179d14177babdfc17a5a4a3895083d04b4708 +size 126394 diff --git a/parse/train/Hkg5lAEtvS/images/c7afa3af6cc9918c0f88e8379553450f7254498284eaa04d5eebbc7cdc75e1c1.jpg b/parse/train/Hkg5lAEtvS/images/c7afa3af6cc9918c0f88e8379553450f7254498284eaa04d5eebbc7cdc75e1c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9406bf986f334724da495b4f7cf8da6bd06681c7 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/c7afa3af6cc9918c0f88e8379553450f7254498284eaa04d5eebbc7cdc75e1c1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990bdba5377bb2219ed788b4adf1e385f124ecfa4554eb8d69a977a188afdde7 +size 8954 diff --git a/parse/train/Hkg5lAEtvS/images/df23418184c6bc5790b15d2b54059eca64fad3865d468c3f66df23919d6716e7.jpg b/parse/train/Hkg5lAEtvS/images/df23418184c6bc5790b15d2b54059eca64fad3865d468c3f66df23919d6716e7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cae81563ef76c9d5da20d39937e25b8bbbb630f4 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/df23418184c6bc5790b15d2b54059eca64fad3865d468c3f66df23919d6716e7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90cdf2611b6dd2b94aeda690299e93f8e313ba6146a641397c9d525265081216 +size 105806 diff --git a/parse/train/Hkg5lAEtvS/images/e6854ae43d211fae064a51ef481c06ce9af0521ee54d4bdf0fb07da4d8040dc7.jpg b/parse/train/Hkg5lAEtvS/images/e6854ae43d211fae064a51ef481c06ce9af0521ee54d4bdf0fb07da4d8040dc7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773f0a3732519a34c0702a9b32b00a718e6ba673 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/e6854ae43d211fae064a51ef481c06ce9af0521ee54d4bdf0fb07da4d8040dc7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fe5507b32cd144c8acd8ad13279fc69dece46833212b2ff5fa90a60b10d108 +size 12461 diff --git a/parse/train/Hkg5lAEtvS/images/e6e0e122ef04512b8e8bc04fd85e3f71aa2a5746ead01d8c060112c8f9bcb12d.jpg b/parse/train/Hkg5lAEtvS/images/e6e0e122ef04512b8e8bc04fd85e3f71aa2a5746ead01d8c060112c8f9bcb12d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5beff2b15d7c5c27ff77e278534cc0778068dcc2 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/e6e0e122ef04512b8e8bc04fd85e3f71aa2a5746ead01d8c060112c8f9bcb12d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95c05d6c9b680aa39036c0bb9da91877f166678c624e52ab6d8ae7192ca66d6 +size 6706 diff --git a/parse/train/Hkg5lAEtvS/images/feb536fdafee5795da1342ac80bd2681b7d3c0c4257e1466307ba9bec3964a44.jpg b/parse/train/Hkg5lAEtvS/images/feb536fdafee5795da1342ac80bd2681b7d3c0c4257e1466307ba9bec3964a44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e20585cae3518ec6f420809c785be0369c3fc5d6 --- /dev/null +++ b/parse/train/Hkg5lAEtvS/images/feb536fdafee5795da1342ac80bd2681b7d3c0c4257e1466307ba9bec3964a44.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0218a68b13749d4d0d2debe0c32c48dac4848aafe533b9fd235255a0419aca +size 23467 diff --git a/parse/train/HkpYwMZRb/images/04ac446327d1726e82a39871e95032d4494066b7bd7f47589a5f98771f4eda86.jpg b/parse/train/HkpYwMZRb/images/04ac446327d1726e82a39871e95032d4494066b7bd7f47589a5f98771f4eda86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29ff39d42464ea4aa3a1bc73f55617fd077669b9 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/04ac446327d1726e82a39871e95032d4494066b7bd7f47589a5f98771f4eda86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03a49676bbdc02dd99a233f9d242647bd17d90fd426b9917d87026d65dd5e8c +size 8408 diff --git a/parse/train/HkpYwMZRb/images/098f0b9d32e4d7c86dd2f3bd0d2ebcc8c1cf1ea01ac95226aab52d7f63e12830.jpg b/parse/train/HkpYwMZRb/images/098f0b9d32e4d7c86dd2f3bd0d2ebcc8c1cf1ea01ac95226aab52d7f63e12830.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34ca974144f28921ff211edd1acac38d593b3df0 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/098f0b9d32e4d7c86dd2f3bd0d2ebcc8c1cf1ea01ac95226aab52d7f63e12830.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c120078eeb352f41ddb075929c7cf0e2fd6e76b854d92e528a71b806838e3c8e +size 64973 diff --git a/parse/train/HkpYwMZRb/images/0a776a380764dc4a0c5e000f361c8982991a250f7ddb188839b8538c815fcecc.jpg b/parse/train/HkpYwMZRb/images/0a776a380764dc4a0c5e000f361c8982991a250f7ddb188839b8538c815fcecc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b2d18f988b97c65127874f8cd4b3c5e419f2225 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/0a776a380764dc4a0c5e000f361c8982991a250f7ddb188839b8538c815fcecc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305ba8a7a1e90ddcfa2ce7c85d9545829af972a9e48192bfe41e79787344d29f +size 107639 diff --git a/parse/train/HkpYwMZRb/images/148f9da6035e75cd183fab340a56ad4832091a979cd8c2a76e54370d5c7619a0.jpg b/parse/train/HkpYwMZRb/images/148f9da6035e75cd183fab340a56ad4832091a979cd8c2a76e54370d5c7619a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..904f68fada50abc7590f87cd6625208df8d39bf4 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/148f9da6035e75cd183fab340a56ad4832091a979cd8c2a76e54370d5c7619a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3bd4224ac674de36ed6ccf2ed7576fe0bcfb132022501cc182082393811d7f +size 18216 diff --git a/parse/train/HkpYwMZRb/images/205a2298a4b0601ab9ace0d3e52c5adbec22b9c70fa574571b35e1e5d8b61770.jpg b/parse/train/HkpYwMZRb/images/205a2298a4b0601ab9ace0d3e52c5adbec22b9c70fa574571b35e1e5d8b61770.jpg new file mode 100644 index 0000000000000000000000000000000000000000..164f25910ade6aaac2d848c8ad77b42f995f501d --- /dev/null +++ b/parse/train/HkpYwMZRb/images/205a2298a4b0601ab9ace0d3e52c5adbec22b9c70fa574571b35e1e5d8b61770.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cb201fddd90f8985c68bf0b5dbf49a5482bad9099e5af79d0a90725aa22bb5 +size 4565 diff --git a/parse/train/HkpYwMZRb/images/20d60e9eef06d7cb6d3a01942651c4abb3873a394d6df9db0cdf5a3901afaaa8.jpg b/parse/train/HkpYwMZRb/images/20d60e9eef06d7cb6d3a01942651c4abb3873a394d6df9db0cdf5a3901afaaa8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8478730808028644aef8f7782b5867ec264a132a --- /dev/null +++ b/parse/train/HkpYwMZRb/images/20d60e9eef06d7cb6d3a01942651c4abb3873a394d6df9db0cdf5a3901afaaa8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7f764fe633f631480e08b4cd568861583af3ce1e7f40836c7103af2ee5aa3b +size 54573 diff --git a/parse/train/HkpYwMZRb/images/2284cd3937d3c9cdf1245a10514c84e05a6fd3a2d427526ec942b20d664bf664.jpg b/parse/train/HkpYwMZRb/images/2284cd3937d3c9cdf1245a10514c84e05a6fd3a2d427526ec942b20d664bf664.jpg new file mode 100644 index 0000000000000000000000000000000000000000..394021e42b92b9a831052a95297c3cdea8ccd16e --- /dev/null +++ b/parse/train/HkpYwMZRb/images/2284cd3937d3c9cdf1245a10514c84e05a6fd3a2d427526ec942b20d664bf664.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5452099877e4bd4aeb90664f7f3de20f55301c2c6bac9a78e97343bd8545998 +size 7475 diff --git a/parse/train/HkpYwMZRb/images/229882b3554e7b6fab45e1dfb08fcc23240660a934bc5de4e461c243dfa2d39c.jpg b/parse/train/HkpYwMZRb/images/229882b3554e7b6fab45e1dfb08fcc23240660a934bc5de4e461c243dfa2d39c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d1a54f8f7dd71d7dd9573aa87d547f0ffbed1ea1 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/229882b3554e7b6fab45e1dfb08fcc23240660a934bc5de4e461c243dfa2d39c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3358fea3856b4d8ae20468f948e699b822e21dbff3477b28d138508c4f801d5 +size 75705 diff --git a/parse/train/HkpYwMZRb/images/2ab40411ba16b8c37b7340ff0c16be18c59ded1466ce69fc718befed837ccc19.jpg b/parse/train/HkpYwMZRb/images/2ab40411ba16b8c37b7340ff0c16be18c59ded1466ce69fc718befed837ccc19.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b8941676c81028e1b4750cf5b7a7bc0dc78b9c7a --- /dev/null +++ b/parse/train/HkpYwMZRb/images/2ab40411ba16b8c37b7340ff0c16be18c59ded1466ce69fc718befed837ccc19.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb2c89f450a28727a2044c3f1125299ecd517850b78a1d03991145fd2b9b44e +size 63578 diff --git a/parse/train/HkpYwMZRb/images/2fcc7f8b9d26ca801f3941596260d6f2d0d069779715eb99f27ed2fe386d4785.jpg b/parse/train/HkpYwMZRb/images/2fcc7f8b9d26ca801f3941596260d6f2d0d069779715eb99f27ed2fe386d4785.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f514205ec5097747c942373f21fcb3a3d69f058 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/2fcc7f8b9d26ca801f3941596260d6f2d0d069779715eb99f27ed2fe386d4785.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbeacafceffb11cbec4589ef5476634189684f02aafb1955fcef0e76290ed28f +size 57474 diff --git a/parse/train/HkpYwMZRb/images/3509b500475c8bfa8b2b9e5f4dbeec81f5630e316b8ab264af72ea4ea561f9dc.jpg b/parse/train/HkpYwMZRb/images/3509b500475c8bfa8b2b9e5f4dbeec81f5630e316b8ab264af72ea4ea561f9dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..149d7d335fb76d31633ebc9f5cec0d4ccbc2ca48 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/3509b500475c8bfa8b2b9e5f4dbeec81f5630e316b8ab264af72ea4ea561f9dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54226d3d957f4ed3dce4b939b294eb7f656a2fa9786e9419db214c7b4dbb2c60 +size 68149 diff --git a/parse/train/HkpYwMZRb/images/3b4d4df0557a83df2f77c9afdba14d9186d91b3d279d3f5095ac2fe0ad697ebf.jpg b/parse/train/HkpYwMZRb/images/3b4d4df0557a83df2f77c9afdba14d9186d91b3d279d3f5095ac2fe0ad697ebf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bce68066a29162dee12fd832659ab72ea60061b8 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/3b4d4df0557a83df2f77c9afdba14d9186d91b3d279d3f5095ac2fe0ad697ebf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16ea76c26698e4dcd17863c6b03909a8adeab9ffd9098edc19fdbaac0304329 +size 38038 diff --git a/parse/train/HkpYwMZRb/images/454455e1fc41a8ea3b6582726d94865c7789643bab5bcb8314508988dd4d218c.jpg b/parse/train/HkpYwMZRb/images/454455e1fc41a8ea3b6582726d94865c7789643bab5bcb8314508988dd4d218c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14f6ff201c4e22f6a8ea73bd7173381bf126f68f --- /dev/null +++ b/parse/train/HkpYwMZRb/images/454455e1fc41a8ea3b6582726d94865c7789643bab5bcb8314508988dd4d218c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050e8c03e3112d110fb481ef9e52d3fbaa11b301aa1ee07d4fc617d195e05a6a +size 20259 diff --git a/parse/train/HkpYwMZRb/images/4f6998f72194ba09e532b678dd039037750a07d434dc19720408b7b9ef2ffb6f.jpg b/parse/train/HkpYwMZRb/images/4f6998f72194ba09e532b678dd039037750a07d434dc19720408b7b9ef2ffb6f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b74d78119b878217cd230c8e73ae7f6a9405611 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/4f6998f72194ba09e532b678dd039037750a07d434dc19720408b7b9ef2ffb6f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751d8014f155e0d84843a506000fdb487512516478b7768786400da5388d9f3b +size 57236 diff --git a/parse/train/HkpYwMZRb/images/637ca3359f5084afb06a2ccff22514c083e7b1bc6023140fb0fcac1ea0d72898.jpg b/parse/train/HkpYwMZRb/images/637ca3359f5084afb06a2ccff22514c083e7b1bc6023140fb0fcac1ea0d72898.jpg new file mode 100644 index 0000000000000000000000000000000000000000..41f7c28d1a5e737fcaa9948e29174c650e9b148f --- /dev/null +++ b/parse/train/HkpYwMZRb/images/637ca3359f5084afb06a2ccff22514c083e7b1bc6023140fb0fcac1ea0d72898.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3812ba26e7be1e8b30acaec69a30095b3cbbdf8db2d61a6324a17061529255 +size 180250 diff --git a/parse/train/HkpYwMZRb/images/65e342b06d4817c07498b1385f827a337f281d7219e1bb41bb4f9621bc259840.jpg b/parse/train/HkpYwMZRb/images/65e342b06d4817c07498b1385f827a337f281d7219e1bb41bb4f9621bc259840.jpg new file mode 100644 index 0000000000000000000000000000000000000000..89680709b309133a478ee7894f82af5e69e3326d --- /dev/null +++ b/parse/train/HkpYwMZRb/images/65e342b06d4817c07498b1385f827a337f281d7219e1bb41bb4f9621bc259840.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af445f75620d9604b7fcb8261cb12a2705467ff71aeab4d90b714ec1421926f +size 9979 diff --git a/parse/train/HkpYwMZRb/images/76556d5d43ccf90a743a5b582889b46464e2bc76424ce8e69eb66ab7a1aacfb5.jpg b/parse/train/HkpYwMZRb/images/76556d5d43ccf90a743a5b582889b46464e2bc76424ce8e69eb66ab7a1aacfb5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d4a7422fde28b0867705fdebc9d63cdae1212a2 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/76556d5d43ccf90a743a5b582889b46464e2bc76424ce8e69eb66ab7a1aacfb5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29d21369cf872f424a6f4d3bb2cafe03fde558b52d4f486ec940b872f8f4de0e +size 23894 diff --git a/parse/train/HkpYwMZRb/images/79d973fab36dee78e68d85a5874562e6a8833feaba32f07d36c8f4725c566ac5.jpg b/parse/train/HkpYwMZRb/images/79d973fab36dee78e68d85a5874562e6a8833feaba32f07d36c8f4725c566ac5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67bcd2e01be3da9f8230c845f8a65ecec0f9fb79 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/79d973fab36dee78e68d85a5874562e6a8833feaba32f07d36c8f4725c566ac5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac626695d92e35b7a3282a398bf2ede1f010dc60757b0ef8655695d462b71c64 +size 15004 diff --git a/parse/train/HkpYwMZRb/images/7a6ecbb13a013f818a57ab53baf8ed6e1961fa89fcaa38f760b66cc24d239296.jpg b/parse/train/HkpYwMZRb/images/7a6ecbb13a013f818a57ab53baf8ed6e1961fa89fcaa38f760b66cc24d239296.jpg new file mode 100644 index 0000000000000000000000000000000000000000..103a346a1c47c03bfbc53182584e9bc3943e7cf7 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/7a6ecbb13a013f818a57ab53baf8ed6e1961fa89fcaa38f760b66cc24d239296.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07431e557b69599bf0aef78ec4bd1b9eb4728549b972be52a4465eefb17344e4 +size 17859 diff --git a/parse/train/HkpYwMZRb/images/7f91360fe9ec596e3298f1764f59bb3cded456f595ab2f35f42c5f10aebad7fe.jpg b/parse/train/HkpYwMZRb/images/7f91360fe9ec596e3298f1764f59bb3cded456f595ab2f35f42c5f10aebad7fe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76af0865a3a0ea6911d55e486baa4c8ce9ab1134 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/7f91360fe9ec596e3298f1764f59bb3cded456f595ab2f35f42c5f10aebad7fe.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c523930a8518473407e55c933eb2466a12ed7e7d979db66bc907673e7d1b06db +size 35951 diff --git a/parse/train/HkpYwMZRb/images/8b733af3603085253535a59e562e5f9f088d4ca062a3b758e11fc8feedd8c314.jpg b/parse/train/HkpYwMZRb/images/8b733af3603085253535a59e562e5f9f088d4ca062a3b758e11fc8feedd8c314.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b2a93d56adfe015b30b01e406af65a17572f968 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/8b733af3603085253535a59e562e5f9f088d4ca062a3b758e11fc8feedd8c314.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a1d26ccf43775750b59657ec3c938821a8ccffb2eeb74ef5e30e57f0c9362e +size 7731 diff --git a/parse/train/HkpYwMZRb/images/8be1f1de1389effad3bdd78c57ef780c7d2f35ba3e8fb4d0bb2dfd65c3096412.jpg b/parse/train/HkpYwMZRb/images/8be1f1de1389effad3bdd78c57ef780c7d2f35ba3e8fb4d0bb2dfd65c3096412.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2acd82d13d9142c94842f72e778b341efabef8f --- /dev/null +++ b/parse/train/HkpYwMZRb/images/8be1f1de1389effad3bdd78c57ef780c7d2f35ba3e8fb4d0bb2dfd65c3096412.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1339c4d40c33b8be26d874615096c1fa8604108eedc85a1657a2931161431dfd +size 80672 diff --git a/parse/train/HkpYwMZRb/images/8fd596c97a1b300c269cb4647738b09f8602bb8b4635a01541f9ccf74c8ef7cb.jpg b/parse/train/HkpYwMZRb/images/8fd596c97a1b300c269cb4647738b09f8602bb8b4635a01541f9ccf74c8ef7cb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16e3211d462d8d4296d4cfb6709d218bb38aca06 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/8fd596c97a1b300c269cb4647738b09f8602bb8b4635a01541f9ccf74c8ef7cb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9ab15f1b382f5572c8db93f951acdee65c44dee644e37f07f90e73dbc4ccd8 +size 20893 diff --git a/parse/train/HkpYwMZRb/images/922ac14dc723bf66217756beb67855741a3b63d32af52097a2ca1effb1e07c85.jpg b/parse/train/HkpYwMZRb/images/922ac14dc723bf66217756beb67855741a3b63d32af52097a2ca1effb1e07c85.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91aa06cefe3665ad649e5b4fc57c24f81fe5a6b6 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/922ac14dc723bf66217756beb67855741a3b63d32af52097a2ca1effb1e07c85.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fa32a71a2958e7d5ad1a2a99da09c8272781043c809ba0dd34c120971769f7 +size 5760 diff --git a/parse/train/HkpYwMZRb/images/94aff2e615f076893d6b49fe2d513620e77564c28a38a32c136f9f136f9de31c.jpg b/parse/train/HkpYwMZRb/images/94aff2e615f076893d6b49fe2d513620e77564c28a38a32c136f9f136f9de31c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d57edeb44851692bb1cd9d8b66c00d6ecf95b173 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/94aff2e615f076893d6b49fe2d513620e77564c28a38a32c136f9f136f9de31c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d07b5d790bee0037741e6e1cb9a0d85cf654d8d50902f6a2e554227d7dd00f9b +size 6806 diff --git a/parse/train/HkpYwMZRb/images/96ba518f0d31ca5941a7a4dbf65b18db8140dfe19e5e335fa28c981a776e2872.jpg b/parse/train/HkpYwMZRb/images/96ba518f0d31ca5941a7a4dbf65b18db8140dfe19e5e335fa28c981a776e2872.jpg new file mode 100644 index 0000000000000000000000000000000000000000..093c25ce3d881d144dca5e798c6210ffc0be9122 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/96ba518f0d31ca5941a7a4dbf65b18db8140dfe19e5e335fa28c981a776e2872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ce35da18ca588eb5517bc31ee274a9de7a4c6b1276b2339a817faed82683cc +size 28977 diff --git a/parse/train/HkpYwMZRb/images/9e7ef9334d24ba64d496ff64cd7b1dae3b15d4747914f56f461e2bde66d84723.jpg b/parse/train/HkpYwMZRb/images/9e7ef9334d24ba64d496ff64cd7b1dae3b15d4747914f56f461e2bde66d84723.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f104a18447e988cb9291f076d275d1fc13ae2258 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/9e7ef9334d24ba64d496ff64cd7b1dae3b15d4747914f56f461e2bde66d84723.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afc233c7c75182b73d9f935a256dabe184d273d856ecc38f279f17443b4bc7d +size 9734 diff --git a/parse/train/HkpYwMZRb/images/9f0a90450d018cd8d0fd24326f6131575871b9e02577f44f2c93389623cfc5df.jpg b/parse/train/HkpYwMZRb/images/9f0a90450d018cd8d0fd24326f6131575871b9e02577f44f2c93389623cfc5df.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef4cb0bd315ecf58fa8e77f538b35038430b15a6 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/9f0a90450d018cd8d0fd24326f6131575871b9e02577f44f2c93389623cfc5df.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c535ac4850858ea5add87d44015e03866c9304f04c320a4d0d2de5abb00a1885 +size 123798 diff --git a/parse/train/HkpYwMZRb/images/a036bfb551147a43e89f48925bd715c9f8e74ca35569a75499eafffc4e5425b5.jpg b/parse/train/HkpYwMZRb/images/a036bfb551147a43e89f48925bd715c9f8e74ca35569a75499eafffc4e5425b5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15797740b9fc11d28e19d743b9277a4d1d4e055e --- /dev/null +++ b/parse/train/HkpYwMZRb/images/a036bfb551147a43e89f48925bd715c9f8e74ca35569a75499eafffc4e5425b5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2eaf2c0c7a0d8366fa09f7f2c797e10010b9e5d118a8c940240bd8a1fad876 +size 46762 diff --git a/parse/train/HkpYwMZRb/images/a0fcc7229a18a65d3343d3679155d98d80cad84b74be8bb840ce4539909af7f2.jpg b/parse/train/HkpYwMZRb/images/a0fcc7229a18a65d3343d3679155d98d80cad84b74be8bb840ce4539909af7f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..753541cd4240492575c67298685c0c7d77df0723 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/a0fcc7229a18a65d3343d3679155d98d80cad84b74be8bb840ce4539909af7f2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7fe0150914c02038d74d2ce75203dbf8038997050068e4ea680dac6a691c3f +size 10525 diff --git a/parse/train/HkpYwMZRb/images/a95f251813137e23c1e3bb9b090c9af6ad7fface86cc4b24aac7684b5f3541ef.jpg b/parse/train/HkpYwMZRb/images/a95f251813137e23c1e3bb9b090c9af6ad7fface86cc4b24aac7684b5f3541ef.jpg new file mode 100644 index 0000000000000000000000000000000000000000..847cef6e45728a5b212c47bb24f9891e8c2705e8 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/a95f251813137e23c1e3bb9b090c9af6ad7fface86cc4b24aac7684b5f3541ef.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34301d560ae12cb6d5ae9f9530df5e82cb612091af32786c9a3e0fd60ee62a7c +size 9720 diff --git a/parse/train/HkpYwMZRb/images/ad1491a86ede6c166acc4b0ae6a3d899843a0bcd9b0df3d010e92e9247fca5f5.jpg b/parse/train/HkpYwMZRb/images/ad1491a86ede6c166acc4b0ae6a3d899843a0bcd9b0df3d010e92e9247fca5f5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a92783a6191f493664dfcb26f28cc1bd9be36a13 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/ad1491a86ede6c166acc4b0ae6a3d899843a0bcd9b0df3d010e92e9247fca5f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed7e1c52ecd9da791ff9318f1247da6d4ed6d0193e7aab172859f8b7e80e933 +size 17234 diff --git a/parse/train/HkpYwMZRb/images/b1bd2090b91cedc86f015ef0e2317a0ab59c257c0a1c78469a2cef6e84065004.jpg b/parse/train/HkpYwMZRb/images/b1bd2090b91cedc86f015ef0e2317a0ab59c257c0a1c78469a2cef6e84065004.jpg new file mode 100644 index 0000000000000000000000000000000000000000..359aaaf39ce6cfe9ebd816ee46a265e71f1b91b1 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/b1bd2090b91cedc86f015ef0e2317a0ab59c257c0a1c78469a2cef6e84065004.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ac372de1ca26832cc98ae4c8a745e1e4f6b03ab20ce504e6ddd2087a18bf57e +size 6010 diff --git a/parse/train/HkpYwMZRb/images/b5e1e274619150072b98902c160d66719fd3dae96355b5782840bb4b34b29f96.jpg b/parse/train/HkpYwMZRb/images/b5e1e274619150072b98902c160d66719fd3dae96355b5782840bb4b34b29f96.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b28691f81e91d216038af11cdae69f2a421d1dc0 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/b5e1e274619150072b98902c160d66719fd3dae96355b5782840bb4b34b29f96.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f6234ffdd9440dd672218d961cc170f26f549d0f90dad941c07d9f698fa753 +size 12374 diff --git a/parse/train/HkpYwMZRb/images/b9fed6d7f6c0a5743976dda94a6e9ecc26ef58b86decb4a3fd94437e0b43dce0.jpg b/parse/train/HkpYwMZRb/images/b9fed6d7f6c0a5743976dda94a6e9ecc26ef58b86decb4a3fd94437e0b43dce0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa0abc2919680f31256bb2481565010e1408dd57 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/b9fed6d7f6c0a5743976dda94a6e9ecc26ef58b86decb4a3fd94437e0b43dce0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b98a8b0f0bc3e32b7e1acf62a857e996a7e1dbc6a26149ea79f0f6af6ef8dd +size 22991 diff --git a/parse/train/HkpYwMZRb/images/c207297a4fcdd393b4391abfd8e321162ee841e190a0bcf1adc05b085ec17b0c.jpg b/parse/train/HkpYwMZRb/images/c207297a4fcdd393b4391abfd8e321162ee841e190a0bcf1adc05b085ec17b0c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f2b64f30705273c6641c7b778de578b090741ad --- /dev/null +++ b/parse/train/HkpYwMZRb/images/c207297a4fcdd393b4391abfd8e321162ee841e190a0bcf1adc05b085ec17b0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07bec3fdf6ca79d85768ea2744bc7cd7877b51a938af9a000fcb03f6f9dfe843 +size 16466 diff --git a/parse/train/HkpYwMZRb/images/c46c3cc4ed74db4c6892f5b0907c5df050961a04b9bf352d74c865bf219260ee.jpg b/parse/train/HkpYwMZRb/images/c46c3cc4ed74db4c6892f5b0907c5df050961a04b9bf352d74c865bf219260ee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76a61326ff37fbda648163f231f0bfe91c2c7f3f --- /dev/null +++ b/parse/train/HkpYwMZRb/images/c46c3cc4ed74db4c6892f5b0907c5df050961a04b9bf352d74c865bf219260ee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a632a3ab2c78ce56dd2dc89ab3d4ee2a25963088267f6cd10c25b293dbb1a184 +size 1976 diff --git a/parse/train/HkpYwMZRb/images/c610b58ca8da74288eb5c1e45747a701e5eafa123cf67462e6528d47a14c718c.jpg b/parse/train/HkpYwMZRb/images/c610b58ca8da74288eb5c1e45747a701e5eafa123cf67462e6528d47a14c718c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9bac39a758ba199edb1c6107b17c641482446e6 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/c610b58ca8da74288eb5c1e45747a701e5eafa123cf67462e6528d47a14c718c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f719aacef63dafca842d018bd2d56ee28a3c39ebfce6239cd0d3b208acb7c1 +size 27362 diff --git a/parse/train/HkpYwMZRb/images/c7a53ddb3a33f19b110cc1fcc8e8f0568bb3db70e1c39d5d72cb72fab02b17aa.jpg b/parse/train/HkpYwMZRb/images/c7a53ddb3a33f19b110cc1fcc8e8f0568bb3db70e1c39d5d72cb72fab02b17aa.jpg new file mode 100644 index 0000000000000000000000000000000000000000..953eeab1dc501cc27e0dd6c5a01a248db509fc51 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/c7a53ddb3a33f19b110cc1fcc8e8f0568bb3db70e1c39d5d72cb72fab02b17aa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737be4343a01c2c93f2a13c29bd54ad79f2f3f0f274b28caa2263fb6f7e3d768 +size 54931 diff --git a/parse/train/HkpYwMZRb/images/c88b4e6a229d5a7105848007d594fcc2a8d2ef91a982d0962353ead8c151bb8c.jpg b/parse/train/HkpYwMZRb/images/c88b4e6a229d5a7105848007d594fcc2a8d2ef91a982d0962353ead8c151bb8c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..771d5f1027f704a8a9da070d9ede3753e8638194 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/c88b4e6a229d5a7105848007d594fcc2a8d2ef91a982d0962353ead8c151bb8c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3038db5158188ee69ebc7f28f6cbac033a25dc1d7bc7b7da978b76e0f408928e +size 15583 diff --git a/parse/train/HkpYwMZRb/images/d03cdd1ccdc4c610a56fb9dab02ce2266ad7c41e31a512316f04ac07c706fd32.jpg b/parse/train/HkpYwMZRb/images/d03cdd1ccdc4c610a56fb9dab02ce2266ad7c41e31a512316f04ac07c706fd32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a68a4f887cf2f25944237ac63cfb04e0150c0f43 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/d03cdd1ccdc4c610a56fb9dab02ce2266ad7c41e31a512316f04ac07c706fd32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16216c8ef1a59e71857f1665f83bcdeca4e293e0c782100cc2a17c97987803e2 +size 105865 diff --git a/parse/train/HkpYwMZRb/images/de441d346e59c31e33ffa5f6de5428c024564db55a2d45056f9f5b9ca6f7ebb3.jpg b/parse/train/HkpYwMZRb/images/de441d346e59c31e33ffa5f6de5428c024564db55a2d45056f9f5b9ca6f7ebb3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4edac5714addbb304cc9534348cdc566a15d12e5 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/de441d346e59c31e33ffa5f6de5428c024564db55a2d45056f9f5b9ca6f7ebb3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93918c290829ff93543a5a7f20f7dd34be3a095c48994c44a90948d6cd3a90c0 +size 15539 diff --git a/parse/train/HkpYwMZRb/images/df75353356a4ac7b3a8ac52123d4c09db7e7ffad9c1f77db5ad7c04d6e1fb691.jpg b/parse/train/HkpYwMZRb/images/df75353356a4ac7b3a8ac52123d4c09db7e7ffad9c1f77db5ad7c04d6e1fb691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9dd2504b52e6b6a3d9d9f39464fbc8ebe4003a2e --- /dev/null +++ b/parse/train/HkpYwMZRb/images/df75353356a4ac7b3a8ac52123d4c09db7e7ffad9c1f77db5ad7c04d6e1fb691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce10fce9d3fdeac291d4be333214b3400f061e8778aa195657bd761b663e4d5e +size 112020 diff --git a/parse/train/HkpYwMZRb/images/dfbde9a898ac586a17847742e86f1da6e2ae29db75a234c4ff17d745c349660f.jpg b/parse/train/HkpYwMZRb/images/dfbde9a898ac586a17847742e86f1da6e2ae29db75a234c4ff17d745c349660f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7690ade9be7751bbe8125ca1c4643288b6d9bc3 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/dfbde9a898ac586a17847742e86f1da6e2ae29db75a234c4ff17d745c349660f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:343e1d166802c84c2cdb332b95850fb6a89ae24de16851ee86e0f356185c8294 +size 84726 diff --git a/parse/train/HkpYwMZRb/images/e4b20562cc6309e399682d61c9bba5c205a703040411ef9fe3ac4c1989eb5872.jpg b/parse/train/HkpYwMZRb/images/e4b20562cc6309e399682d61c9bba5c205a703040411ef9fe3ac4c1989eb5872.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfd8744f669966a47755200fd553b65096a5d4da --- /dev/null +++ b/parse/train/HkpYwMZRb/images/e4b20562cc6309e399682d61c9bba5c205a703040411ef9fe3ac4c1989eb5872.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83763a5f9ebbf5e228ed912314efa63ca6d00c029c86ef0b56da27eef6141144 +size 20820 diff --git a/parse/train/HkpYwMZRb/images/e593b51270164b406333dba91f4f1dd0f59a3f5a7e771efd7ade67c64d5e925a.jpg b/parse/train/HkpYwMZRb/images/e593b51270164b406333dba91f4f1dd0f59a3f5a7e771efd7ade67c64d5e925a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e90ce2104105ce11ac225b58d5bec5c2e613adf1 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/e593b51270164b406333dba91f4f1dd0f59a3f5a7e771efd7ade67c64d5e925a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd1e9650eeacc9bc242512daafdd2dd7c5a8b58b5c62f5c63f5033c21a314a1 +size 123577 diff --git a/parse/train/HkpYwMZRb/images/e635e11cb87c799b685feefa73131caf1a4f551f7dd6ed7cebc03cd67aaebb1e.jpg b/parse/train/HkpYwMZRb/images/e635e11cb87c799b685feefa73131caf1a4f551f7dd6ed7cebc03cd67aaebb1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ac93f90788dc7e055d35206d54c664706c66111 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/e635e11cb87c799b685feefa73131caf1a4f551f7dd6ed7cebc03cd67aaebb1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2814cfc326def792035c32ca56f0b5a7832ccbd1fe181e89665787091cdda79 +size 32783 diff --git a/parse/train/HkpYwMZRb/images/e65f99931a160fa7edaed215f8596e0181b4e3edf9ed908c01c91562ab61bd79.jpg b/parse/train/HkpYwMZRb/images/e65f99931a160fa7edaed215f8596e0181b4e3edf9ed908c01c91562ab61bd79.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e102063d4e274c93a4c3dc27c35162d63ad44db8 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/e65f99931a160fa7edaed215f8596e0181b4e3edf9ed908c01c91562ab61bd79.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db507e8fdb863e0c6fe91a113d40c610e4fbbe6b712d8cae213403cdc5683b7 +size 13062 diff --git a/parse/train/HkpYwMZRb/images/eeb708de394554d82834cb84a626ab96de0fa65f27c46a5feb160c68bee1369d.jpg b/parse/train/HkpYwMZRb/images/eeb708de394554d82834cb84a626ab96de0fa65f27c46a5feb160c68bee1369d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9d99963ddaff05c4c9da162c8eda3365182e245 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/eeb708de394554d82834cb84a626ab96de0fa65f27c46a5feb160c68bee1369d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2167603a506825c666497cec96233a7e6d5f227158d072f74bafa70423de87f +size 24213 diff --git a/parse/train/HkpYwMZRb/images/f03f6734563eb88bd81bb582fb4dd5c8dc958da0c2080d44eb54b3b2433311c5.jpg b/parse/train/HkpYwMZRb/images/f03f6734563eb88bd81bb582fb4dd5c8dc958da0c2080d44eb54b3b2433311c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c592e19b42266ed6456737af4cccc72524082d3d --- /dev/null +++ b/parse/train/HkpYwMZRb/images/f03f6734563eb88bd81bb582fb4dd5c8dc958da0c2080d44eb54b3b2433311c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:614d52ad4ee116624a2cf9c286ff65189dc4de13e4a73797f13cc7ceaf2115e6 +size 10826 diff --git a/parse/train/HkpYwMZRb/images/f05a7662f6bf832eb2db5d5e8c52f78d446da8cf459b032d60323d460b86e972.jpg b/parse/train/HkpYwMZRb/images/f05a7662f6bf832eb2db5d5e8c52f78d446da8cf459b032d60323d460b86e972.jpg new file mode 100644 index 0000000000000000000000000000000000000000..430cd9ad5bab77e869b079d67e1f4019fdadf7ac --- /dev/null +++ b/parse/train/HkpYwMZRb/images/f05a7662f6bf832eb2db5d5e8c52f78d446da8cf459b032d60323d460b86e972.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952a41e7d99260977261b48a671d8055cac5f883c1410074f72a90d9f200e19a +size 49601 diff --git a/parse/train/HkpYwMZRb/images/f383e9368a31b94c6eed29810697a672c609b84c7ce6d5f40a7e1fb54e81c4dc.jpg b/parse/train/HkpYwMZRb/images/f383e9368a31b94c6eed29810697a672c609b84c7ce6d5f40a7e1fb54e81c4dc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e3c61748bcc640860e4e91f5b8fb4a990513377 --- /dev/null +++ b/parse/train/HkpYwMZRb/images/f383e9368a31b94c6eed29810697a672c609b84c7ce6d5f40a7e1fb54e81c4dc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5365b6527caa71eb4a83e2f3c997501efa422174f30d36389e458693e8fbd24 +size 57322 diff --git a/parse/train/HkpYwMZRb/images/f68fa715b07912cebcc2a2275cf123fda557e44041cc8e9879d36a189f7999e5.jpg b/parse/train/HkpYwMZRb/images/f68fa715b07912cebcc2a2275cf123fda557e44041cc8e9879d36a189f7999e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66f4fa33cc26c7ab9a83bb17ff53d409e855ad9a --- /dev/null +++ b/parse/train/HkpYwMZRb/images/f68fa715b07912cebcc2a2275cf123fda557e44041cc8e9879d36a189f7999e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c540716ca40bf48d3bf291a99f2346f64a34f474ece3f20fbf2f75ba3ea5bb +size 80454 diff --git a/parse/train/OU98jZWS3x_/images/17ede98c7663465d7ae64d6b390139ee6801c95c8a9097d5ed812d3bb08e68d8.jpg b/parse/train/OU98jZWS3x_/images/17ede98c7663465d7ae64d6b390139ee6801c95c8a9097d5ed812d3bb08e68d8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..760039b2086df2a0710d591b6099a07b0067f44c --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/17ede98c7663465d7ae64d6b390139ee6801c95c8a9097d5ed812d3bb08e68d8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955264e956841d1146270e9242c0b6a1c3dba353db188c8dc2db732bf51307c2 +size 59184 diff --git a/parse/train/OU98jZWS3x_/images/5a624c8a26062f9098379d544f29790768a0f85259ec2ef83690f4192c23f929.jpg b/parse/train/OU98jZWS3x_/images/5a624c8a26062f9098379d544f29790768a0f85259ec2ef83690f4192c23f929.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d13abe10d20dde35f144653ed6b1401dbd85cb0f --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/5a624c8a26062f9098379d544f29790768a0f85259ec2ef83690f4192c23f929.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322780ea6b07e83c0e684c6496f33bfad3fb30e850eb76063228060dd66ea497 +size 51963 diff --git a/parse/train/OU98jZWS3x_/images/78bd8a08e63c24eeb994d0756e48d868e96fe7cc0cf92927f51ade174974d4e8.jpg b/parse/train/OU98jZWS3x_/images/78bd8a08e63c24eeb994d0756e48d868e96fe7cc0cf92927f51ade174974d4e8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bec5f8e4237ec00661011fb8e6ec180b139d5983 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/78bd8a08e63c24eeb994d0756e48d868e96fe7cc0cf92927f51ade174974d4e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79dc496e800bbb0da8177caefee62152a4e68b7e8f352c3bb98189a03d0607c +size 76866 diff --git a/parse/train/OU98jZWS3x_/images/88360c3236154304146ad2cec322e05f63a49acb48c6c1b23c464f964e2fe1f0.jpg b/parse/train/OU98jZWS3x_/images/88360c3236154304146ad2cec322e05f63a49acb48c6c1b23c464f964e2fe1f0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6a21ecf0efe6db2b19b00e4ef9323966bdaaf83 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/88360c3236154304146ad2cec322e05f63a49acb48c6c1b23c464f964e2fe1f0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d866c9d887f9f2935b70fd79707290f35c0afb96dcb52b088c69c62af9d19fba +size 105276 diff --git a/parse/train/OU98jZWS3x_/images/94831f3cabb144dad55bcbfb158783030f5497ff9f18ae02e337e69f8a8092bd.jpg b/parse/train/OU98jZWS3x_/images/94831f3cabb144dad55bcbfb158783030f5497ff9f18ae02e337e69f8a8092bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d381865d651d40085b2dea5c86249d42c9f0326 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/94831f3cabb144dad55bcbfb158783030f5497ff9f18ae02e337e69f8a8092bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a054348ae9817cc84f5f26269ac2e23f2a86ae451e438b5d0dcbbd5164b5ba +size 87674 diff --git a/parse/train/OU98jZWS3x_/images/a1e65038291f832a19e5c0ef781639de95383e6632b61e3d322e5d067b13d596.jpg b/parse/train/OU98jZWS3x_/images/a1e65038291f832a19e5c0ef781639de95383e6632b61e3d322e5d067b13d596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79dba3802ca75f8234bed39b2ca665f84ab876ee --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/a1e65038291f832a19e5c0ef781639de95383e6632b61e3d322e5d067b13d596.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257d8264ef48846a0071ce97cd6f28901790e787bd26de8762f17570c496cc81 +size 17708 diff --git a/parse/train/OU98jZWS3x_/images/b972c296c95e38207891fcbe7c43985a22a9400506330b2ed868ce523a2947d5.jpg b/parse/train/OU98jZWS3x_/images/b972c296c95e38207891fcbe7c43985a22a9400506330b2ed868ce523a2947d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7abf8f7b2fa2dc73f4a77e0891db49bc055a2bf3 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/b972c296c95e38207891fcbe7c43985a22a9400506330b2ed868ce523a2947d5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b94f4ce6f8b3c84461cb02fad7ecae75140cccf8656e7201434db0449e2c7f +size 67921 diff --git a/parse/train/OU98jZWS3x_/images/bfdb0ba1557ac2abd627d7d19e660f35f25e62f1b332ec44fc26fc9f8a9618ca.jpg b/parse/train/OU98jZWS3x_/images/bfdb0ba1557ac2abd627d7d19e660f35f25e62f1b332ec44fc26fc9f8a9618ca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5fd8bbe8b800a9dc2a27cef69cba93d2353c55ed --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/bfdb0ba1557ac2abd627d7d19e660f35f25e62f1b332ec44fc26fc9f8a9618ca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5590f6984c1fc1c15bcf713d138b751c48e27dcaf59d7fa93fa888f66e03d5 +size 9513 diff --git a/parse/train/OU98jZWS3x_/images/d9704a85040ab49727c123479c513cf7b2c243c18519d8a70391578c96ff2109.jpg b/parse/train/OU98jZWS3x_/images/d9704a85040ab49727c123479c513cf7b2c243c18519d8a70391578c96ff2109.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63f49de79d94284ff8b0e1707c0bb7a39dba81e2 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/d9704a85040ab49727c123479c513cf7b2c243c18519d8a70391578c96ff2109.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e7065863b343b445266f38e413273b50fe9e53a99bd421467cdcb046c02e14 +size 198035 diff --git a/parse/train/OU98jZWS3x_/images/ea871b934771676e9ea41668de1762b06bc8f98e20e41089cdd1c8919705bc6a.jpg b/parse/train/OU98jZWS3x_/images/ea871b934771676e9ea41668de1762b06bc8f98e20e41089cdd1c8919705bc6a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27f3ae3c0233483b06992a7dcfa72c7bb6dd4651 --- /dev/null +++ b/parse/train/OU98jZWS3x_/images/ea871b934771676e9ea41668de1762b06bc8f98e20e41089cdd1c8919705bc6a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb24c6d72e20106efc005040d92252bc0bbd866b8919442168233b727835472 +size 36985 diff --git a/parse/train/S1X7nhsxl/S1X7nhsxl.md b/parse/train/S1X7nhsxl/S1X7nhsxl.md new file mode 100644 index 0000000000000000000000000000000000000000..6518adfa8fa241108d453be488f9ea024eabf3b1 --- /dev/null +++ b/parse/train/S1X7nhsxl/S1X7nhsxl.md @@ -0,0 +1,262 @@ +# IMPROVING GENERATIVE ADVERSARIAL NETWORKS WITH DENOISING FEATURE MATCHING + +David Warde-Farley & Yoshua Bengio? +Montreal Institute for Learning Algorithms, $\star$ CIFAR Senior Fellow +Universite de Montr´ eal´ +Montreal, Quebec, Canada +{david.warde-farley,yoshua.bengio}@umontreal.ca + +# ABSTRACT + +We propose an augmented training procedure for generative adversarial networks designed to address shortcomings of the original by directing the generator towards probable configurations of abstract discriminator features. We estimate and track the distribution of these features, as computed from data, with a denoising auto-encoder, and use it to propose high-level targets for the generator. We combine this new loss with the original and evaluate the hybrid criterion on the task of unsupervised image synthesis from datasets comprising a diverse set of visual categories, noting a qualitative and quantitative improvement in the “objectness” of the resulting samples. + +# 1 INTRODUCTION + +Generative adversarial networks (Goodfellow et al., 2014a) (GANs) have become well known for their strength at realistic image synthesis. The objective function for the generative network is an implicit function of a learned discriminator network, estimated in parallel with the generator, which aims to tell apart real data from synthesized. Ideally, the discriminator learns to capture distinguishing features of real data, which the generator learns to imitate, and the process iterates until real data and synthesized data are indistinguishable. + +In practice, GANs are well known for being quite challenging to train effectively. The relative model capacities of the generator and discriminator must be carefully balanced in order for the generator to effectively learn. Compounding the problem is the lack of an unambiguous and computable convergence criterion. Nevertheless, particularly when trained on image collections from relatively narrow domains such as bedroom scenes (Yu et al., 2015) and human faces (Liu et al., 2015), GANs have been shown to produce very compelling results. + +For diverse image collections comprising a wider variety of the visual world, the results have generally been less impressive. For example, samples from models trained on ImageNet (Russakovsky et al., 2014) roughly match the local and global statistics of natural images but yield few recognizable objects. Recent work (Salimans et al., 2016) has sought to address this problem by training the discriminator in a semi-supervised fashion, granting the discriminator’s internal representations knowledge of the class structure of (some fraction of) the training data it is presented. This technique markedly increases sample quality, but is unsatisfying from the perspective of GANs as a tool for unsupervised learning. + +We propose to augment the generator’s training criterion with a second training objective which guides the generator towards samples more like those in the training set by explicitly modeling the data density in addition to the adversarial discriminator. Rather than deploy a second computationally expensive convolutional network for this task, the additional objective is computed in the space of features learned by the discriminator. In that space, we train a denoising auto-encoder, a family of models which is known to estimate the energy gradient of the data on which it is trained. We evaluate the denoising auto-encoder on samples drawn from the generator, and use the “denoised” features as targets – nearby feature configurations which are more likely than those of the generated sample, according to the distribution estimated by the denoiser. + +We show that this yields generators which consistently produce recognizable objects on the CIFAR10 dataset without the use of label information as in Salimans et al. (2016). The criterion appears to improve stability and possesses a degree of natural robustness to the well known “collapse” pathology. We further investigate the criterion’s performance on two larger and more diverse collections of images, and validate our qualitative observations quantitatively with the Inception score proposed in Salimans et al. (2016). + +# 2 BACKGROUND + +# 2.1 GENERATIVE ADVERSARIAL NETWORKS + +The generative adversarial networks paradigm (Goodfellow et al., 2014a) estimates generative samplers by means of a training procedure which pits a generator $G$ against a discriminator $D$ . $D$ is trained to tell apart training examples from samples produced by $G$ , while $G$ is trained to increase the probability of its samples being incorrectly classified as data. In the original formulation, the training procedure defines a continuous minimax game + +$$ +\underset { G } { \arg \operatorname* { m i n } } \ \underset { D } { \arg \operatorname* { m a x } } \mathbb { E } _ { \mathbf { x } \sim \mathcal { D } } \log D ( \mathbf { x } ) + \mathbb { E } _ { \mathbf { z } \sim p ( \mathbf { z } ) } \log \left( 1 - D \left( G ( \mathbf { z } ) \right) \right) +$$ + +where $\mathcal { D }$ is a data distribution on $\mathbb { R } ^ { n }$ , $D$ is a function that maps $\mathbb { R } ^ { n }$ to the unit interval, and $G$ is a function that maps a noise vector $\mathbf { z } \in \mathbb { R } ^ { m }$ , drawn from a simple distribution $p ( \mathbf { z } )$ , to the ambient space of the training data, $\mathbb { R } ^ { n }$ . The idealized algorithm can be shown to converge and to minimize the Jensen-Shannon divergence between the data generating distribution and the distribution parameterized by $G$ . + +Goodfellow et al. (2014a) found that in practice, minimizing (1) with respect to the parameters of $G$ proved difficult, and elected instead to optimize an alternate objective, + +$$ +\underset { G } { \arg \operatorname* { m a x } } \mathbb { E } _ { \mathbf { z } \sim p ( \mathbf { z } ) } \log D \left( G ( z ) \right) +$$ + +at the same time as $D$ is optimized as above. $\log D ( G ( \mathbf { z } ) )$ yields more favourably scaled persample gradients for $G$ when $D$ confidently identifies a sample as counterfeit, avoiding the vanishing gradients arising in that case with the $- \log ( 1 - D ( G ( \mathbf { z } ) ) )$ objective. + +Subsequent authors have investigated applications and extensions of GANs; for a review of this body of literature, see Warde-Farley $\&$ Goodfellow (2016). Of particular note for our purposes is Radford et al. (2015), who provide a set of general guidelines for the successful training of generative adversarial networks, and Salimans et al. (2016), who build upon these techniques with a number of useful heuristics and explore a variant in which the discriminator $D$ is trained to correctly classify labeled training data, resulting in gradients with respect to the discriminator evidently containing a great deal of information relevant to generating “object-like” samples. + +# 2.2 CHALLENGES AND LIMITATIONS OF GANS + +While Goodfellow et al. (2014a) provides a theoretical basis for the GAN criterion, the theory relies on certain assumptions that are not satisfied in practice. Proofs demonstrate convergence of the GAN criterion in the unconstrained space of arbitrary functions; in practice, finitely parameterized families of functions such as neural networks are employed. As a consequence, the “inner loop” of the idealized algorithm – maximizing (1) with respect to (the parameters of) $D$ , is infeasible to perform exactly, and in practice only one or a few gradient steps stand in for this maximization. This results in a de facto criterion for $G$ which minimizes a lower bound on the correct objective (Goodfellow, 2014). + +A commonly observed failure mode is that of full or partial collapse, where $G$ maps a large fraction of probable regions under $p ( \mathbf { z } )$ to only a few, low-volume regions of $\mathbb { R } ^ { n }$ ; in the case of images, this manifests as the appearance of many near-duplicate images in independent draws from $G$ , as well as a lower diversity of samples and modes than what is observed in the dataset. As $G$ and $D$ are typically trained via mini-batch stochastic gradient descent, several authors have proposed heuristics that penalize such duplication within each mini-batch (Salimans et al., 2016; Zhao et al., 2016). + +GANs represent a departure from traditional probabilistic models based on maximum likelihood and its approximations in that they parameterize a sampler directly and lack a closed form for the likelihood. This makes objective, quantitative evaluation difficult. While previous results in the literature have reported approximate likelihoods based on Parzen window estimates, Theis et al. (2015) has convincingly argued that these estimates can be quite misleading for high-dimensional data. In this work, we adopt the Inception score proposed by Salimans et al. (2016), which uses a reference Inception convolutional neural network (Szegedy et al., 2015) to compute + +$$ +I ( \{ \mathbf { x } \} _ { 1 } ^ { N } ) = \exp { ( \mathbb { E } \left[ D _ { K L } ( p ( y | \mathbf { x } ) \| p ( y ) \right] ) ) } +$$ + +where $p ( y | \mathbf { x } )$ is provided by the output of the Inception network and $\begin{array} { r } { p ( y ) = \int _ { \mathbf { x } } p ( \mathbf { x } ) p ( y | \mathbf { x } ) d \mathbf { x } \approx } \end{array}$ $\begin{array} { r } { \frac { 1 } { N } \sum p ( y | \mathbf { x } _ { i } ) } \end{array}$ . Note that this score can be made larger by a low-entropy per-sample posterior (i.e. the Inception network classifies a given sample with greater certainty) as well as a higher entropy aggregate posterior (i.e. the Inception network identifies a wide variety of classes among the samples presented to it). Salimans et al. (2016) found this score correlated well with human evaluations of samplers trained on CIFAR-10; we therefore employ the Inception score here as a quantitative measure of visual fidelity of the samples, following the previous work’s protocol of evaluating the average Inception score over 10 independent groups of 5,000 samples each. Error estimates correspond to standard deviations, in keeping with previously reported results. + +# 3 IMPROVING UNSUPERVISED GAN TRAINING ON DIVERSE DATASETS + +In this work, we focus on the apparent difficulty of training GANs to produce “object-like” samples when trained on diverse collections of natural images. While Salimans et al. (2016) make progress on this problem by employing labeled data and training the discriminator, here we aim to make progress on the unsupervised case. Nevertheless, our methods would be readily applicable to supervised, semi-supervised or (with slight modifications) conditional setting. + +We begin from the slightly subtle observation that in realistic manifestations of the GAN training procedure, the discriminator’s (negative) gradient with respect to a sample points in a direction of (infinitesimal) local improvement with respect to the discriminator’s estimate of the sample being data; it does not necessarily point in the direction of a draw from the data distribution. Indeed, the literature is replete with instances of gradient descent with respect to the input of a classification model, particularly wide-domain natural image classifiers, producing ghostly approximations to a particular class exemplar (Le et al., 2012; Erhan et al., 2009; Yosinski et al., 2015) when this procedure is carried out without additional guidance, to say nothing of the problems posed by adversarial examples (Szegedy et al., 2013; Goodfellow et al., 2014b) and fooling examples (Nguyen et al., 2015). + +While the gradient of the loss function defined by the discriminator may be a source of information mostly relevant to very local improvements, the discriminator itself is a potentially valuable source of compact descriptors of the training data. Many authors have noted the remarkable versatility of high-level features learned by convolutional networks (Donahue et al., 2014; Yosinski et al., 2014) and the degree to which high-level semantics can be reconstructed from even the deepest layers of a network (Dosovitskiy & Brox, 2016). Although non-stationary, the distribution of the highlevel activations of the discriminator when evaluated on data is ripe for exploitation as an additional source of knowledge about salient aspects of the data distribution. + +We propose in this work to track this distribution with a denoising auto-encoder $r ( \cdot )$ trained on the discriminator’s hidden states when evaluated on training data. Alain & Bengio (2014) showed that a denoising auto-encoder trained on data from a distribution $q ( \mathbf { h } )$ estimates via $r ( \mathbf { h } ) - \mathbf { h }$ the gradient of the true log-dtransformed training data $\frac { \partial \log q ( \mathbf { h } ) } { \partial \mathbf { h } }$ ce, if, then isingwith er on theindicates $\mathbf { h } = \Phi ( \mathbf { x } )$ $\mathbf { x } \sim \mathcal { D }$ $r ( \Phi ( \mathbf { x } ^ { \prime } ) ) - \Phi ( \mathbf { x } ^ { \prime } )$ $\mathbf { x } ^ { \prime } = G ( \mathbf { z } )$ in which direction $\mathbf { x } ^ { \prime }$ should be changed in order to make $\mathbf { h } = \Phi ( \mathbf { x } ^ { \prime } )$ more like those features seen with the data. Minimizing $| | r ( \Phi ( \mathbf { x } ^ { \prime } ) ) - \Phi ( \mathbf { x } ^ { \prime } ) | | ^ { 2 }$ with respect to $\mathbf { x } ^ { \prime }$ would thus push $\mathbf { x } ^ { \prime }$ towards higher probability configurations according to the data distribution in the feature space $\Phi ( \mathbf { x } )$ . We thus evaluate the discriminator features $\Phi ( \mathbf { x } )$ , and the denoising auto-encoder, on samples from the generator, and treat the denoiser’s output reconstruction as a fixed target for the generator. We refer to this procedure as denoising feature matching, and employ it as a learning signal for the generator in addition to the traditional GAN generator objective. + +Formally, let $G$ be the generator parameterized by $\theta _ { G }$ , and $D = d { \circ } \Phi$ be our discriminator composing feature extractor $\Phi ( \cdot ) \ : \mathbb { R } ^ { n } \ \bar { \mathbb { R } } ^ { k }$ and a classifier $d ( \cdot ) : \mathbb { R } ^ { k } \to [ 0 , 1 ]$ . Let $C ( \cdot ) : \mathbb { R } ^ { k } \to \mathbb { R } ^ { \bar { k } }$ be a corruption function to be applied at the input of the denoising auto-encoder when it is trained to denoise. The parameters of the discriminator $D$ , comprising the parameters of both $d$ and $\Phi$ , is trained as in Goodfellow et al. (2014a), while the generator is trained according to + +$$ +\underset { \theta _ { G } } { \arg \operatorname* { m i n } } \mathbb { E } _ { \mathbf { z } \sim p ( \mathbf { z } ) } \left[ \lambda _ { \mathrm { d e n o i s e } } \| \Phi ( G ( \mathbf { z } ) ) - r ( \Phi ( G ( \mathbf { z } ) ) ) \| | ^ { 2 } - \lambda _ { \mathrm { a d v } } \log D ( G ( z ) ) \right] +$$ + +where $r ( G ( \mathbf { z } ) )$ is treated as constant with respect to gradient computations. Simultaneously, the denoiser $r ( \cdot )$ is trained according to the objective + +$$ +\underset { \theta _ { r } } { \arg \operatorname* { m i n } } \mathop { { \mathbb { E } } } _ { { \mathbf { x } } \sim { \mathcal { D } } } \| \Phi ( { \mathbf { x } } ) - r ( C ( \Phi ( { \mathbf { x } } ) ) ) \| ^ { 2 } +$$ + +# 3.1 EFFECT OF $\Phi$ + +The theory surrounding denoising auto-encoders applies when estimating a denoising function from a data distribution $p ( v e c x )$ . Here, we propose to estimate the denoising auto-encoder in the space of discriminator features, giving rise to a distribution $q ( \Phi ( \mathbf { x } ) )$ . A natural question is what effect this has on the gradient being backpropagated. This is difficult to analyze in general, as for most choices the mapping $\Phi$ will not be invertible, though it is instructive to examine the invertible case. Assuming an invertible $\Phi : \mathbb { R } ^ { n } \mathbb { R } ^ { n }$ , let $\begin{array} { r } { J = \frac { \partial \Phi ( \mathbf { \bar { x } } ) } { \partial \mathbf { x } } } \end{array}$ be the Jacobian of $\Phi$ , and $q ( \Phi ( \mathbf { x } ) ) = p ( \mathbf { x } ) | J |$ . By the inverse function theorem, $J$ is also invertible (and is in fact the Jacobian of the inverse $\Phi ^ { - 1 }$ ). Applying the chain rule and re-arranging terms, taking advantage of the invertibility of $J$ , we arrive at a straightforward relationship between the score of $q$ and the score of $p$ : + +$$ +\begin{array} { l } { \displaystyle \frac { \partial \log q ( \Phi ( \mathbf { x } ) ) } { \partial \Phi ( \mathbf { x } ) } = \frac { \partial \log p ( \mathbf { \boldsymbol { p } } ( \mathbf { \mathbf { x } } ) \mid J \mid ] } { \partial \Phi ( \mathbf { x } ) } } \\ { \displaystyle ~ = \frac { \partial \log p ( \mathbf { \boldsymbol { x } } ) } { \partial \Phi ( \mathbf { x } ) } + \frac { \partial \log \left| \frac { \partial \Phi ( \mathbf { \boldsymbol { x } } ) } { \partial \mathbf { x } } \right| } { \partial \Phi ( \mathbf { x } ) } } \\ { \displaystyle ~ = \left( \frac { \partial \log p ( \mathbf { \boldsymbol { x } } ) } { \partial \mathbf { x } } + \frac { \partial \log \left| J \right| } { \partial \mathbf { x } } \right) J ^ { - 1 } } \end{array} +$$ + +where + +$$ +{ \frac { \partial \log | J | } { \partial x _ { k } } } = \operatorname { T r } \left( J ^ { - 1 } { \frac { d J } { d x _ { k } } } \right) +$$ + +and $\scriptstyle { \frac { d J } { d x _ { k } } }$ is a matrix of scalar derivatives of elements of $\mathbf { J }$ with respect to $x _ { k }$ . Thus, we see that the gradient backpropagated to the generator in an ideal setting is the gradient of the data distribution $p ( \mathbf { x } )$ along with an additive term which accounts for the changes in the rate of volume expansion/contraction in $\Phi$ locally around $\mathbf { x }$ . In practice, $\Phi$ is not invertible, but the added benefit of the denoiser-targeted gradient appears to reduce underfitting to the modes of $p$ in the generator, irrespective of any distortions $\Phi$ may introduce. + +# 4 RELATED WORK + +Denoising feature matching was originally inspired by feature matching introduced by Salimans et al. (2016) as an alternative training criterion for GAN generators, namely (in our notation) + +$$ +\underset { \theta _ { G } } { \arg \operatorname* { m i n } } \left. \left. \mathbb { E } _ { \mathbf { x } \sim \mathcal { D } } \left[ \Phi ( \mathbf { x } ) \right] - \mathbb { E } _ { \mathbf { z } \sim p ( z ) } \left[ \Phi ( G ( \mathbf { z } ) ) \right] \right. \right. ^ { 2 } +$$ + +Feature matching is equivalent to linear maximum mean discrepancy (Gretton et al., 2006), employing linear first moment matching in the space of discriminator features $\Phi ( \cdot )$ rather than the more familiar kernelized formulation. When performed on features in the penultimate layer, Salimans et al. (2016) found that the feature matching criterion was useful for the purpose of improving results on semi-supervised classification, using classification of samples from the generator as a sophisticated form of data augmentation. Feature matching was, however, less successful at producing samples with high visual fidelity. This is somewhat unsurprising given that the criterion is insensitive to higher-order statistics of the respective feature distributions. Indeed, a degenerate $G$ which deterministically reproduces a single sample $\hat { \mathbf { m } }$ such that $\Phi ( \hat { \mathbf { m } } ) = \mathbb { E } _ { \mathbf { x } \in \mathcal { D } } \Phi ( \mathbf { x } )$ trivially minimizes (10); in practice the joint training dynamics of $D$ and $G$ do not appear to yield such degenerate solutions. + +Rather than aiming to merely reduce linear separability between data and samples in the feature space defined by $\Phi ( \cdot )$ , denoising feature matching selects a more probable (according to the feature distribution implied by the data, as captured by the denoiser) feature space target for each sample produced by $G$ and regresses $G$ towards it. While an early loss of entropy in $G$ could result in the generator locking on to one or a few attractors in the denoiser’s energy landscape, we observe that this does not happen when used in conjunction with the traditional GAN objective, and in fact that the combination of the two objectives is notably robust to the collapses often observed in GAN training, even without taking additional measures to prevent them. + +This work also draws inspiration from Alain & Bengio (2014), which showed that a suitably trained denoiser learns an operator which locally maps a sample towards regions of high probability under the data distribution. They further showed that a suitably trained1 reconstruction function $r ( \cdot )$ behaves such that + +$$ +r ( \mathbf { x } ) - \mathbf { x } \propto \frac { \partial \log p ( \mathbf { x } ) } { \partial \mathbf { x } } +$$ + +That is, $r ( \mathbf { x } ) - \mathbf { x }$ estimates the score of the data generating distribution, up to a multiplicative constant. Our use of denoising auto-encoders necessarily departs from idealized conditions in that the denoiser is estimated online from an ever-changing distribution of features. + +Several approaches to GAN-like models have cast the problem in terms of learning an energy function. Kim & Bengio (2016) extends GANs by modeling the data distribution simultaneously with an energy function parameterized by a deep neural network (playing the role of the discriminator) and the traditional generator, carrying out learning with a learning rule resembling that of the Boltzmann machine (Ackley et al., 1985), where the “negative phase” gradient is estimated from samples from the generator. The energy-based GAN formulation of Zhao et al. (2016) resembles our work in their use of an auto-encoder which is trained to faithfully reconstruct (in our case, a corrupted, function of) the training data. The energy-based GAN replaces the discriminator with an auto-encoder, which is trained to assign low energy $L _ { 2 }$ reconstruction error) to training data and higher energy to samples from $G$ . To discourage generator collapses, a “pull-away term” penalizes the normalized dot product in a feature space defined by the auto-encoder’s internal representation. In this work, we preserve the discriminator, trained in the usual discriminative fashion, and in fact preserve the traditional generator loss, instead augmenting it with a source of complementary information provided by targets obtained from the denoiser. The energy-based GAN can be viewed as training the generator to seek fixed points of the autoencoding function (i.e. by backpropagating through the decoder and encoder in order to decrease reconstruction error), whereas we treat the output of $r ( \cdot )$ as constant with respect to the optimization as in Lee et al. (2015). That is to say, rather than using backpropagation to steer the dynamics of the autoencoder, we instead employ our denoising autoencoder to augment the gradient information obtained by ordinary backpropagation. + +Closest to our own approach, concurrent work on model-based super-resolution by Sønderby et al. (2016) trains a denoising auto-encoder on high-resolution ground truth and evaluates it on synthesized super-resolution images, using the difference between the original synthesized image and the denoiser’s output as an additional training signal for refining the output of the super-resolution network. Both Sønderby et al. (2016) and our own work are motivated by the results of Alain & Bengio (2014) discussed above. Aside from addressing a different application area, our denoiser is learned on-the-fly from a high-level feature representation which is itself learned. + +# 5 EXPERIMENTS + +We evaluate denoising feature matching on learning synthesis models from three datasets of increasing diversity and size: CIFAR-10, STL-10, and ImageNet. Although several authors have described GAN-based image synthesis models operating at $1 2 8 \times 1 2 8$ (Salimans et al., 2016; Zhao et al., 2016) and $2 5 6 \times 2 5 6$ (Zhao et al., 2016) resolution, we carry out our investigations at relatively low resolutions, both for computational ease and because we believe that the problem of unconditional modeling of diverse image collections is not well solved even at low resolutions; making progress in this regime is likely to yield insights that apply to the higher-resolution case. + +In all experiments, we employ isotropic Gaussian corruption noise with $\sigma = 1$ . Although we experimented with annealing $\sigma$ towards 0 (as also performed in Sønderby et al. (2016)), an annealing schedule which consistently outperformed fixed noise remained elusive. We experimented with convolutional denoisers, but our best results to date were obtained with deep, fully-connected denoisers using the ReLU nonlinearity on the penultimate layer of the discriminator. The number of hidden units was fixed to the same value in all denoiser layers, and the procedure is apparently robust to this hyperparameter choice, as long as it is greater than or equal to the input dimensionality. + +Our generator and discriminator architectures follow the methods outlined in Radford et al. (2015). Accordingly, batch normalization (Ioffe & Szegedy, 2015) was used in the generator and discriminator in the same manner as Radford et al. (2015), and in all layers of the denoiser except the output layer. In particular, as in Radford et al. (2015), we separately batch normalize data and generator samples for the discriminator and denoiser with respect to each source’s statistics. We calculate updates with respect to all losses with the parameters of all three networks fixed, and update all parameters simultaneously. + +All networks were trained with the Adam optimizer Kingma & Ba (2014) with a learning rate of $1 0 ^ { - 4 }$ and $\beta _ { 1 } = 0 . 5$ . The Adam optimizer is scale invariant, and so it suffices to e.g. tune $\lambda _ { \mathrm { d e n o i s e } }$ and fix $\lambda _ { \mathrm { a d v } }$ to 1. In our experiments, we set $\lambda _ { d e n o i s e }$ to $0 . 0 3 / n _ { h }$ , where $n _ { h }$ is the number of discriminator hidden units fed as input to the denoiser; this division decouples the scale of the first term of (4) from the dimensionality of the representation used, reducing the need to adjust this hyperparameter simply because we altered the architecture of the discriminator. + +# 5.1 CIFAR-10 + +CIFAR-10 (Krizhevsky & Hinton, 2009) is a small, well-studied dataset consisting of $5 0 , 0 0 0 3 2 \times 3 2$ pixel RGB training images and 10,000 test images from 10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, and truck. + +Samples from our model trained on CIFAR-10 are shown in Figure 1, and Inception scores for several methods, including those reported in Salimans et al. (2016) and scores computed from samples generated from a model presented in Dumoulin et al. (2016), are presented in Table 1. We achieve a mean Inception score of 7.72, falling slightly short of Salimans et al. (2016), which employed a supervised discriminator network (the same work reports a score of $4 . 3 6 \pm . 0 4$ when labels are omitted from their training procedure). Qualitatively, the samples include recognizable cars, boats and various animals. The best performing generator network consisted of the $3 2 \times 3 2$ ImageNet architecture from Radford et al. (2015) with half the number of parameters at each layer, and less than $40 \%$ of the parameters of the CIFAR-10 generator presented in Salimans et al. (2016). + +$$ +\frac { \mathrm { R e a l ~ d a t a ^ { \star } ~ } } { 1 1 . 2 4 \pm . 1 2 } \left| \begin{array} { c } { { \mathrm { S e m i - s u p e r v i s e d } } } \\ { { \mathrm { I m p r o v e d ~ G A N ~ ( S a l i m a n s ~ } e t a l ) ^ { \star } } } \\ { { \mathrm { 8 . 0 9 \pm . 0 7 } } } \end{array} \right| \left| \begin{array} { c } { { \mathrm { U n s u p e r v i s e d } } } \\ { { \mathrm { A L I ~ ( D u m o u l i n ~ } e t a l ) ^ { \dagger } } } \\ { { 5 . 3 4 \pm 0 . 0 5 } } \end{array} \right| \left. \begin{array} { c } { { \mathrm { 0 u r s ~ } } } \\ { { \mathrm { 7 . 7 2 \pm 0 . 1 3 } } } \end{array} \right| +$$ + +Table 1: Inception scores for models of CIFAR-10. ? as reported in Salimans et al. (2016); semisupervised † computed from samples drawn using author-provided model parameters and implementation. + +![](images/2920d907092d5dbf8c4c4f921094af220f27cdd9f81d1d9481a0c8268052aabc.jpg) +Figure 1: Samples generated from a model trained with denoising feature matching on CIFAR10. + +# 5.2 STL-10 + +STL-10 (Coates et al., 2011) is a dataset consisting of a small labeled set and larger (100,000) unlabeled set of $9 6 \times 9 6$ RGB images. The unlabeled set is a subset of ImageNet that is more diverse than CIFAR-10 (or the labeled set of STL-10), but less diverse than full ImageNet. We downsample by a factor of 2 on each dimension and train our networks at $4 8 \times 4 8$ . Inception scores for our model and a baseline, consisting of the same architecture trained without denoising feature matching (both trained for 50 epochs), are shown in Table 2. Samples are displayed in Figure 2. + +Table 2: Inception scores for models of the unlabeled set of STL-10. + +
Real dataOursGANBaseline
26.08±.268.51 ± 0.137.84 ± .07
+ +# 5.3 IMAGENET + +The ImageNet database (Russakovsky et al., 2014) is a large-scale database of natural images. We train on the designated training set of the most widely used release, the 2012 ImageNet Large Scale Visual Recognition Challenge (ILSVRC2012), consisting of a highly unbalanced split among 1,000 object classes. We preprocess the dataset as rescaled central crops following the procedure of Krizhevsky et al. (2012), except at $3 2 \times 3 2$ resolution to facilitate comparison with Radford et al. (2015). + +ImageNet poses a particular challenge for unsupervised GANs due to its high level of diversity and class skew. With a generator and discriminator architecture identical to that used for the same dataset in Radford et al. (2015), we achieve a higher Inception score using denoising feature matching, using denoiser with 10 hidden layers of 2,048 rectified linear units each. Both fall far short of the score assigned to real data at this resolution; there is still plenty of room for improvement. Samples are displayed in Figure 3. + +# 6 DISCUSSION AND FUTURE DIRECTIONS + +We have shown that training a denoising model on high-level discriminator activations in a GAN, and using the denoiser to propose high-level feature targets for the generator, can usefully improve + +![](images/29920cf699d2fec30f17d655c1dfae487045c1563aaf102ee3b2620d354b1c93.jpg) +Figure 2: Samples from a model trained with denoising feature matching on the unlabeled portion of the STL-10 dataset. + +![](images/be1a200c0eb6f3b8c857de32f4dd2d30763756f36937a68393656c0630cafdd7.jpg) +Figure 3: Samples from our model of ILSVRC2012 at $3 2 \times 3 2$ resolution. + +
Real dataRadford et al*Ours
25.78 ± .478.83 ± 0.149.18± .13
+ +Table 3: Inception scores for models of ILSVRC 2012 at $3 2 \times 3 2$ resolution. ? computed from samples drawn using author-provided model parameters and implementation. + +GAN image models. Higher Inception scores, as well as visual inspection, suggest that the procedure captures class-specific features of the training data in a manner superior to the original adversarial objective alone. That being said, we do not believe we are yet making optimal use of the paradigm. The non-stationarity of the feature distribution on which the denoiser is trained could be limiting the ability of the denoiser to obtain a good fit, and the information backpropagated to the generator is always slightly stale. Steps to reduce this non-stationarity may be fruitful; we experimented briefly with historical averaging as explored in Salimans et al. (2016) but did not observe a clear benefit thus far. Structured denoisers, including denoisers that learn an energy function for multiple hidden layers at once, could conceivably aid in obtaining a better fit. Learning a partially stochastic transition operator rather than a deterministic denoiser could conceivably capture interesting multimodalities that are “blurred” by a unimodal denoising function. + +Our method is orthogonal and could conceivably be used in combination with several other GAN extensions. For example, methods incorporating an encoder component (Donahue et al., 2016; Dumoulin et al., 2016), various existing conditional architectures (Mirza & Osindero, 2014; Denton et al., 2015; Reed et al., 2016), or the semi-supervised variant employed in Salimans et al. (2016), could all be trained with an additional denoising feature matching objective. + +We have proposed a useful heuristic, but a better theoretical grounding regarding how GANs are trained in practice is a necessary direction for future work, including grounded criteria for assessing mode coverage and mass misassignment, and principled criteria for assessing convergence or performing early stopping. + +# ACKNOWLEDGMENTS + +We thank Ian Goodfellow, Laurent Dinh, Yaroslav Ganin and Kyle Kastner for helpful discussions. We thank Vincent Dumoulin and Ishmael Belghazi for making available code and model parameters used in comparison to ALI, as well as Alec Radford for making available the code and model parameters for his ImageNet model. We would like to thank Antonia Creswell and Hiroyuki Yamazaki for pointing out an error in the initial version of this manuscript, and anonymous reviewers for valuable feedback. We thank the University of Montreal and Compute Canada for the computational resources used for this investigation, as well as the authors of Theano (Al-Rfou et al., 2016), Blocks and Fuel (van Merrienboer et al., 2015). We thank CIFAR, NSERC, Google, Samsung and Canada ¨ Research Chairs for funding. + +# REFERENCES + +David H Ackley, Geoffrey E Hinton, and Terrence J Sejnowski. A learning algorithm for boltzmann machines. Cognitive science, 9(1):147–169, 1985. + +Rami Al-Rfou, Guillaume Alain, Amjad Almahairi, and et al. Theano: A python framework for fast computation of mathematical expressions. CoRR, abs/1605.02688, 2016. URL http:// arxiv.org/abs/1605.02688. + +Guillaume Alain and Yoshua Bengio. What regularized auto-encoders learn from the data-generating distribution. Journal of Machine Learning Research, 15(1):3563–3593, 2014. + +A. Coates, H. Lee, and A. Y. Ng. An analysis of single-layer networks in unsupervised feature learning. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics (AISTATS 2011), 2011. + +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, pp. 1486–1494, 2015. + +Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor Darrell. Decaf: A deep convolutional activation feature for generic visual recognition. In ICML, pp. 647–655, 2014. + +Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. ¨ arXiv preprint arXiv:1605.09782, 2016. + +Alexey Dosovitskiy and Thomas Brox. Inverting visual representations with convolutional networks. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2016. + +Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704, 2016. + +Dumitru Erhan, Yoshua Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of a deep network. University of Montreal, 1341, 2009. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Z. Ghahramani, M. Welling, C. Cortes, N. D. Lawrence, and K. Q. Weinberger (eds.), Advances in Neural Information Processing Systems 27, pp. 2672–2680. Curran Associates, Inc., 2014a. URL http://papers. nips.cc/paper/5423-generative-adversarial-nets.pdf. + +Ian J Goodfellow. On distinguishability criteria for estimating generative models. arXiv preprint arXiv:1412.6515, 2014. + +Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572, 2014b. + +Arthur Gretton, Karsten M Borgwardt, Malte Rasch, Bernhard Scholkopf, and Alex J Smola. A ker- ¨ nel method for the two-sample-problem. In Advances in neural information processing systems, pp. 513–520, 2006. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. + +Taesup Kim and Yoshua Bengio. Deep directed generative models with energy-based probability estimation. arXiv preprint arXiv:1606.03439, 2016. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009. + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in neural information processing systems, pp. 1097–1105, 2012. + +Quoc Le, Marc’Aurelio Ranzato, Rajat Monga, Matthieu Devin, Greg Corrado, Kai Chen, Jeff Dean, and Andrew Ng. Building high-level features using large scale unsupervised learning. In ICML’2012, 2012. + +Dong-Hyun Lee, Saizheng Zhang, Asja Fischer, and Yoshua Bengio. Difference target propagation. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 498–515. Springer, 2015. + +Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In Proceedings of International Conference on Computer Vision (ICCV), 2015. + +Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets. arXiv preprint arXiv:1411.1784, 2014. + +Anh Nguyen, Jason Yosinski, and Jeff Clune. Deep neural networks are easily fooled: High confidence predictions for unrecognizable images. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 427–436. IEEE, 2015. + +Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015. + +Scott E. Reed, Zeynep Akata, Xinchen Yan, Lajanugen Logeswaran, Bernt Schiele, and Honglak Lee. Generative adversarial text to image synthesis. CoRR, abs/1605.05396, 2016. URL http: //arxiv.org/abs/1605.05396. + +Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei. ImageNet Large Scale Visual Recognition Challenge, 2014. + +Tim Salimans, Ian J. Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. CoRR, abs/1606.03498, 2016. URL http://arxiv. org/abs/1606.03498. + +Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´ map inference for image super-resolution. arXiv preprint arXiv:1610.04490, 2016. + +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. + +Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1–9, 2015. + +Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨ models. arXiv preprint arXiv:1511.01844, 2015. + +Bart van Merrienboer, Dzmitry Bahdanau, Vincent Dumoulin, Dmitriy Serdyuk, David Warde-¨ Farley, Jan Chorowski, and Yoshua Bengio. Blocks and fuel: Frameworks for deep learning. CoRR, abs/1506.00619, 2015. URL http://arxiv.org/abs/1506.00619. + +D Warde-Farley and I Goodfellow. Adversarial perturbations of deep neural networks. In Tamir Hazan, George Papandreou, and Daniel Tarlow (eds.), Perturbation, Optimization and Statistics, chapter 11, pp. 311–339. MIT Press, Cambridge, 2016. + +Jason Yosinski, Jeff Clune, Yoshua Bengio, and Hod Lipson. How transferable are features in deep neural networks? In Advances in neural information processing systems, pp. 3320–3328, 2014. + +Jason Yosinski, Jeff Clune, Anh Nguyen, Thomas Fuchs, and Hod Lipson. Understanding neural networks through deep visualization. arXiv preprint arXiv:1506.06579, 2015. + +Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. LSUN: construction of a largescale image dataset using deep learning with humans in the loop. CoRR, abs/1506.03365, 2015. URL http://arxiv.org/abs/1506.03365. + +Junbo Zhao, Michael Mathieu, and Yann LeCun. Energy-based generative adversarial network. arXiv preprint arXiv:1609.03126, 2016. \ No newline at end of file diff --git a/parse/train/S1X7nhsxl/S1X7nhsxl_content_list.json b/parse/train/S1X7nhsxl/S1X7nhsxl_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..24f245ba53a11526ed9b180e069a6c8a456df937 --- /dev/null +++ b/parse/train/S1X7nhsxl/S1X7nhsxl_content_list.json @@ -0,0 +1,1354 @@ +[ + { + "type": "text", + "text": "IMPROVING GENERATIVE ADVERSARIAL NETWORKS WITH DENOISING FEATURE MATCHING ", + "text_level": 1, + "bbox": [ + 174, + 98, + 820, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "David Warde-Farley & Yoshua Bengio? \nMontreal Institute for Learning Algorithms, $\\star$ CIFAR Senior Fellow \nUniversite de Montr´ eal´ \nMontreal, Quebec, Canada \n{david.warde-farley,yoshua.bengio}@umontreal.ca ", + "bbox": [ + 184, + 170, + 638, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 276, + 544, + 291 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose an augmented training procedure for generative adversarial networks designed to address shortcomings of the original by directing the generator towards probable configurations of abstract discriminator features. We estimate and track the distribution of these features, as computed from data, with a denoising auto-encoder, and use it to propose high-level targets for the generator. We combine this new loss with the original and evaluate the hybrid criterion on the task of unsupervised image synthesis from datasets comprising a diverse set of visual categories, noting a qualitative and quantitative improvement in the “objectness” of the resulting samples. ", + "bbox": [ + 233, + 309, + 764, + 435 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 465, + 336, + 482 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Generative adversarial networks (Goodfellow et al., 2014a) (GANs) have become well known for their strength at realistic image synthesis. The objective function for the generative network is an implicit function of a learned discriminator network, estimated in parallel with the generator, which aims to tell apart real data from synthesized. Ideally, the discriminator learns to capture distinguishing features of real data, which the generator learns to imitate, and the process iterates until real data and synthesized data are indistinguishable. ", + "bbox": [ + 173, + 498, + 825, + 583 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In practice, GANs are well known for being quite challenging to train effectively. The relative model capacities of the generator and discriminator must be carefully balanced in order for the generator to effectively learn. Compounding the problem is the lack of an unambiguous and computable convergence criterion. Nevertheless, particularly when trained on image collections from relatively narrow domains such as bedroom scenes (Yu et al., 2015) and human faces (Liu et al., 2015), GANs have been shown to produce very compelling results. ", + "bbox": [ + 174, + 589, + 825, + 674 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "For diverse image collections comprising a wider variety of the visual world, the results have generally been less impressive. For example, samples from models trained on ImageNet (Russakovsky et al., 2014) roughly match the local and global statistics of natural images but yield few recognizable objects. Recent work (Salimans et al., 2016) has sought to address this problem by training the discriminator in a semi-supervised fashion, granting the discriminator’s internal representations knowledge of the class structure of (some fraction of) the training data it is presented. This technique markedly increases sample quality, but is unsatisfying from the perspective of GANs as a tool for unsupervised learning. ", + "bbox": [ + 173, + 680, + 825, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose to augment the generator’s training criterion with a second training objective which guides the generator towards samples more like those in the training set by explicitly modeling the data density in addition to the adversarial discriminator. Rather than deploy a second computationally expensive convolutional network for this task, the additional objective is computed in the space of features learned by the discriminator. In that space, we train a denoising auto-encoder, a family of models which is known to estimate the energy gradient of the data on which it is trained. We evaluate the denoising auto-encoder on samples drawn from the generator, and use the “denoised” features as targets – nearby feature configurations which are more likely than those of the generated sample, according to the distribution estimated by the denoiser. ", + "bbox": [ + 173, + 799, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We show that this yields generators which consistently produce recognizable objects on the CIFAR10 dataset without the use of label information as in Salimans et al. (2016). The criterion appears to improve stability and possesses a degree of natural robustness to the well known “collapse” pathology. We further investigate the criterion’s performance on two larger and more diverse collections of images, and validate our qualitative observations quantitatively with the Inception score proposed in Salimans et al. (2016). ", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 176, + 209, + 326, + 226 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 GENERATIVE ADVERSARIAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 242, + 493, + 257 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The generative adversarial networks paradigm (Goodfellow et al., 2014a) estimates generative samplers by means of a training procedure which pits a generator $G$ against a discriminator $D$ . $D$ is trained to tell apart training examples from samples produced by $G$ , while $G$ is trained to increase the probability of its samples being incorrectly classified as data. In the original formulation, the training procedure defines a continuous minimax game ", + "bbox": [ + 174, + 268, + 825, + 339 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/4bae875f072788494d334e95f81a93789efac2bd43a37360555bc3df3b0f4562.jpg", + "text": "$$\n\\underset { G } { \\arg \\operatorname* { m i n } } \\ \\underset { D } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\log D ( \\mathbf { x } ) + \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log \\left( 1 - D \\left( G ( \\mathbf { z } ) \\right) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 281, + 347, + 715, + 373 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $\\mathcal { D }$ is a data distribution on $\\mathbb { R } ^ { n }$ , $D$ is a function that maps $\\mathbb { R } ^ { n }$ to the unit interval, and $G$ is a function that maps a noise vector $\\mathbf { z } \\in \\mathbb { R } ^ { m }$ , drawn from a simple distribution $p ( \\mathbf { z } )$ , to the ambient space of the training data, $\\mathbb { R } ^ { n }$ . The idealized algorithm can be shown to converge and to minimize the Jensen-Shannon divergence between the data generating distribution and the distribution parameterized by $G$ . ", + "bbox": [ + 174, + 381, + 825, + 452 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Goodfellow et al. (2014a) found that in practice, minimizing (1) with respect to the parameters of $G$ proved difficult, and elected instead to optimize an alternate objective, ", + "bbox": [ + 176, + 458, + 820, + 486 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/9d439296646e30dd2efcc2fbc50bc1a5ca743a51ef1bd8486d61cb34072d5669.jpg", + "text": "$$\n\\underset { G } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log D \\left( G ( z ) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 395, + 494, + 601, + 520 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "at the same time as $D$ is optimized as above. $\\log D ( G ( \\mathbf { z } ) )$ yields more favourably scaled persample gradients for $G$ when $D$ confidently identifies a sample as counterfeit, avoiding the vanishing gradients arising in that case with the $- \\log ( 1 - D ( G ( \\mathbf { z } ) ) )$ objective. ", + "bbox": [ + 174, + 529, + 825, + 571 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Subsequent authors have investigated applications and extensions of GANs; for a review of this body of literature, see Warde-Farley $\\&$ Goodfellow (2016). Of particular note for our purposes is Radford et al. (2015), who provide a set of general guidelines for the successful training of generative adversarial networks, and Salimans et al. (2016), who build upon these techniques with a number of useful heuristics and explore a variant in which the discriminator $D$ is trained to correctly classify labeled training data, resulting in gradients with respect to the discriminator evidently containing a great deal of information relevant to generating “object-like” samples. ", + "bbox": [ + 173, + 578, + 825, + 676 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 CHALLENGES AND LIMITATIONS OF GANS ", + "text_level": 1, + "bbox": [ + 174, + 695, + 514, + 709 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "While Goodfellow et al. (2014a) provides a theoretical basis for the GAN criterion, the theory relies on certain assumptions that are not satisfied in practice. Proofs demonstrate convergence of the GAN criterion in the unconstrained space of arbitrary functions; in practice, finitely parameterized families of functions such as neural networks are employed. As a consequence, the “inner loop” of the idealized algorithm – maximizing (1) with respect to (the parameters of) $D$ , is infeasible to perform exactly, and in practice only one or a few gradient steps stand in for this maximization. This results in a de facto criterion for $G$ which minimizes a lower bound on the correct objective (Goodfellow, 2014). ", + "bbox": [ + 173, + 720, + 825, + 833 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A commonly observed failure mode is that of full or partial collapse, where $G$ maps a large fraction of probable regions under $p ( \\mathbf { z } )$ to only a few, low-volume regions of $\\mathbb { R } ^ { n }$ ; in the case of images, this manifests as the appearance of many near-duplicate images in independent draws from $G$ , as well as a lower diversity of samples and modes than what is observed in the dataset. As $G$ and $D$ are typically trained via mini-batch stochastic gradient descent, several authors have proposed heuristics that penalize such duplication within each mini-batch (Salimans et al., 2016; Zhao et al., 2016). ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "GANs represent a departure from traditional probabilistic models based on maximum likelihood and its approximations in that they parameterize a sampler directly and lack a closed form for the likelihood. This makes objective, quantitative evaluation difficult. While previous results in the literature have reported approximate likelihoods based on Parzen window estimates, Theis et al. (2015) has convincingly argued that these estimates can be quite misleading for high-dimensional data. In this work, we adopt the Inception score proposed by Salimans et al. (2016), which uses a reference Inception convolutional neural network (Szegedy et al., 2015) to compute ", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ee40ce6c4f641053150c9044c4c60954540ba3c3751f8800cd2121b953dddd2c.jpg", + "text": "$$\nI ( \\{ \\mathbf { x } \\} _ { 1 } ^ { N } ) = \\exp { ( \\mathbb { E } \\left[ D _ { K L } ( p ( y | \\mathbf { x } ) \\| p ( y ) \\right] ) ) }\n$$", + "text_format": "latex", + "bbox": [ + 359, + 207, + 637, + 227 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $p ( y | \\mathbf { x } )$ is provided by the output of the Inception network and $\\begin{array} { r } { p ( y ) = \\int _ { \\mathbf { x } } p ( \\mathbf { x } ) p ( y | \\mathbf { x } ) d \\mathbf { x } \\approx } \\end{array}$ $\\begin{array} { r } { \\frac { 1 } { N } \\sum p ( y | \\mathbf { x } _ { i } ) } \\end{array}$ . Note that this score can be made larger by a low-entropy per-sample posterior (i.e. the Inception network classifies a given sample with greater certainty) as well as a higher entropy aggregate posterior (i.e. the Inception network identifies a wide variety of classes among the samples presented to it). Salimans et al. (2016) found this score correlated well with human evaluations of samplers trained on CIFAR-10; we therefore employ the Inception score here as a quantitative measure of visual fidelity of the samples, following the previous work’s protocol of evaluating the average Inception score over 10 independent groups of 5,000 samples each. Error estimates correspond to standard deviations, in keeping with previously reported results. ", + "bbox": [ + 174, + 233, + 825, + 362 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 IMPROVING UNSUPERVISED GAN TRAINING ON DIVERSE DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 381, + 782, + 397 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this work, we focus on the apparent difficulty of training GANs to produce “object-like” samples when trained on diverse collections of natural images. While Salimans et al. (2016) make progress on this problem by employing labeled data and training the discriminator, here we aim to make progress on the unsupervised case. Nevertheless, our methods would be readily applicable to supervised, semi-supervised or (with slight modifications) conditional setting. ", + "bbox": [ + 174, + 412, + 825, + 483 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We begin from the slightly subtle observation that in realistic manifestations of the GAN training procedure, the discriminator’s (negative) gradient with respect to a sample points in a direction of (infinitesimal) local improvement with respect to the discriminator’s estimate of the sample being data; it does not necessarily point in the direction of a draw from the data distribution. Indeed, the literature is replete with instances of gradient descent with respect to the input of a classification model, particularly wide-domain natural image classifiers, producing ghostly approximations to a particular class exemplar (Le et al., 2012; Erhan et al., 2009; Yosinski et al., 2015) when this procedure is carried out without additional guidance, to say nothing of the problems posed by adversarial examples (Szegedy et al., 2013; Goodfellow et al., 2014b) and fooling examples (Nguyen et al., 2015). ", + "bbox": [ + 174, + 489, + 825, + 628 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "While the gradient of the loss function defined by the discriminator may be a source of information mostly relevant to very local improvements, the discriminator itself is a potentially valuable source of compact descriptors of the training data. Many authors have noted the remarkable versatility of high-level features learned by convolutional networks (Donahue et al., 2014; Yosinski et al., 2014) and the degree to which high-level semantics can be reconstructed from even the deepest layers of a network (Dosovitskiy & Brox, 2016). Although non-stationary, the distribution of the highlevel activations of the discriminator when evaluated on data is ripe for exploitation as an additional source of knowledge about salient aspects of the data distribution. ", + "bbox": [ + 173, + 635, + 825, + 747 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We propose in this work to track this distribution with a denoising auto-encoder $r ( \\cdot )$ trained on the discriminator’s hidden states when evaluated on training data. Alain & Bengio (2014) showed that a denoising auto-encoder trained on data from a distribution $q ( \\mathbf { h } )$ estimates via $r ( \\mathbf { h } ) - \\mathbf { h }$ the gradient of the true log-dtransformed training data $\\frac { \\partial \\log q ( \\mathbf { h } ) } { \\partial \\mathbf { h } }$ ce, if, then isingwith er on theindicates $\\mathbf { h } = \\Phi ( \\mathbf { x } )$ $\\mathbf { x } \\sim \\mathcal { D }$ $r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } )$ $\\mathbf { x } ^ { \\prime } = G ( \\mathbf { z } )$ in which direction $\\mathbf { x } ^ { \\prime }$ should be changed in order to make $\\mathbf { h } = \\Phi ( \\mathbf { x } ^ { \\prime } )$ more like those features seen with the data. Minimizing $| | r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } ) | | ^ { 2 }$ with respect to $\\mathbf { x } ^ { \\prime }$ would thus push $\\mathbf { x } ^ { \\prime }$ towards higher probability configurations according to the data distribution in the feature space $\\Phi ( \\mathbf { x } )$ . We thus evaluate the discriminator features $\\Phi ( \\mathbf { x } )$ , and the denoising auto-encoder, on samples from the generator, and treat the denoiser’s output reconstruction as a fixed target for the generator. We refer to this procedure as denoising feature matching, and employ it as a learning signal for the generator in addition to the traditional GAN generator objective. ", + "bbox": [ + 173, + 753, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Formally, let $G$ be the generator parameterized by $\\theta _ { G }$ , and $D = d { \\circ } \\Phi$ be our discriminator composing feature extractor $\\Phi ( \\cdot ) \\ : \\mathbb { R } ^ { n } \\ \\bar { \\mathbb { R } } ^ { k }$ and a classifier $d ( \\cdot ) : \\mathbb { R } ^ { k } \\to [ 0 , 1 ]$ . Let $C ( \\cdot ) : \\mathbb { R } ^ { k } \\to \\mathbb { R } ^ { \\bar { k } }$ be a corruption function to be applied at the input of the denoising auto-encoder when it is trained to denoise. The parameters of the discriminator $D$ , comprising the parameters of both $d$ and $\\Phi$ , is trained as in Goodfellow et al. (2014a), while the generator is trained according to ", + "bbox": [ + 173, + 102, + 825, + 174 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9fb33ca769730051bdce5ac575ddc010ceaf5f6af105d6e45b004e40d243d7f9.jpg", + "text": "$$\n\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\left[ \\lambda _ { \\mathrm { d e n o i s e } } \\| \\Phi ( G ( \\mathbf { z } ) ) - r ( \\Phi ( G ( \\mathbf { z } ) ) ) \\| | ^ { 2 } - \\lambda _ { \\mathrm { a d v } } \\log D ( G ( z ) ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 245, + 179, + 750, + 208 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $r ( G ( \\mathbf { z } ) )$ is treated as constant with respect to gradient computations. Simultaneously, the denoiser $r ( \\cdot )$ is trained according to the objective ", + "bbox": [ + 176, + 214, + 823, + 243 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/58e69619f4024842b8268a99064c7f064bdf50c5191a4b3292f99e470b719851.jpg", + "text": "$$\n\\underset { \\theta _ { r } } { \\arg \\operatorname* { m i n } } \\mathop { { \\mathbb { E } } } _ { { \\mathbf { x } } \\sim { \\mathcal { D } } } \\| \\Phi ( { \\mathbf { x } } ) - r ( C ( \\Phi ( { \\mathbf { x } } ) ) ) \\| ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 367, + 250, + 629, + 279 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 EFFECT OF $\\Phi$ ", + "text_level": 1, + "bbox": [ + 174, + 294, + 307, + 308 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The theory surrounding denoising auto-encoders applies when estimating a denoising function from a data distribution $p ( v e c x )$ . Here, we propose to estimate the denoising auto-encoder in the space of discriminator features, giving rise to a distribution $q ( \\Phi ( \\mathbf { x } ) )$ . A natural question is what effect this has on the gradient being backpropagated. This is difficult to analyze in general, as for most choices the mapping $\\Phi$ will not be invertible, though it is instructive to examine the invertible case. Assuming an invertible $\\Phi : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }$ , let $\\begin{array} { r } { J = \\frac { \\partial \\Phi ( \\mathbf { \\bar { x } } ) } { \\partial \\mathbf { x } } } \\end{array}$ be the Jacobian of $\\Phi$ , and $q ( \\Phi ( \\mathbf { x } ) ) = p ( \\mathbf { x } ) | J |$ . By the inverse function theorem, $J$ is also invertible (and is in fact the Jacobian of the inverse $\\Phi ^ { - 1 }$ ). Applying the chain rule and re-arranging terms, taking advantage of the invertibility of $J$ , we arrive at a straightforward relationship between the score of $q$ and the score of $p$ : ", + "bbox": [ + 173, + 319, + 826, + 452 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/45b54f0b1f4bfc178d0457b8d54649a988ec8d755d452103517aed884c257747.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\frac { \\partial \\log q ( \\Phi ( \\mathbf { x } ) ) } { \\partial \\Phi ( \\mathbf { x } ) } = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { p } } ( \\mathbf { \\mathbf { x } } ) \\mid J \\mid ] } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\Phi ( \\mathbf { x } ) } + \\frac { \\partial \\log \\left| \\frac { \\partial \\Phi ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } \\right| } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\left( \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } + \\frac { \\partial \\log \\left| J \\right| } { \\partial \\mathbf { x } } \\right) J ^ { - 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 336, + 473, + 661, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 174, + 595, + 217, + 609 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/761c94ce4ea062d65fbead458c5b7ce1def1e2107844bd595dde46564edf0bd5.jpg", + "text": "$$\n{ \\frac { \\partial \\log | J | } { \\partial x _ { k } } } = \\operatorname { T r } \\left( J ^ { - 1 } { \\frac { d J } { d x _ { k } } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 405, + 614, + 591, + 650 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "and $\\scriptstyle { \\frac { d J } { d x _ { k } } }$ is a matrix of scalar derivatives of elements of $\\mathbf { J }$ with respect to $x _ { k }$ . Thus, we see that the gradient backpropagated to the generator in an ideal setting is the gradient of the data distribution $p ( \\mathbf { x } )$ along with an additive term which accounts for the changes in the rate of volume expansion/contraction in $\\Phi$ locally around $\\mathbf { x }$ . In practice, $\\Phi$ is not invertible, but the added benefit of the denoiser-targeted gradient appears to reduce underfitting to the modes of $p$ in the generator, irrespective of any distortions $\\Phi$ may introduce. ", + "bbox": [ + 173, + 656, + 825, + 743 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 763, + 341, + 780 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Denoising feature matching was originally inspired by feature matching introduced by Salimans et al. (2016) as an alternative training criterion for GAN generators, namely (in our notation) ", + "bbox": [ + 173, + 795, + 823, + 824 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d1bdaaf6fad4b07cb9daeaa3ba4c997736cb68bde4b7d2710f49d419afd9a5a3.jpg", + "text": "$$\n\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\left. \\left. \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\left[ \\Phi ( \\mathbf { x } ) \\right] - \\mathbb { E } _ { \\mathbf { z } \\sim p ( z ) } \\left[ \\Phi ( G ( \\mathbf { z } ) ) \\right] \\right. \\right. ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 334, + 830, + 661, + 861 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Feature matching is equivalent to linear maximum mean discrepancy (Gretton et al., 2006), employing linear first moment matching in the space of discriminator features $\\Phi ( \\cdot )$ rather than the more familiar kernelized formulation. When performed on features in the penultimate layer, Salimans et al. (2016) found that the feature matching criterion was useful for the purpose of improving results on semi-supervised classification, using classification of samples from the generator as a sophisticated form of data augmentation. Feature matching was, however, less successful at producing samples with high visual fidelity. This is somewhat unsurprising given that the criterion is insensitive to higher-order statistics of the respective feature distributions. Indeed, a degenerate $G$ which deterministically reproduces a single sample $\\hat { \\mathbf { m } }$ such that $\\Phi ( \\hat { \\mathbf { m } } ) = \\mathbb { E } _ { \\mathbf { x } \\in \\mathcal { D } } \\Phi ( \\mathbf { x } )$ trivially minimizes (10); in practice the joint training dynamics of $D$ and $G$ do not appear to yield such degenerate solutions. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 200 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Rather than aiming to merely reduce linear separability between data and samples in the feature space defined by $\\Phi ( \\cdot )$ , denoising feature matching selects a more probable (according to the feature distribution implied by the data, as captured by the denoiser) feature space target for each sample produced by $G$ and regresses $G$ towards it. While an early loss of entropy in $G$ could result in the generator locking on to one or a few attractors in the denoiser’s energy landscape, we observe that this does not happen when used in conjunction with the traditional GAN objective, and in fact that the combination of the two objectives is notably robust to the collapses often observed in GAN training, even without taking additional measures to prevent them. ", + "bbox": [ + 174, + 208, + 823, + 319 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This work also draws inspiration from Alain & Bengio (2014), which showed that a suitably trained denoiser learns an operator which locally maps a sample towards regions of high probability under the data distribution. They further showed that a suitably trained1 reconstruction function $r ( \\cdot )$ behaves such that ", + "bbox": [ + 174, + 325, + 823, + 382 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/acd946045e8303d1508b052cdcef4cb65cd32b7b0e084d0fbb155da7484d98b9.jpg", + "text": "$$\nr ( \\mathbf { x } ) - \\mathbf { x } \\propto \\frac { \\partial \\log p ( \\mathbf { x } ) } { \\partial \\mathbf { x } }\n$$", + "text_format": "latex", + "bbox": [ + 419, + 401, + 576, + 433 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "That is, $r ( \\mathbf { x } ) - \\mathbf { x }$ estimates the score of the data generating distribution, up to a multiplicative constant. Our use of denoising auto-encoders necessarily departs from idealized conditions in that the denoiser is estimated online from an ever-changing distribution of features. ", + "bbox": [ + 174, + 453, + 823, + 496 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Several approaches to GAN-like models have cast the problem in terms of learning an energy function. Kim & Bengio (2016) extends GANs by modeling the data distribution simultaneously with an energy function parameterized by a deep neural network (playing the role of the discriminator) and the traditional generator, carrying out learning with a learning rule resembling that of the Boltzmann machine (Ackley et al., 1985), where the “negative phase” gradient is estimated from samples from the generator. The energy-based GAN formulation of Zhao et al. (2016) resembles our work in their use of an auto-encoder which is trained to faithfully reconstruct (in our case, a corrupted, function of) the training data. The energy-based GAN replaces the discriminator with an auto-encoder, which is trained to assign low energy $L _ { 2 }$ reconstruction error) to training data and higher energy to samples from $G$ . To discourage generator collapses, a “pull-away term” penalizes the normalized dot product in a feature space defined by the auto-encoder’s internal representation. In this work, we preserve the discriminator, trained in the usual discriminative fashion, and in fact preserve the traditional generator loss, instead augmenting it with a source of complementary information provided by targets obtained from the denoiser. The energy-based GAN can be viewed as training the generator to seek fixed points of the autoencoding function (i.e. by backpropagating through the decoder and encoder in order to decrease reconstruction error), whereas we treat the output of $r ( \\cdot )$ as constant with respect to the optimization as in Lee et al. (2015). That is to say, rather than using backpropagation to steer the dynamics of the autoencoder, we instead employ our denoising autoencoder to augment the gradient information obtained by ordinary backpropagation. ", + "bbox": [ + 174, + 502, + 825, + 766 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Closest to our own approach, concurrent work on model-based super-resolution by Sønderby et al. (2016) trains a denoising auto-encoder on high-resolution ground truth and evaluates it on synthesized super-resolution images, using the difference between the original synthesized image and the denoiser’s output as an additional training signal for refining the output of the super-resolution network. Both Sønderby et al. (2016) and our own work are motivated by the results of Alain & Bengio (2014) discussed above. Aside from addressing a different application area, our denoiser is learned on-the-fly from a high-level feature representation which is itself learned. ", + "bbox": [ + 174, + 772, + 823, + 871 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 326, + 117 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We evaluate denoising feature matching on learning synthesis models from three datasets of increasing diversity and size: CIFAR-10, STL-10, and ImageNet. Although several authors have described GAN-based image synthesis models operating at $1 2 8 \\times 1 2 8$ (Salimans et al., 2016; Zhao et al., 2016) and $2 5 6 \\times 2 5 6$ (Zhao et al., 2016) resolution, we carry out our investigations at relatively low resolutions, both for computational ease and because we believe that the problem of unconditional modeling of diverse image collections is not well solved even at low resolutions; making progress in this regime is likely to yield insights that apply to the higher-resolution case. ", + "bbox": [ + 174, + 142, + 825, + 241 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In all experiments, we employ isotropic Gaussian corruption noise with $\\sigma = 1$ . Although we experimented with annealing $\\sigma$ towards 0 (as also performed in Sønderby et al. (2016)), an annealing schedule which consistently outperformed fixed noise remained elusive. We experimented with convolutional denoisers, but our best results to date were obtained with deep, fully-connected denoisers using the ReLU nonlinearity on the penultimate layer of the discriminator. The number of hidden units was fixed to the same value in all denoiser layers, and the procedure is apparently robust to this hyperparameter choice, as long as it is greater than or equal to the input dimensionality. ", + "bbox": [ + 174, + 247, + 825, + 344 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our generator and discriminator architectures follow the methods outlined in Radford et al. (2015). Accordingly, batch normalization (Ioffe & Szegedy, 2015) was used in the generator and discriminator in the same manner as Radford et al. (2015), and in all layers of the denoiser except the output layer. In particular, as in Radford et al. (2015), we separately batch normalize data and generator samples for the discriminator and denoiser with respect to each source’s statistics. We calculate updates with respect to all losses with the parameters of all three networks fixed, and update all parameters simultaneously. ", + "bbox": [ + 174, + 351, + 825, + 449 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "All networks were trained with the Adam optimizer Kingma & Ba (2014) with a learning rate of $1 0 ^ { - 4 }$ and $\\beta _ { 1 } = 0 . 5$ . The Adam optimizer is scale invariant, and so it suffices to e.g. tune $\\lambda _ { \\mathrm { d e n o i s e } }$ and fix $\\lambda _ { \\mathrm { a d v } }$ to 1. In our experiments, we set $\\lambda _ { d e n o i s e }$ to $0 . 0 3 / n _ { h }$ , where $n _ { h }$ is the number of discriminator hidden units fed as input to the denoiser; this division decouples the scale of the first term of (4) from the dimensionality of the representation used, reducing the need to adjust this hyperparameter simply because we altered the architecture of the discriminator. ", + "bbox": [ + 174, + 455, + 825, + 540 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 CIFAR-10 ", + "text_level": 1, + "bbox": [ + 174, + 571, + 290, + 585 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "CIFAR-10 (Krizhevsky & Hinton, 2009) is a small, well-studied dataset consisting of $5 0 , 0 0 0 3 2 \\times 3 2$ pixel RGB training images and 10,000 test images from 10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, and truck. ", + "bbox": [ + 174, + 603, + 823, + 646 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Samples from our model trained on CIFAR-10 are shown in Figure 1, and Inception scores for several methods, including those reported in Salimans et al. (2016) and scores computed from samples generated from a model presented in Dumoulin et al. (2016), are presented in Table 1. We achieve a mean Inception score of 7.72, falling slightly short of Salimans et al. (2016), which employed a supervised discriminator network (the same work reports a score of $4 . 3 6 \\pm . 0 4$ when labels are omitted from their training procedure). Qualitatively, the samples include recognizable cars, boats and various animals. The best performing generator network consisted of the $3 2 \\times 3 2$ ImageNet architecture from Radford et al. (2015) with half the number of parameters at each layer, and less than $40 \\%$ of the parameters of the CIFAR-10 generator presented in Salimans et al. (2016). ", + "bbox": [ + 174, + 652, + 825, + 779 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/8b94c8eb78cf54076859c0560bdd30258661f60b5deadf38471e18f76219f8d5.jpg", + "text": "$$\n\\frac { \\mathrm { R e a l ~ d a t a ^ { \\star } ~ } } { 1 1 . 2 4 \\pm . 1 2 } \\left| \\begin{array} { c } { { \\mathrm { S e m i - s u p e r v i s e d } } } \\\\ { { \\mathrm { I m p r o v e d ~ G A N ~ ( S a l i m a n s ~ } e t a l ) ^ { \\star } } } \\\\ { { \\mathrm { 8 . 0 9 \\pm . 0 7 } } } \\end{array} \\right| \\left| \\begin{array} { c } { { \\mathrm { U n s u p e r v i s e d } } } \\\\ { { \\mathrm { A L I ~ ( D u m o u l i n ~ } e t a l ) ^ { \\dagger } } } \\\\ { { 5 . 3 4 \\pm 0 . 0 5 } } \\end{array} \\right| \\left. \\begin{array} { c } { { \\mathrm { 0 u r s ~ } } } \\\\ { { \\mathrm { 7 . 7 2 \\pm 0 . 1 3 } } } \\end{array} \\right|\n$$", + "text_format": "latex", + "bbox": [ + 192, + 803, + 803, + 852 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "", + "table_caption": [ + "Table 1: Inception scores for models of CIFAR-10. ? as reported in Salimans et al. (2016); semisupervised † computed from samples drawn using author-provided model parameters and implementation. " + ], + "table_footnote": [], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/2920d907092d5dbf8c4c4f921094af220f27cdd9f81d1d9481a0c8268052aabc.jpg", + "image_caption": [ + "Figure 1: Samples generated from a model trained with denoising feature matching on CIFAR10. " + ], + "image_footnote": [], + "bbox": [ + 174, + 102, + 823, + 387 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 STL-10 ", + "text_level": 1, + "bbox": [ + 174, + 441, + 271, + 457 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "STL-10 (Coates et al., 2011) is a dataset consisting of a small labeled set and larger (100,000) unlabeled set of $9 6 \\times 9 6$ RGB images. The unlabeled set is a subset of ImageNet that is more diverse than CIFAR-10 (or the labeled set of STL-10), but less diverse than full ImageNet. We downsample by a factor of 2 on each dimension and train our networks at $4 8 \\times 4 8$ . Inception scores for our model and a baseline, consisting of the same architecture trained without denoising feature matching (both trained for 50 epochs), are shown in Table 2. Samples are displayed in Figure 2. ", + "bbox": [ + 174, + 468, + 825, + 553 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/c38dc87ca763335a4636a98017817abffe08c22e36a3c5a8372d04f8f7a18e56.jpg", + "table_caption": [ + "Table 2: Inception scores for models of the unlabeled set of STL-10. " + ], + "table_footnote": [], + "table_body": "
Real dataOursGANBaseline
26.08±.268.51 ± 0.137.84 ± .07
", + "bbox": [ + 341, + 564, + 656, + 595 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 IMAGENET ", + "text_level": 1, + "bbox": [ + 174, + 643, + 292, + 657 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The ImageNet database (Russakovsky et al., 2014) is a large-scale database of natural images. We train on the designated training set of the most widely used release, the 2012 ImageNet Large Scale Visual Recognition Challenge (ILSVRC2012), consisting of a highly unbalanced split among 1,000 object classes. We preprocess the dataset as rescaled central crops following the procedure of Krizhevsky et al. (2012), except at $3 2 \\times 3 2$ resolution to facilitate comparison with Radford et al. (2015). ", + "bbox": [ + 173, + 669, + 825, + 753 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "ImageNet poses a particular challenge for unsupervised GANs due to its high level of diversity and class skew. With a generator and discriminator architecture identical to that used for the same dataset in Radford et al. (2015), we achieve a higher Inception score using denoising feature matching, using denoiser with 10 hidden layers of 2,048 rectified linear units each. Both fall far short of the score assigned to real data at this resolution; there is still plenty of room for improvement. Samples are displayed in Figure 3. ", + "bbox": [ + 174, + 760, + 825, + 844 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6 DISCUSSION AND FUTURE DIRECTIONS ", + "text_level": 1, + "bbox": [ + 174, + 864, + 537, + 881 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We have shown that training a denoising model on high-level discriminator activations in a GAN, and using the denoiser to propose high-level feature targets for the generator, can usefully improve ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/29920cf699d2fec30f17d655c1dfae487045c1563aaf102ee3b2620d354b1c93.jpg", + "image_caption": [ + "Figure 2: Samples from a model trained with denoising feature matching on the unlabeled portion of the STL-10 dataset. " + ], + "image_footnote": [], + "bbox": [ + 174, + 152, + 823, + 420 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/be1a200c0eb6f3b8c857de32f4dd2d30763756f36937a68393656c0630cafdd7.jpg", + "image_caption": [ + "Figure 3: Samples from our model of ILSVRC2012 at $3 2 \\times 3 2$ resolution. " + ], + "image_footnote": [], + "bbox": [ + 174, + 571, + 825, + 840 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/76af805e34a814df92a346b3fe98cf47a9e0dbb7f53cc191e57e04cc6402a5bd.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Real dataRadford et al*Ours
25.78 ± .478.83 ± 0.149.18± .13
", + "bbox": [ + 348, + 99, + 648, + 131 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 3: Inception scores for models of ILSVRC 2012 at $3 2 \\times 3 2$ resolution. ? computed from samples drawn using author-provided model parameters and implementation. ", + "bbox": [ + 171, + 141, + 823, + 170 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "GAN image models. Higher Inception scores, as well as visual inspection, suggest that the procedure captures class-specific features of the training data in a manner superior to the original adversarial objective alone. That being said, we do not believe we are yet making optimal use of the paradigm. The non-stationarity of the feature distribution on which the denoiser is trained could be limiting the ability of the denoiser to obtain a good fit, and the information backpropagated to the generator is always slightly stale. Steps to reduce this non-stationarity may be fruitful; we experimented briefly with historical averaging as explored in Salimans et al. (2016) but did not observe a clear benefit thus far. Structured denoisers, including denoisers that learn an energy function for multiple hidden layers at once, could conceivably aid in obtaining a better fit. Learning a partially stochastic transition operator rather than a deterministic denoiser could conceivably capture interesting multimodalities that are “blurred” by a unimodal denoising function. ", + "bbox": [ + 174, + 195, + 825, + 349 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Our method is orthogonal and could conceivably be used in combination with several other GAN extensions. For example, methods incorporating an encoder component (Donahue et al., 2016; Dumoulin et al., 2016), various existing conditional architectures (Mirza & Osindero, 2014; Denton et al., 2015; Reed et al., 2016), or the semi-supervised variant employed in Salimans et al. (2016), could all be trained with an additional denoising feature matching objective. ", + "bbox": [ + 174, + 356, + 825, + 426 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We have proposed a useful heuristic, but a better theoretical grounding regarding how GANs are trained in practice is a necessary direction for future work, including grounded criteria for assessing mode coverage and mass misassignment, and principled criteria for assessing convergence or performing early stopping. ", + "bbox": [ + 174, + 433, + 823, + 489 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 506, + 326, + 518 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We thank Ian Goodfellow, Laurent Dinh, Yaroslav Ganin and Kyle Kastner for helpful discussions. We thank Vincent Dumoulin and Ishmael Belghazi for making available code and model parameters used in comparison to ALI, as well as Alec Radford for making available the code and model parameters for his ImageNet model. We would like to thank Antonia Creswell and Hiroyuki Yamazaki for pointing out an error in the initial version of this manuscript, and anonymous reviewers for valuable feedback. We thank the University of Montreal and Compute Canada for the computational resources used for this investigation, as well as the authors of Theano (Al-Rfou et al., 2016), Blocks and Fuel (van Merrienboer et al., 2015). We thank CIFAR, NSERC, Google, Samsung and Canada ¨ Research Chairs for funding. ", + "bbox": [ + 174, + 529, + 825, + 655 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 675, + 285, + 690 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "David H Ackley, Geoffrey E Hinton, and Terrence J Sejnowski. A learning algorithm for boltzmann machines. Cognitive science, 9(1):147–169, 1985. ", + "bbox": [ + 173, + 699, + 823, + 728 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Rami Al-Rfou, Guillaume Alain, Amjad Almahairi, and et al. Theano: A python framework for fast computation of mathematical expressions. CoRR, abs/1605.02688, 2016. URL http:// arxiv.org/abs/1605.02688. ", + "bbox": [ + 173, + 738, + 821, + 780 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Guillaume Alain and Yoshua Bengio. What regularized auto-encoders learn from the data-generating distribution. Journal of Machine Learning Research, 15(1):3563–3593, 2014. ", + "bbox": [ + 169, + 790, + 823, + 819 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A. Coates, H. Lee, and A. Y. Ng. An analysis of single-layer networks in unsupervised feature learning. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics (AISTATS 2011), 2011. ", + "bbox": [ + 176, + 829, + 821, + 871 + ], + "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, pp. 1486–1494, 2015. ", + "bbox": [ + 171, + 882, + 823, + 922 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor Darrell. Decaf: A deep convolutional activation feature for generic visual recognition. In ICML, pp. 647–655, 2014. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. ¨ arXiv preprint arXiv:1605.09782, 2016. ", + "bbox": [ + 171, + 154, + 823, + 183 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexey Dosovitskiy and Thomas Brox. Inverting visual representations with convolutional networks. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2016. ", + "bbox": [ + 171, + 190, + 823, + 220 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropietro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704, 2016. ", + "bbox": [ + 176, + 228, + 823, + 271 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dumitru Erhan, Yoshua Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer features of a deep network. University of Montreal, 1341, 2009. ", + "bbox": [ + 171, + 279, + 825, + 309 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Z. Ghahramani, M. Welling, C. Cortes, N. D. Lawrence, and K. Q. Weinberger (eds.), Advances in Neural Information Processing Systems 27, pp. 2672–2680. Curran Associates, Inc., 2014a. URL http://papers. nips.cc/paper/5423-generative-adversarial-nets.pdf. ", + "bbox": [ + 173, + 315, + 825, + 387 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian J Goodfellow. On distinguishability criteria for estimating generative models. arXiv preprint arXiv:1412.6515, 2014. ", + "bbox": [ + 173, + 395, + 821, + 424 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572, 2014b. ", + "bbox": [ + 173, + 431, + 821, + 462 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Arthur Gretton, Karsten M Borgwardt, Malte Rasch, Bernhard Scholkopf, and Alex J Smola. A ker- ¨ nel method for the two-sample-problem. In Advances in neural information processing systems, pp. 513–520, 2006. ", + "bbox": [ + 173, + 468, + 825, + 512 + ], + "page_idx": 9 + }, + { + "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": [ + 174, + 520, + 823, + 549 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Taesup Kim and Yoshua Bengio. Deep directed generative models with energy-based probability estimation. arXiv preprint arXiv:1606.03439, 2016. ", + "bbox": [ + 176, + 556, + 821, + 587 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 594, + 821, + 623 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009. ", + "bbox": [ + 173, + 631, + 821, + 647 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in neural information processing systems, pp. 1097–1105, 2012. ", + "bbox": [ + 174, + 654, + 823, + 696 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Quoc Le, Marc’Aurelio Ranzato, Rajat Monga, Matthieu Devin, Greg Corrado, Kai Chen, Jeff Dean, and Andrew Ng. Building high-level features using large scale unsupervised learning. In ICML’2012, 2012. ", + "bbox": [ + 176, + 704, + 823, + 747 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dong-Hyun Lee, Saizheng Zhang, Asja Fischer, and Yoshua Bengio. Difference target propagation. In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 498–515. Springer, 2015. ", + "bbox": [ + 173, + 756, + 825, + 799 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild. In Proceedings of International Conference on Computer Vision (ICCV), 2015. ", + "bbox": [ + 171, + 806, + 820, + 837 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets. arXiv preprint arXiv:1411.1784, 2014. ", + "bbox": [ + 171, + 844, + 821, + 873 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anh Nguyen, Jason Yosinski, and Jeff Clune. Deep neural networks are easily fooled: High confidence predictions for unrecognizable images. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 427–436. IEEE, 2015. ", + "bbox": [ + 174, + 882, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Scott E. Reed, Zeynep Akata, Xinchen Yan, Lajanugen Logeswaran, Bernt Schiele, and Honglak Lee. Generative adversarial text to image synthesis. CoRR, abs/1605.05396, 2016. URL http: //arxiv.org/abs/1605.05396. ", + "bbox": [ + 176, + 141, + 821, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei. ImageNet Large Scale Visual Recognition Challenge, 2014. ", + "bbox": [ + 176, + 193, + 821, + 236 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tim Salimans, Ian J. Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. CoRR, abs/1606.03498, 2016. URL http://arxiv. org/abs/1606.03498. ", + "bbox": [ + 174, + 243, + 820, + 286 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´ map inference for image super-resolution. arXiv preprint arXiv:1610.04490, 2016. ", + "bbox": [ + 173, + 295, + 821, + 325 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013. ", + "bbox": [ + 173, + 333, + 823, + 363 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1–9, 2015. ", + "bbox": [ + 174, + 371, + 823, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨ models. arXiv preprint arXiv:1511.01844, 2015. ", + "bbox": [ + 173, + 422, + 823, + 452 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Bart van Merrienboer, Dzmitry Bahdanau, Vincent Dumoulin, Dmitriy Serdyuk, David Warde-¨ Farley, Jan Chorowski, and Yoshua Bengio. Blocks and fuel: Frameworks for deep learning. CoRR, abs/1506.00619, 2015. URL http://arxiv.org/abs/1506.00619. ", + "bbox": [ + 176, + 460, + 821, + 503 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "D Warde-Farley and I Goodfellow. Adversarial perturbations of deep neural networks. In Tamir Hazan, George Papandreou, and Daniel Tarlow (eds.), Perturbation, Optimization and Statistics, chapter 11, pp. 311–339. MIT Press, Cambridge, 2016. ", + "bbox": [ + 176, + 512, + 823, + 555 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jason Yosinski, Jeff Clune, Yoshua Bengio, and Hod Lipson. How transferable are features in deep neural networks? In Advances in neural information processing systems, pp. 3320–3328, 2014. ", + "bbox": [ + 169, + 563, + 823, + 593 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jason Yosinski, Jeff Clune, Anh Nguyen, Thomas Fuchs, and Hod Lipson. Understanding neural networks through deep visualization. arXiv preprint arXiv:1506.06579, 2015. ", + "bbox": [ + 169, + 602, + 823, + 631 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. LSUN: construction of a largescale image dataset using deep learning with humans in the loop. CoRR, abs/1506.03365, 2015. URL http://arxiv.org/abs/1506.03365. ", + "bbox": [ + 173, + 638, + 821, + 683 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Junbo Zhao, Michael Mathieu, and Yann LeCun. Energy-based generative adversarial network. arXiv preprint arXiv:1609.03126, 2016. ", + "bbox": [ + 168, + 690, + 823, + 719 + ], + "page_idx": 10 + } +] \ No newline at end of file diff --git a/parse/train/S1X7nhsxl/S1X7nhsxl_middle.json b/parse/train/S1X7nhsxl/S1X7nhsxl_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..792b9682b809c2208f6431cfc4d4f95037cc4711 --- /dev/null +++ b/parse/train/S1X7nhsxl/S1X7nhsxl_middle.json @@ -0,0 +1,29343 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "IMPROVING GENERATIVE ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 397, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 397, + 118 + ], + "score": 1.0, + "content": "WITH DENOISING FEATURE MATCHING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 391, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 281, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 281, + 147 + ], + "score": 1.0, + "content": "David Warde-Farley & Yoshua Bengio?", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 387, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 289, + 158 + ], + "score": 1.0, + "content": "Montreal Institute for Learning Algorithms,", + "type": "text" + }, + { + "bbox": [ + 289, + 147, + 297, + 156 + ], + "score": 0.76, + "content": "\\star", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 146, + 387, + 158 + ], + "score": 1.0, + "content": "CIFAR Senior Fellow", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 157, + 207, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 157, + 207, + 168 + ], + "score": 1.0, + "content": "Universite de Montr´ eal´", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 168, + 221, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 221, + 179 + ], + "score": 1.0, + "content": "Montreal, Quebec, Canada", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 178, + 394, + 192 + ], + "spans": [ + { + "bbox": [ + 112, + 178, + 394, + 192 + ], + "score": 1.0, + "content": "{david.warde-farley,yoshua.bengio}@umontreal.ca", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "spans": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 345 + ], + "lines": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "We propose an augmented training procedure for generative adversarial networks", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 257, + 469, + 269 + ], + "spans": [ + { + "bbox": [ + 142, + 257, + 469, + 269 + ], + "score": 1.0, + "content": "designed to address shortcomings of the original by directing the generator to-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 268, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 268, + 469, + 279 + ], + "score": 1.0, + "content": "wards probable configurations of abstract discriminator features. We estimate and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 470, + 292 + ], + "score": 1.0, + "content": "track the distribution of these features, as computed from data, with a denoising", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "auto-encoder, and use it to propose high-level targets for the generator. We com-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "score": 1.0, + "content": "bine this new loss with the original and evaluate the hybrid criterion on the task", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "of unsupervised image synthesis from datasets comprising a diverse set of visual", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "score": 1.0, + "content": "categories, noting a qualitative and quantitative improvement in the “objectness”", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 334, + 242, + 346 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 242, + 346 + ], + "score": 1.0, + "content": "of the resulting samples.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "score": 1.0, + "content": "Generative adversarial networks (Goodfellow et al., 2014a) (GANs) have become well known for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "their strength at realistic image synthesis. The objective function for the generative network is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "an implicit function of a learned discriminator network, estimated in parallel with the generator,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "which aims to tell apart real data from synthesized. Ideally, the discriminator learns to capture", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "distinguishing features of real data, which the generator learns to imitate, and the process iterates", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 336, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 336, + 462 + ], + "score": 1.0, + "content": "until real data and synthesized data are indistinguishable.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "In practice, GANs are well known for being quite challenging to train effectively. The relative model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "capacities of the generator and discriminator must be carefully balanced in order for the generator", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "to effectively learn. Compounding the problem is the lack of an unambiguous and computable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "convergence criterion. Nevertheless, particularly when trained on image collections from relatively", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "narrow domains such as bedroom scenes (Yu et al., 2015) and human faces (Liu et al., 2015), GANs", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 319, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 319, + 534 + ], + "score": 1.0, + "content": "have been shown to produce very compelling results.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "For diverse image collections comprising a wider variety of the visual world, the results have gen-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 504, + 562 + ], + "score": 1.0, + "content": "erally been less impressive. For example, samples from models trained on ImageNet (Russakovsky", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "et al., 2014) roughly match the local and global statistics of natural images but yield few recogniz-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "able objects. Recent work (Salimans et al., 2016) has sought to address this problem by training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "the discriminator in a semi-supervised fashion, granting the discriminator’s internal representations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "knowledge of the class structure of (some fraction of) the training data it is presented. This tech-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "nique markedly increases sample quality, but is unsatisfying from the perspective of GANs as a tool", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 213, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 213, + 630 + ], + "score": 1.0, + "content": "for unsupervised learning.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "We propose to augment the generator’s training criterion with a second training objective which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "guides the generator towards samples more like those in the training set by explicitly modeling the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 668 + ], + "score": 1.0, + "content": "data density in addition to the adversarial discriminator. Rather than deploy a second computation-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "ally expensive convolutional network for this task, the additional objective is computed in the space", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "of features learned by the discriminator. In that space, we train a denoising auto-encoder, a family", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "of models which is known to estimate the energy gradient of the data on which it is trained. We", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "evaluate the denoising auto-encoder on samples drawn from the generator, and use the “denoised”", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "features as targets – nearby feature configurations which are more likely than those of the generated", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 720, + 361, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 361, + 733 + ], + "score": 1.0, + "content": "sample, according to the distribution estimated by the denoiser.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42 + } + ], + "page_idx": 0, + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "IMPROVING GENERATIVE ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 397, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 397, + 118 + ], + "score": 1.0, + "content": "WITH DENOISING FEATURE MATCHING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 113, + 135, + 391, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 281, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 281, + 147 + ], + "score": 1.0, + "content": "David Warde-Farley & Yoshua Bengio?", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 146, + 387, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 289, + 158 + ], + "score": 1.0, + "content": "Montreal Institute for Learning Algorithms,", + "type": "text" + }, + { + "bbox": [ + 289, + 147, + 297, + 156 + ], + "score": 0.76, + "content": "\\star", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 146, + 387, + 158 + ], + "score": 1.0, + "content": "CIFAR Senior Fellow", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 157, + 207, + 168 + ], + "spans": [ + { + "bbox": [ + 113, + 157, + 207, + 168 + ], + "score": 1.0, + "content": "Universite de Montr´ eal´", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 168, + 221, + 179 + ], + "spans": [ + { + "bbox": [ + 111, + 168, + 221, + 179 + ], + "score": 1.0, + "content": "Montreal, Quebec, Canada", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 178, + 394, + 192 + ], + "spans": [ + { + "bbox": [ + 112, + 178, + 394, + 192 + ], + "score": 1.0, + "content": "{david.warde-farley,yoshua.bengio}@umontreal.ca", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 111, + 135, + 394, + 192 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "spans": [ + { + "bbox": [ + 276, + 218, + 336, + 234 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 345 + ], + "lines": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "We propose an augmented training procedure for generative adversarial networks", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 257, + 469, + 269 + ], + "spans": [ + { + "bbox": [ + 142, + 257, + 469, + 269 + ], + "score": 1.0, + "content": "designed to address shortcomings of the original by directing the generator to-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 268, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 268, + 469, + 279 + ], + "score": 1.0, + "content": "wards probable configurations of abstract discriminator features. We estimate and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 277, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 277, + 470, + 292 + ], + "score": 1.0, + "content": "track the distribution of these features, as computed from data, with a denoising", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 469, + 302 + ], + "score": 1.0, + "content": "auto-encoder, and use it to propose high-level targets for the generator. We com-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 313 + ], + "score": 1.0, + "content": "bine this new loss with the original and evaluate the hybrid criterion on the task", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "of unsupervised image synthesis from datasets comprising a diverse set of visual", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 469, + 335 + ], + "score": 1.0, + "content": "categories, noting a qualitative and quantitative improvement in the “objectness”", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 334, + 242, + 346 + ], + "spans": [ + { + "bbox": [ + 142, + 334, + 242, + 346 + ], + "score": 1.0, + "content": "of the resulting samples.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 246, + 470, + 346 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 206, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 208, + 385 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 407 + ], + "score": 1.0, + "content": "Generative adversarial networks (Goodfellow et al., 2014a) (GANs) have become well known for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "their strength at realistic image synthesis. The objective function for the generative network is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "an implicit function of a learned discriminator network, estimated in parallel with the generator,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "which aims to tell apart real data from synthesized. Ideally, the discriminator learns to capture", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "distinguishing features of real data, which the generator learns to imitate, and the process iterates", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 336, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 336, + 462 + ], + "score": 1.0, + "content": "until real data and synthesized data are indistinguishable.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 396, + 505, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "In practice, GANs are well known for being quite challenging to train effectively. The relative model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "capacities of the generator and discriminator must be carefully balanced in order for the generator", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "to effectively learn. Compounding the problem is the lack of an unambiguous and computable", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "convergence criterion. Nevertheless, particularly when trained on image collections from relatively", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "narrow domains such as bedroom scenes (Yu et al., 2015) and human faces (Liu et al., 2015), GANs", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 523, + 319, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 319, + 534 + ], + "score": 1.0, + "content": "have been shown to produce very compelling results.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 467, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "For diverse image collections comprising a wider variety of the visual world, the results have gen-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 504, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 504, + 562 + ], + "score": 1.0, + "content": "erally been less impressive. For example, samples from models trained on ImageNet (Russakovsky", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "et al., 2014) roughly match the local and global statistics of natural images but yield few recogniz-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 570, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 505, + 586 + ], + "score": 1.0, + "content": "able objects. Recent work (Salimans et al., 2016) has sought to address this problem by training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "the discriminator in a semi-supervised fashion, granting the discriminator’s internal representations", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "knowledge of the class structure of (some fraction of) the training data it is presented. This tech-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "nique markedly increases sample quality, but is unsatisfying from the perspective of GANs as a tool", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 213, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 213, + 630 + ], + "score": 1.0, + "content": "for unsupervised learning.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 538, + 505, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "We propose to augment the generator’s training criterion with a second training objective which", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "guides the generator towards samples more like those in the training set by explicitly modeling the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 654, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 504, + 668 + ], + "score": 1.0, + "content": "data density in addition to the adversarial discriminator. Rather than deploy a second computation-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "ally expensive convolutional network for this task, the additional objective is computed in the space", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "of features learned by the discriminator. In that space, we train a denoising auto-encoder, a family", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "of models which is known to estimate the energy gradient of the data on which it is trained. We", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "evaluate the denoising auto-encoder on samples drawn from the generator, and use the “denoised”", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "features as targets – nearby feature configurations which are more likely than those of the generated", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 720, + 361, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 361, + 733 + ], + "score": 1.0, + "content": "sample, according to the distribution estimated by the denoiser.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 632, + 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": "We show that this yields generators which consistently produce recognizable objects on the CIFAR-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "10 dataset without the use of label information as in Salimans et al. (2016). The criterion appears to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "improve stability and possesses a degree of natural robustness to the well known “collapse” pathol-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "ogy. We further investigate the criterion’s performance on two larger and more diverse collections", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "of images, and validate our qualitative observations quantitatively with the Inception score proposed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 209, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 209, + 150 + ], + "score": 1.0, + "content": "in Salimans et al. (2016).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 166, + 200, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 164, + 202, + 182 + ], + "spans": [ + { + "bbox": [ + 104, + 164, + 202, + 182 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 192, + 302, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 303, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 303, + 205 + ], + "score": 1.0, + "content": "2.1 GENERATIVE ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 505, + 269 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "The generative adversarial networks paradigm (Goodfellow et al., 2014a) estimates generative sam-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 361, + 237 + ], + "score": 1.0, + "content": "plers by means of a training procedure which pits a generator", + "type": "text" + }, + { + "bbox": [ + 361, + 225, + 370, + 235 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 225, + 468, + 237 + ], + "score": 1.0, + "content": "against a discriminator", + "type": "text" + }, + { + "bbox": [ + 469, + 225, + 478, + 235 + ], + "score": 0.7, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 225, + 484, + 237 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 484, + 225, + 494, + 235 + ], + "score": 0.71, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 370, + 248 + ], + "score": 1.0, + "content": "trained to tell apart training examples from samples produced by", + "type": "text" + }, + { + "bbox": [ + 370, + 236, + 379, + 246 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 235, + 408, + 248 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 408, + 236, + 418, + 245 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "is trained to increase", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "the probability of its samples being incorrectly classified as data. In the original formulation, the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 257, + 328, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 328, + 271 + ], + "score": 1.0, + "content": "training procedure defines a continuous minimax game", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 275, + 438, + 296 + ], + "lines": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "spans": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "score": 0.9, + "content": "\\underset { G } { \\arg \\operatorname* { m i n } } \\ \\underset { D } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\log D ( \\mathbf { x } ) + \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log \\left( 1 - D \\left( G ( \\mathbf { z } ) \\right) \\right)", + "type": "interline_equation", + "image_path": "4bae875f072788494d334e95f81a93789efac2bd43a37360555bc3df3b0f4562.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 133, + 315 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 303, + 143, + 312 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 302, + 242, + 315 + ], + "score": 1.0, + "content": "is a data distribution on", + "type": "text" + }, + { + "bbox": [ + 242, + 303, + 255, + 312 + ], + "score": 0.81, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 302, + 260, + 315 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 260, + 303, + 270, + 312 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 302, + 365, + 315 + ], + "score": 1.0, + "content": "is a function that maps", + "type": "text" + }, + { + "bbox": [ + 366, + 303, + 380, + 312 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 302, + 478, + 315 + ], + "score": 1.0, + "content": "to the unit interval, and", + "type": "text" + }, + { + "bbox": [ + 478, + 303, + 487, + 312 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 244, + 326 + ], + "score": 1.0, + "content": "function that maps a noise vector", + "type": "text" + }, + { + "bbox": [ + 244, + 314, + 280, + 324 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 312, + 420, + 326 + ], + "score": 1.0, + "content": ", drawn from a simple distribution", + "type": "text" + }, + { + "bbox": [ + 421, + 313, + 439, + 325 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 312, + 506, + 326 + ], + "score": 1.0, + "content": ", to the ambient", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 217, + 337 + ], + "score": 1.0, + "content": "space of the training data,", + "type": "text" + }, + { + "bbox": [ + 218, + 325, + 231, + 335 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 324, + 505, + 337 + ], + "score": 1.0, + "content": ". The idealized algorithm can be shown to converge and to mini-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "mize the Jensen-Shannon divergence between the data generating distribution and the distribution", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 191, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 178, + 359 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 178, + 347, + 187, + 356 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 347, + 191, + 359 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 108, + 363, + 502, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 495, + 376 + ], + "score": 1.0, + "content": "Goodfellow et al. (2014a) found that in practice, minimizing (1) with respect to the parameters of", + "type": "text" + }, + { + "bbox": [ + 495, + 364, + 504, + 373 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 374, + 389, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 389, + 387 + ], + "score": 1.0, + "content": "proved difficult, and elected instead to optimize an alternate objective,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 392, + 368, + 412 + ], + "lines": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "spans": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "score": 0.92, + "content": "\\underset { G } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "9d439296646e30dd2efcc2fbc50bc1a5ca743a51ef1bd8486d61cb34072d5669.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 192, + 433 + ], + "score": 1.0, + "content": "at the same time as", + "type": "text" + }, + { + "bbox": [ + 192, + 420, + 201, + 430 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 418, + 304, + 433 + ], + "score": 1.0, + "content": "is optimized as above.", + "type": "text" + }, + { + "bbox": [ + 304, + 420, + 356, + 432 + ], + "score": 0.92, + "content": "\\log D ( G ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 418, + 505, + 433 + ], + "score": 1.0, + "content": "yields more favourably scaled per-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 189, + 444 + ], + "score": 1.0, + "content": "sample gradients for", + "type": "text" + }, + { + "bbox": [ + 189, + 431, + 198, + 441 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 430, + 222, + 444 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 223, + 431, + 232, + 441 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "confidently identifies a sample as counterfeit, avoiding the vanishing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 385, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 258, + 455 + ], + "score": 1.0, + "content": "gradients arising in that case with the", + "type": "text" + }, + { + "bbox": [ + 258, + 442, + 342, + 454 + ], + "score": 0.91, + "content": "- \\log ( 1 - D ( G ( \\mathbf { z } ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 442, + 385, + 455 + ], + "score": 1.0, + "content": "objective.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Subsequent authors have investigated applications and extensions of GANs; for a review of this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 255, + 482 + ], + "score": 1.0, + "content": "body of literature, see Warde-Farley", + "type": "text" + }, + { + "bbox": [ + 256, + 470, + 265, + 480 + ], + "score": 0.35, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Goodfellow (2016). Of particular note for our purposes is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "Radford et al. (2015), who provide a set of general guidelines for the successful training of generative", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "adversarial networks, and Salimans et al. (2016), who build upon these techniques with a number of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 371, + 515 + ], + "score": 1.0, + "content": "useful heuristics and explore a variant in which the discriminator", + "type": "text" + }, + { + "bbox": [ + 372, + 503, + 381, + 512 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "is trained to correctly classify", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "score": 1.0, + "content": "labeled training data, resulting in gradients with respect to the discriminator evidently containing a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 388, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 388, + 537 + ], + "score": 1.0, + "content": "great deal of information relevant to generating “object-like” samples.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 551, + 315, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 316, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 316, + 564 + ], + "score": 1.0, + "content": "2.2 CHALLENGES AND LIMITATIONS OF GANS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "While Goodfellow et al. (2014a) provides a theoretical basis for the GAN criterion, the theory relies", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "on certain assumptions that are not satisfied in practice. Proofs demonstrate convergence of the GAN", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "criterion in the unconstrained space of arbitrary functions; in practice, finitely parameterized families", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "of functions such as neural networks are employed. As a consequence, the “inner loop” of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 396, + 628 + ], + "score": 1.0, + "content": "idealized algorithm – maximizing (1) with respect to (the parameters of)", + "type": "text" + }, + { + "bbox": [ + 397, + 617, + 406, + 626 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 616, + 505, + 628 + ], + "score": 1.0, + "content": ", is infeasible to perform", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "exactly, and in practice only one or a few gradient steps stand in for this maximization. This results", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 210, + 650 + ], + "score": 1.0, + "content": "in a de facto criterion for", + "type": "text" + }, + { + "bbox": [ + 210, + 639, + 219, + 648 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "which minimizes a lower bound on the correct objective (Goodfellow,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 647, + 137, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 137, + 662 + ], + "score": 1.0, + "content": "2014).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 408, + 678 + ], + "score": 1.0, + "content": "A commonly observed failure mode is that of full or partial collapse, where", + "type": "text" + }, + { + "bbox": [ + 409, + 666, + 418, + 676 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "maps a large fraction", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 211, + 689 + ], + "score": 1.0, + "content": "of probable regions under", + "type": "text" + }, + { + "bbox": [ + 212, + 677, + 231, + 689 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 676, + 381, + 689 + ], + "score": 1.0, + "content": "to only a few, low-volume regions of", + "type": "text" + }, + { + "bbox": [ + 382, + 678, + 395, + 687 + ], + "score": 0.83, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "; in the case of images, this", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 460, + 700 + ], + "score": 1.0, + "content": "manifests as the appearance of many near-duplicate images in independent draws from", + "type": "text" + }, + { + "bbox": [ + 461, + 688, + 470, + 698 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", as well", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 450, + 711 + ], + "score": 1.0, + "content": "as a lower diversity of samples and modes than what is observed in the dataset. As", + "type": "text" + }, + { + "bbox": [ + 450, + 699, + 459, + 709 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 699, + 479, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 479, + 699, + 488, + 709 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "typically trained via mini-batch stochastic gradient descent, several authors have proposed heuristics", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 489, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 489, + 733 + ], + "score": 1.0, + "content": "that penalize such duplication within each mini-batch (Salimans et al., 2016; Zhao et al., 2016).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "We show that this yields generators which consistently produce recognizable objects on the CIFAR-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "10 dataset without the use of label information as in Salimans et al. (2016). The criterion appears to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "improve stability and possesses a degree of natural robustness to the well known “collapse” pathol-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "ogy. We further investigate the criterion’s performance on two larger and more diverse collections", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "of images, and validate our qualitative observations quantitatively with the Inception score proposed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 209, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 209, + 150 + ], + "score": 1.0, + "content": "in Salimans et al. (2016).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 83, + 506, + 150 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 166, + 200, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 164, + 202, + 182 + ], + "spans": [ + { + "bbox": [ + 104, + 164, + 202, + 182 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 108, + 192, + 302, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 303, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 303, + 205 + ], + "score": 1.0, + "content": "2.1 GENERATIVE ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 505, + 269 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "The generative adversarial networks paradigm (Goodfellow et al., 2014a) estimates generative sam-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 361, + 237 + ], + "score": 1.0, + "content": "plers by means of a training procedure which pits a generator", + "type": "text" + }, + { + "bbox": [ + 361, + 225, + 370, + 235 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 225, + 468, + 237 + ], + "score": 1.0, + "content": "against a discriminator", + "type": "text" + }, + { + "bbox": [ + 469, + 225, + 478, + 235 + ], + "score": 0.7, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 225, + 484, + 237 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 484, + 225, + 494, + 235 + ], + "score": 0.71, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 370, + 248 + ], + "score": 1.0, + "content": "trained to tell apart training examples from samples produced by", + "type": "text" + }, + { + "bbox": [ + 370, + 236, + 379, + 246 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 235, + 408, + 248 + ], + "score": 1.0, + "content": ", while", + "type": "text" + }, + { + "bbox": [ + 408, + 236, + 418, + 245 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "is trained to increase", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "the probability of its samples being incorrectly classified as data. In the original formulation, the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 257, + 328, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 328, + 271 + ], + "score": 1.0, + "content": "training procedure defines a continuous minimax game", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 213, + 506, + 271 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 275, + 438, + 296 + ], + "lines": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "spans": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "score": 0.9, + "content": "\\underset { G } { \\arg \\operatorname* { m i n } } \\ \\underset { D } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\log D ( \\mathbf { x } ) + \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log \\left( 1 - D \\left( G ( \\mathbf { z } ) \\right) \\right)", + "type": "interline_equation", + "image_path": "4bae875f072788494d334e95f81a93789efac2bd43a37360555bc3df3b0f4562.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 172, + 275, + 438, + 296 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 133, + 315 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 303, + 143, + 312 + ], + "score": 0.82, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 302, + 242, + 315 + ], + "score": 1.0, + "content": "is a data distribution on", + "type": "text" + }, + { + "bbox": [ + 242, + 303, + 255, + 312 + ], + "score": 0.81, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 302, + 260, + 315 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 260, + 303, + 270, + 312 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 302, + 365, + 315 + ], + "score": 1.0, + "content": "is a function that maps", + "type": "text" + }, + { + "bbox": [ + 366, + 303, + 380, + 312 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 302, + 478, + 315 + ], + "score": 1.0, + "content": "to the unit interval, and", + "type": "text" + }, + { + "bbox": [ + 478, + 303, + 487, + 312 + ], + "score": 0.84, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 244, + 326 + ], + "score": 1.0, + "content": "function that maps a noise vector", + "type": "text" + }, + { + "bbox": [ + 244, + 314, + 280, + 324 + ], + "score": 0.9, + "content": "\\mathbf { z } \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 312, + 420, + 326 + ], + "score": 1.0, + "content": ", drawn from a simple distribution", + "type": "text" + }, + { + "bbox": [ + 421, + 313, + 439, + 325 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 312, + 506, + 326 + ], + "score": 1.0, + "content": ", to the ambient", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 217, + 337 + ], + "score": 1.0, + "content": "space of the training data,", + "type": "text" + }, + { + "bbox": [ + 218, + 325, + 231, + 335 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 324, + 505, + 337 + ], + "score": 1.0, + "content": ". The idealized algorithm can be shown to converge and to mini-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "mize the Jensen-Shannon divergence between the data generating distribution and the distribution", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 191, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 178, + 359 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 178, + 347, + 187, + 356 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 347, + 191, + 359 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 302, + 506, + 359 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 363, + 502, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 495, + 376 + ], + "score": 1.0, + "content": "Goodfellow et al. (2014a) found that in practice, minimizing (1) with respect to the parameters of", + "type": "text" + }, + { + "bbox": [ + 495, + 364, + 504, + 373 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 374, + 389, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 389, + 387 + ], + "score": 1.0, + "content": "proved difficult, and elected instead to optimize an alternate objective,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 363, + 504, + 387 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 392, + 368, + 412 + ], + "lines": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "spans": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "score": 0.92, + "content": "\\underset { G } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log D \\left( G ( z ) \\right)", + "type": "interline_equation", + "image_path": "9d439296646e30dd2efcc2fbc50bc1a5ca743a51ef1bd8486d61cb34072d5669.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 242, + 392, + 368, + 412 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 192, + 433 + ], + "score": 1.0, + "content": "at the same time as", + "type": "text" + }, + { + "bbox": [ + 192, + 420, + 201, + 430 + ], + "score": 0.84, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 418, + 304, + 433 + ], + "score": 1.0, + "content": "is optimized as above.", + "type": "text" + }, + { + "bbox": [ + 304, + 420, + 356, + 432 + ], + "score": 0.92, + "content": "\\log D ( G ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 418, + 505, + 433 + ], + "score": 1.0, + "content": "yields more favourably scaled per-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 189, + 444 + ], + "score": 1.0, + "content": "sample gradients for", + "type": "text" + }, + { + "bbox": [ + 189, + 431, + 198, + 441 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 430, + 222, + 444 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 223, + 431, + 232, + 441 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "confidently identifies a sample as counterfeit, avoiding the vanishing", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 442, + 385, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 258, + 455 + ], + "score": 1.0, + "content": "gradients arising in that case with the", + "type": "text" + }, + { + "bbox": [ + 258, + 442, + 342, + 454 + ], + "score": 0.91, + "content": "- \\log ( 1 - D ( G ( \\mathbf { z } ) ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 442, + 385, + 455 + ], + "score": 1.0, + "content": "objective.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 418, + 505, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Subsequent authors have investigated applications and extensions of GANs; for a review of this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 255, + 482 + ], + "score": 1.0, + "content": "body of literature, see Warde-Farley", + "type": "text" + }, + { + "bbox": [ + 256, + 470, + 265, + 480 + ], + "score": 0.35, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "Goodfellow (2016). Of particular note for our purposes is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "Radford et al. (2015), who provide a set of general guidelines for the successful training of generative", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "adversarial networks, and Salimans et al. (2016), who build upon these techniques with a number of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 371, + 515 + ], + "score": 1.0, + "content": "useful heuristics and explore a variant in which the discriminator", + "type": "text" + }, + { + "bbox": [ + 372, + 503, + 381, + 512 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "is trained to correctly classify", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 526 + ], + "score": 1.0, + "content": "labeled training data, resulting in gradients with respect to the discriminator evidently containing a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 525, + 388, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 388, + 537 + ], + "score": 1.0, + "content": "great deal of information relevant to generating “object-like” samples.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 458, + 506, + 537 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 551, + 315, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 316, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 316, + 564 + ], + "score": 1.0, + "content": "2.2 CHALLENGES AND LIMITATIONS OF GANS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 571, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "While Goodfellow et al. (2014a) provides a theoretical basis for the GAN criterion, the theory relies", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "on certain assumptions that are not satisfied in practice. Proofs demonstrate convergence of the GAN", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "criterion in the unconstrained space of arbitrary functions; in practice, finitely parameterized families", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "of functions such as neural networks are employed. As a consequence, the “inner loop” of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 396, + 628 + ], + "score": 1.0, + "content": "idealized algorithm – maximizing (1) with respect to (the parameters of)", + "type": "text" + }, + { + "bbox": [ + 397, + 617, + 406, + 626 + ], + "score": 0.78, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 616, + 505, + 628 + ], + "score": 1.0, + "content": ", is infeasible to perform", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "exactly, and in practice only one or a few gradient steps stand in for this maximization. This results", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 210, + 650 + ], + "score": 1.0, + "content": "in a de facto criterion for", + "type": "text" + }, + { + "bbox": [ + 210, + 639, + 219, + 648 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "which minimizes a lower bound on the correct objective (Goodfellow,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 647, + 137, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 137, + 662 + ], + "score": 1.0, + "content": "2014).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 572, + 505, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 408, + 678 + ], + "score": 1.0, + "content": "A commonly observed failure mode is that of full or partial collapse, where", + "type": "text" + }, + { + "bbox": [ + 409, + 666, + 418, + 676 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "maps a large fraction", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 211, + 689 + ], + "score": 1.0, + "content": "of probable regions under", + "type": "text" + }, + { + "bbox": [ + 212, + 677, + 231, + 689 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 676, + 381, + 689 + ], + "score": 1.0, + "content": "to only a few, low-volume regions of", + "type": "text" + }, + { + "bbox": [ + 382, + 678, + 395, + 687 + ], + "score": 0.83, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "; in the case of images, this", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 460, + 700 + ], + "score": 1.0, + "content": "manifests as the appearance of many near-duplicate images in independent draws from", + "type": "text" + }, + { + "bbox": [ + 461, + 688, + 470, + 698 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", as well", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 450, + 711 + ], + "score": 1.0, + "content": "as a lower diversity of samples and modes than what is observed in the dataset. As", + "type": "text" + }, + { + "bbox": [ + 450, + 699, + 459, + 709 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 699, + 479, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 479, + 699, + 488, + 709 + ], + "score": 0.8, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "typically trained via mini-batch stochastic gradient descent, several authors have proposed heuristics", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 489, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 489, + 733 + ], + "score": 1.0, + "content": "that penalize such duplication within each mini-batch (Salimans et al., 2016; Zhao et al., 2016).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "GANs represent a departure from traditional probabilistic models based on maximum likelihood", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "and its approximations in that they parameterize a sampler directly and lack a closed form for the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "likelihood. This makes objective, quantitative evaluation difficult. While previous results in the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 128 + ], + "score": 1.0, + "content": "literature have reported approximate likelihoods based on Parzen window estimates, Theis et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "(2015) has convincingly argued that these estimates can be quite misleading for high-dimensional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 507, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 507, + 150 + ], + "score": 1.0, + "content": "data. In this work, we adopt the Inception score proposed by Salimans et al. (2016), which uses a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 442, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 442, + 161 + ], + "score": 1.0, + "content": "reference Inception convolutional neural network (Szegedy et al., 2015) to compute", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 164, + 390, + 180 + ], + "lines": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "spans": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "score": 0.93, + "content": "I ( \\{ \\mathbf { x } \\} _ { 1 } ^ { N } ) = \\exp { ( \\mathbb { E } \\left[ D _ { K L } ( p ( y | \\mathbf { x } ) \\| p ( y ) \\right] ) ) }", + "type": "interline_equation", + "image_path": "ee40ce6c4f641053150c9044c4c60954540ba3c3751f8800cd2121b953dddd2c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 133, + 199 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 185, + 162, + 197 + ], + "score": 0.92, + "content": "p ( y | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 184, + 389, + 199 + ], + "score": 1.0, + "content": "is provided by the output of the Inception network and", + "type": "text" + }, + { + "bbox": [ + 389, + 185, + 506, + 199 + ], + "score": 0.92, + "content": "\\begin{array} { r } { p ( y ) = \\int _ { \\mathbf { x } } p ( \\mathbf { x } ) p ( y | \\mathbf { x } ) d \\mathbf { x } \\approx } \\end{array}", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 197, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 197, + 161, + 211 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { N } \\sum p ( y | \\mathbf { x } _ { i } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 197, + 506, + 213 + ], + "score": 1.0, + "content": ". Note that this score can be made larger by a low-entropy per-sample posterior (i.e.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "the Inception network classifies a given sample with greater certainty) as well as a higher entropy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "aggregate posterior (i.e. the Inception network identifies a wide variety of classes among the sam-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "ples presented to it). Salimans et al. (2016) found this score correlated well with human evaluations", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "of samplers trained on CIFAR-10; we therefore employ the Inception score here as a quantitative", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "measure of visual fidelity of the samples, following the previous work’s protocol of evaluating the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "average Inception score over 10 independent groups of 5,000 samples each. Error estimates corre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 400, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 400, + 287 + ], + "score": 1.0, + "content": "spond to standard deviations, in keeping with previously reported results.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 302, + 479, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 481, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 481, + 317 + ], + "score": 1.0, + "content": "3 IMPROVING UNSUPERVISED GAN TRAINING ON DIVERSE DATASETS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "In this work, we focus on the apparent difficulty of training GANs to produce “object-like” sam-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "ples when trained on diverse collections of natural images. While Salimans et al. (2016) make", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "progress on this problem by employing labeled data and training the discriminator, here we aim to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "make progress on the unsupervised case. Nevertheless, our methods would be readily applicable to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 420, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 420, + 385 + ], + "score": 1.0, + "content": "supervised, semi-supervised or (with slight modifications) conditional setting.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 402 + ], + "score": 1.0, + "content": "We begin from the slightly subtle observation that in realistic manifestations of the GAN training", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "procedure, the discriminator’s (negative) gradient with respect to a sample points in a direction of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "(infinitesimal) local improvement with respect to the discriminator’s estimate of the sample being", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "score": 1.0, + "content": "data; it does not necessarily point in the direction of a draw from the data distribution. Indeed, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "literature is replete with instances of gradient descent with respect to the input of a classification", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "model, particularly wide-domain natural image classifiers, producing ghostly approximations to a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "particular class exemplar (Le et al., 2012; Erhan et al., 2009; Yosinski et al., 2015) when this proce-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "dure is carried out without additional guidance, to say nothing of the problems posed by adversarial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "examples (Szegedy et al., 2013; Goodfellow et al., 2014b) and fooling examples (Nguyen et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 485, + 136, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 136, + 500 + ], + "score": 1.0, + "content": "2015).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "While the gradient of the loss function defined by the discriminator may be a source of information", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "mostly relevant to very local improvements, the discriminator itself is a potentially valuable source", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "score": 1.0, + "content": "of compact descriptors of the training data. Many authors have noted the remarkable versatility of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "high-level features learned by convolutional networks (Donahue et al., 2014; Yosinski et al., 2014)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "and the degree to which high-level semantics can be reconstructed from even the deepest layers", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "of a network (Dosovitskiy & Brox, 2016). Although non-stationary, the distribution of the high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "level activations of the discriminator when evaluated on data is ripe for exploitation as an additional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 581, + 372, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 372, + 592 + ], + "score": 1.0, + "content": "source of knowledge about salient aspects of the data distribution.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 597, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 442, + 609 + ], + "score": 1.0, + "content": "We propose in this work to track this distribution with a denoising auto-encoder", + "type": "text" + }, + { + "bbox": [ + 442, + 597, + 459, + 609 + ], + "score": 0.93, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "trained on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "the discriminator’s hidden states when evaluated on training data. Alain & Bengio (2014) showed", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 371, + 632 + ], + "score": 1.0, + "content": "that a denoising auto-encoder trained on data from a distribution", + "type": "text" + }, + { + "bbox": [ + 371, + 619, + 391, + 631 + ], + "score": 0.92, + "content": "q ( \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 619, + 449, + 632 + ], + "score": 1.0, + "content": "estimates via", + "type": "text" + }, + { + "bbox": [ + 449, + 619, + 489, + 631 + ], + "score": 0.92, + "content": "r ( \\mathbf { h } ) - \\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 628, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 210, + 658 + ], + "score": 1.0, + "content": "gradient of the true log-dtransformed training data", + "type": "text" + }, + { + "bbox": [ + 241, + 630, + 276, + 646 + ], + "score": 0.93, + "content": "\\frac { \\partial \\log q ( \\mathbf { h } ) } { \\partial \\mathbf { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 628, + 326, + 658 + ], + "score": 1.0, + "content": "ce, if, then", + "type": "text" + }, + { + "bbox": [ + 400, + 628, + 421, + 658 + ], + "score": 1.0, + "content": "isingwith", + "type": "text" + }, + { + "bbox": [ + 466, + 628, + 506, + 658 + ], + "score": 1.0, + "content": "er on theindicates", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 210, + 644, + 466, + 656 + ], + "spans": [ + { + "bbox": [ + 210, + 644, + 252, + 655 + ], + "score": 0.91, + "content": "\\mathbf { h } = \\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 644, + 302, + 654 + ], + "score": 0.88, + "content": "\\mathbf { x } \\sim \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 644, + 400, + 655 + ], + "score": 0.91, + "content": "r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 644, + 466, + 656 + ], + "score": 0.93, + "content": "\\mathbf { x } ^ { \\prime } = G ( \\mathbf { z } )", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 181, + 667 + ], + "score": 1.0, + "content": "in which direction", + "type": "text" + }, + { + "bbox": [ + 182, + 655, + 192, + 665 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 654, + 339, + 667 + ], + "score": 1.0, + "content": "should be changed in order to make", + "type": "text" + }, + { + "bbox": [ + 339, + 655, + 385, + 667 + ], + "score": 0.89, + "content": "\\mathbf { h } = \\Phi ( \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "more like those features seen", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 219, + 679 + ], + "score": 1.0, + "content": "with the data. Minimizing", + "type": "text" + }, + { + "bbox": [ + 219, + 666, + 309, + 678 + ], + "score": 0.93, + "content": "| | r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } ) | | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 664, + 375, + 679 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 376, + 666, + 386, + 676 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 664, + 459, + 679 + ], + "score": 1.0, + "content": "would thus push", + "type": "text" + }, + { + "bbox": [ + 459, + 666, + 469, + 676 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "towards", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 461, + 689 + ], + "score": 1.0, + "content": "higher probability configurations according to the data distribution in the feature space", + "type": "text" + }, + { + "bbox": [ + 461, + 677, + 483, + 689 + ], + "score": 0.92, + "content": "\\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 677, + 505, + 689 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 265, + 700 + ], + "score": 1.0, + "content": "thus evaluate the discriminator features", + "type": "text" + }, + { + "bbox": [ + 266, + 688, + 288, + 700 + ], + "score": 0.92, + "content": "\\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 688, + 505, + 700 + ], + "score": 1.0, + "content": ", and the denoising auto-encoder, on samples from the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "generator, and treat the denoiser’s output reconstruction as a fixed target for the generator. We refer", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "to this procedure as denoising feature matching, and employ it as a learning signal for the generator", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 325, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 325, + 733 + ], + "score": 1.0, + "content": "in addition to the traditional GAN generator objective.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 46.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 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 2017", + "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, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "GANs represent a departure from traditional probabilistic models based on maximum likelihood", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "and its approximations in that they parameterize a sampler directly and lack a closed form for the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "likelihood. This makes objective, quantitative evaluation difficult. While previous results in the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 504, + 128 + ], + "score": 1.0, + "content": "literature have reported approximate likelihoods based on Parzen window estimates, Theis et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "(2015) has convincingly argued that these estimates can be quite misleading for high-dimensional", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 507, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 507, + 150 + ], + "score": 1.0, + "content": "data. In this work, we adopt the Inception score proposed by Salimans et al. (2016), which uses a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 442, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 442, + 161 + ], + "score": 1.0, + "content": "reference Inception convolutional neural network (Szegedy et al., 2015) to compute", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 82, + 507, + 161 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 164, + 390, + 180 + ], + "lines": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "spans": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "score": 0.93, + "content": "I ( \\{ \\mathbf { x } \\} _ { 1 } ^ { N } ) = \\exp { ( \\mathbb { E } \\left[ D _ { K L } ( p ( y | \\mathbf { x } ) \\| p ( y ) \\right] ) ) }", + "type": "interline_equation", + "image_path": "ee40ce6c4f641053150c9044c4c60954540ba3c3751f8800cd2121b953dddd2c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 220, + 164, + 390, + 180 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 133, + 199 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 185, + 162, + 197 + ], + "score": 0.92, + "content": "p ( y | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 184, + 389, + 199 + ], + "score": 1.0, + "content": "is provided by the output of the Inception network and", + "type": "text" + }, + { + "bbox": [ + 389, + 185, + 506, + 199 + ], + "score": 0.92, + "content": "\\begin{array} { r } { p ( y ) = \\int _ { \\mathbf { x } } p ( \\mathbf { x } ) p ( y | \\mathbf { x } ) d \\mathbf { x } \\approx } \\end{array}", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 197, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 197, + 161, + 211 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\frac { 1 } { N } \\sum p ( y | \\mathbf { x } _ { i } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 197, + 506, + 213 + ], + "score": 1.0, + "content": ". Note that this score can be made larger by a low-entropy per-sample posterior (i.e.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "the Inception network classifies a given sample with greater certainty) as well as a higher entropy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 220, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 104, + 220, + 505, + 234 + ], + "score": 1.0, + "content": "aggregate posterior (i.e. the Inception network identifies a wide variety of classes among the sam-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "ples presented to it). Salimans et al. (2016) found this score correlated well with human evaluations", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "of samplers trained on CIFAR-10; we therefore employ the Inception score here as a quantitative", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "measure of visual fidelity of the samples, following the previous work’s protocol of evaluating the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "average Inception score over 10 independent groups of 5,000 samples each. Error estimates corre-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 400, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 400, + 287 + ], + "score": 1.0, + "content": "spond to standard deviations, in keeping with previously reported results.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 184, + 506, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 302, + 479, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 481, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 481, + 317 + ], + "score": 1.0, + "content": "3 IMPROVING UNSUPERVISED GAN TRAINING ON DIVERSE DATASETS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "In this work, we focus on the apparent difficulty of training GANs to produce “object-like” sam-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "ples when trained on diverse collections of natural images. While Salimans et al. (2016) make", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "progress on this problem by employing labeled data and training the discriminator, here we aim to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "make progress on the unsupervised case. Nevertheless, our methods would be readily applicable to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 420, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 420, + 385 + ], + "score": 1.0, + "content": "supervised, semi-supervised or (with slight modifications) conditional setting.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 327, + 506, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 388, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 506, + 402 + ], + "score": 1.0, + "content": "We begin from the slightly subtle observation that in realistic manifestations of the GAN training", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "procedure, the discriminator’s (negative) gradient with respect to a sample points in a direction of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "(infinitesimal) local improvement with respect to the discriminator’s estimate of the sample being", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 433 + ], + "score": 1.0, + "content": "data; it does not necessarily point in the direction of a draw from the data distribution. Indeed, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "literature is replete with instances of gradient descent with respect to the input of a classification", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "model, particularly wide-domain natural image classifiers, producing ghostly approximations to a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "particular class exemplar (Le et al., 2012; Erhan et al., 2009; Yosinski et al., 2015) when this proce-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "dure is carried out without additional guidance, to say nothing of the problems posed by adversarial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 489 + ], + "score": 1.0, + "content": "examples (Szegedy et al., 2013; Goodfellow et al., 2014b) and fooling examples (Nguyen et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 485, + 136, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 136, + 500 + ], + "score": 1.0, + "content": "2015).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 387, + 506, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "While the gradient of the loss function defined by the discriminator may be a source of information", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 526 + ], + "score": 1.0, + "content": "mostly relevant to very local improvements, the discriminator itself is a potentially valuable source", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 506, + 538 + ], + "score": 1.0, + "content": "of compact descriptors of the training data. Many authors have noted the remarkable versatility of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "high-level features learned by convolutional networks (Donahue et al., 2014; Yosinski et al., 2014)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "and the degree to which high-level semantics can be reconstructed from even the deepest layers", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "of a network (Dosovitskiy & Brox, 2016). Although non-stationary, the distribution of the high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "level activations of the discriminator when evaluated on data is ripe for exploitation as an additional", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 581, + 372, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 372, + 592 + ], + "score": 1.0, + "content": "source of knowledge about salient aspects of the data distribution.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 504, + 506, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 597, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 442, + 609 + ], + "score": 1.0, + "content": "We propose in this work to track this distribution with a denoising auto-encoder", + "type": "text" + }, + { + "bbox": [ + 442, + 597, + 459, + 609 + ], + "score": 0.93, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "trained on", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "the discriminator’s hidden states when evaluated on training data. Alain & Bengio (2014) showed", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 371, + 632 + ], + "score": 1.0, + "content": "that a denoising auto-encoder trained on data from a distribution", + "type": "text" + }, + { + "bbox": [ + 371, + 619, + 391, + 631 + ], + "score": 0.92, + "content": "q ( \\mathbf { h } )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 619, + 449, + 632 + ], + "score": 1.0, + "content": "estimates via", + "type": "text" + }, + { + "bbox": [ + 449, + 619, + 489, + 631 + ], + "score": 0.92, + "content": "r ( \\mathbf { h } ) - \\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 628, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 210, + 658 + ], + "score": 1.0, + "content": "gradient of the true log-dtransformed training data", + "type": "text" + }, + { + "bbox": [ + 241, + 630, + 276, + 646 + ], + "score": 0.93, + "content": "\\frac { \\partial \\log q ( \\mathbf { h } ) } { \\partial \\mathbf { h } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 628, + 326, + 658 + ], + "score": 1.0, + "content": "ce, if, then", + "type": "text" + }, + { + "bbox": [ + 400, + 628, + 421, + 658 + ], + "score": 1.0, + "content": "isingwith", + "type": "text" + }, + { + "bbox": [ + 466, + 628, + 506, + 658 + ], + "score": 1.0, + "content": "er on theindicates", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 210, + 644, + 466, + 656 + ], + "spans": [ + { + "bbox": [ + 210, + 644, + 252, + 655 + ], + "score": 0.91, + "content": "\\mathbf { h } = \\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 644, + 302, + 654 + ], + "score": 0.88, + "content": "\\mathbf { x } \\sim \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 644, + 400, + 655 + ], + "score": 0.91, + "content": "r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 644, + 466, + 656 + ], + "score": 0.93, + "content": "\\mathbf { x } ^ { \\prime } = G ( \\mathbf { z } )", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 181, + 667 + ], + "score": 1.0, + "content": "in which direction", + "type": "text" + }, + { + "bbox": [ + 182, + 655, + 192, + 665 + ], + "score": 0.84, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 654, + 339, + 667 + ], + "score": 1.0, + "content": "should be changed in order to make", + "type": "text" + }, + { + "bbox": [ + 339, + 655, + 385, + 667 + ], + "score": 0.89, + "content": "\\mathbf { h } = \\Phi ( \\mathbf { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "more like those features seen", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 219, + 679 + ], + "score": 1.0, + "content": "with the data. Minimizing", + "type": "text" + }, + { + "bbox": [ + 219, + 666, + 309, + 678 + ], + "score": 0.93, + "content": "| | r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } ) | | ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 664, + 375, + 679 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 376, + 666, + 386, + 676 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 664, + 459, + 679 + ], + "score": 1.0, + "content": "would thus push", + "type": "text" + }, + { + "bbox": [ + 459, + 666, + 469, + 676 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 664, + 506, + 679 + ], + "score": 1.0, + "content": "towards", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 461, + 689 + ], + "score": 1.0, + "content": "higher probability configurations according to the data distribution in the feature space", + "type": "text" + }, + { + "bbox": [ + 461, + 677, + 483, + 689 + ], + "score": 0.92, + "content": "\\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 677, + 505, + 689 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 265, + 700 + ], + "score": 1.0, + "content": "thus evaluate the discriminator features", + "type": "text" + }, + { + "bbox": [ + 266, + 688, + 288, + 700 + ], + "score": 0.92, + "content": "\\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 688, + 505, + 700 + ], + "score": 1.0, + "content": ", and the denoising auto-encoder, on samples from the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "generator, and treat the denoiser’s output reconstruction as a fixed target for the generator. We refer", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "to this procedure as denoising feature matching, and employ it as a learning signal for the generator", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 325, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 325, + 733 + ], + "score": 1.0, + "content": "in addition to the traditional GAN generator objective.", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 46.5, + "bbox_fs": [ + 104, + 597, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 159, + 97 + ], + "score": 1.0, + "content": "Formally, let", + "type": "text" + }, + { + "bbox": [ + 159, + 83, + 168, + 93 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 80, + 303, + 97 + ], + "score": 1.0, + "content": "be the generator parameterized by", + "type": "text" + }, + { + "bbox": [ + 304, + 83, + 316, + 93 + ], + "score": 0.87, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 80, + 335, + 97 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 336, + 83, + 376, + 92 + ], + "score": 0.89, + "content": "D = d { \\circ } \\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "be our discriminator composing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 90, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 104, + 90, + 176, + 107 + ], + "score": 1.0, + "content": "feature extractor", + "type": "text" + }, + { + "bbox": [ + 176, + 93, + 247, + 106 + ], + "score": 0.92, + "content": "\\Phi ( \\cdot ) \\ : \\mathbb { R } ^ { n } \\ \\bar { \\mathbb { R } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 90, + 312, + 107 + ], + "score": 1.0, + "content": "and a classifier", + "type": "text" + }, + { + "bbox": [ + 313, + 93, + 389, + 105 + ], + "score": 0.91, + "content": "d ( \\cdot ) : \\mathbb { R } ^ { k } \\to [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 90, + 412, + 107 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 412, + 93, + 483, + 106 + ], + "score": 0.92, + "content": "C ( \\cdot ) : \\mathbb { R } ^ { k } \\to \\mathbb { R } ^ { \\bar { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 90, + 507, + 107 + ], + "score": 1.0, + "content": "be a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "corruption function to be applied at the input of the denoising auto-encoder when it is trained to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 296, + 128 + ], + "score": 1.0, + "content": "denoise. The parameters of the discriminator", + "type": "text" + }, + { + "bbox": [ + 297, + 116, + 306, + 125 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 115, + 456, + 128 + ], + "score": 1.0, + "content": ", comprising the parameters of both", + "type": "text" + }, + { + "bbox": [ + 456, + 116, + 462, + 125 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 115, + 482, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 483, + 116, + 491, + 125 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 115, + 505, + 128 + ], + "score": 1.0, + "content": ", is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 436, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 436, + 139 + ], + "score": 1.0, + "content": "trained as in Goodfellow et al. (2014a), while the generator is trained according to", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 142, + 459, + 165 + ], + "lines": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "spans": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "score": 0.9, + "content": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\left[ \\lambda _ { \\mathrm { d e n o i s e } } \\| \\Phi ( G ( \\mathbf { z } ) ) - r ( \\Phi ( G ( \\mathbf { z } ) ) ) \\| | ^ { 2 } - \\lambda _ { \\mathrm { a d v } } \\log D ( G ( z ) ) \\right]", + "type": "interline_equation", + "image_path": "9fb33ca769730051bdce5ac575ddc010ceaf5f6af105d6e45b004e40d243d7f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 170, + 504, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 134, + 183 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 171, + 168, + 182 + ], + "score": 0.92, + "content": "r ( G ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "is treated as constant with respect to gradient computations. Simultaneously, the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 306, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 142, + 194 + ], + "score": 1.0, + "content": "denoiser", + "type": "text" + }, + { + "bbox": [ + 143, + 182, + 159, + 194 + ], + "score": 0.9, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 181, + 306, + 194 + ], + "score": 1.0, + "content": "is trained according to the objective", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 198, + 385, + 221 + ], + "lines": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "spans": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "score": 0.92, + "content": "\\underset { \\theta _ { r } } { \\arg \\operatorname* { m i n } } \\mathop { { \\mathbb { E } } } _ { { \\mathbf { x } } \\sim { \\mathcal { D } } } \\| \\Phi ( { \\mathbf { x } } ) - r ( C ( \\Phi ( { \\mathbf { x } } ) ) ) \\| ^ { 2 }", + "type": "interline_equation", + "image_path": "58e69619f4024842b8268a99064c7f064bdf50c5191a4b3292f99e470b719851.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 233, + 188, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 187, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 179, + 245 + ], + "score": 1.0, + "content": "3.1 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 234, + 187, + 243 + ], + "score": 0.72, + "content": "\\Phi", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "The theory surrounding denoising auto-encoders applies when estimating a denoising function from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 182, + 278 + ], + "score": 1.0, + "content": "a data distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 265, + 216, + 277 + ], + "score": 0.92, + "content": "p ( v e c x )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 265, + 506, + 278 + ], + "score": 1.0, + "content": ". Here, we propose to estimate the denoising auto-encoder in the space", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 327, + 288 + ], + "score": 1.0, + "content": "of discriminator features, giving rise to a distribution", + "type": "text" + }, + { + "bbox": [ + 327, + 276, + 361, + 288 + ], + "score": 0.92, + "content": "q ( \\Phi ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 276, + 505, + 288 + ], + "score": 1.0, + "content": ". A natural question is what effect", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "this has on the gradient being backpropagated. This is difficult to analyze in general, as for most", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 191, + 310 + ], + "score": 1.0, + "content": "choices the mapping", + "type": "text" + }, + { + "bbox": [ + 191, + 298, + 200, + 308 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "will not be invertible, though it is instructive to examine the invertible case.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 307, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 201, + 325 + ], + "score": 1.0, + "content": "Assuming an invertible", + "type": "text" + }, + { + "bbox": [ + 201, + 311, + 258, + 322 + ], + "score": 0.9, + "content": "\\Phi : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 307, + 274, + 325 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 275, + 308, + 318, + 324 + ], + "score": 0.94, + "content": "\\begin{array} { r } { J = \\frac { \\partial \\Phi ( \\mathbf { \\bar { x } } ) } { \\partial \\mathbf { x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 307, + 394, + 325 + ], + "score": 1.0, + "content": "be the Jacobian of", + "type": "text" + }, + { + "bbox": [ + 394, + 311, + 402, + 321 + ], + "score": 0.8, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 307, + 422, + 325 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 423, + 310, + 501, + 323 + ], + "score": 0.92, + "content": "q ( \\Phi ( \\mathbf { x } ) ) = p ( \\mathbf { x } ) | J |", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 307, + 505, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 239, + 335 + ], + "score": 1.0, + "content": "By the inverse function theorem,", + "type": "text" + }, + { + "bbox": [ + 239, + 324, + 246, + 334 + ], + "score": 0.81, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 324, + 479, + 335 + ], + "score": 1.0, + "content": "is also invertible (and is in fact the Jacobian of the inverse", + "type": "text" + }, + { + "bbox": [ + 479, + 324, + 498, + 334 + ], + "score": 0.87, + "content": "\\Phi ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 324, + 505, + 335 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 454, + 347 + ], + "score": 1.0, + "content": "Applying the chain rule and re-arranging terms, taking advantage of the invertibility of", + "type": "text" + }, + { + "bbox": [ + 455, + 335, + 462, + 344 + ], + "score": 0.79, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 334, + 506, + 347 + ], + "score": 1.0, + "content": ", we arrive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 404, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 321, + 358 + ], + "score": 1.0, + "content": "at a straightforward relationship between the score of", + "type": "text" + }, + { + "bbox": [ + 321, + 348, + 327, + 357 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 347, + 394, + 358 + ], + "score": 1.0, + "content": "and the score of", + "type": "text" + }, + { + "bbox": [ + 394, + 348, + 401, + 357 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 347, + 404, + 358 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 375, + 405, + 469 + ], + "lines": [ + { + "bbox": [ + 206, + 375, + 405, + 469 + ], + "spans": [ + { + "bbox": [ + 206, + 375, + 405, + 469 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\frac { \\partial \\log q ( \\Phi ( \\mathbf { x } ) ) } { \\partial \\Phi ( \\mathbf { x } ) } = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { p } } ( \\mathbf { \\mathbf { x } } ) \\mid J \\mid ] } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\Phi ( \\mathbf { x } ) } + \\frac { \\partial \\log \\left| \\frac { \\partial \\Phi ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } \\right| } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\left( \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } + \\frac { \\partial \\log \\left| J \\right| } { \\partial \\mathbf { x } } \\right) J ^ { - 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "45b54f0b1f4bfc178d0457b8d54649a988ec8d755d452103517aed884c257747.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 206, + 375, + 405, + 388.42857142857144 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 206, + 388.42857142857144, + 405, + 401.8571428571429 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 206, + 401.8571428571429, + 405, + 415.28571428571433 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 206, + 415.28571428571433, + 405, + 428.7142857142858 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 428.7142857142858, + 405, + 442.1428571428572 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 442.1428571428572, + 405, + 455.57142857142867 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 206, + 455.57142857142867, + 405, + 469.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 133, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 135, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 135, + 484 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 487, + 362, + 515 + ], + "lines": [ + { + "bbox": [ + 248, + 487, + 362, + 515 + ], + "spans": [ + { + "bbox": [ + 248, + 487, + 362, + 515 + ], + "score": 0.94, + "content": "{ \\frac { \\partial \\log | J | } { \\partial x _ { k } } } = \\operatorname { T r } \\left( J ^ { - 1 } { \\frac { d J } { d x _ { k } } } \\right)", + "type": "interline_equation", + "image_path": "761c94ce4ea062d65fbead458c5b7ce1def1e2107844bd595dde46564edf0bd5.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 248, + 487, + 362, + 501.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 248, + 501.0, + 362, + 515.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 507, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 124, + 537 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 520, + 141, + 536 + ], + "score": 0.92, + "content": "\\scriptstyle { \\frac { d J } { d x _ { k } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 516, + 338, + 537 + ], + "score": 1.0, + "content": "is a matrix of scalar derivatives of elements of", + "type": "text" + }, + { + "bbox": [ + 338, + 522, + 344, + 531 + ], + "score": 0.28, + "content": "\\mathbf { J }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 516, + 410, + 537 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 410, + 523, + 422, + 533 + ], + "score": 0.85, + "content": "x _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 516, + 507, + 537 + ], + "score": 1.0, + "content": ". Thus, we see that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "the gradient backpropagated to the generator in an ideal setting is the gradient of the data dis-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 144, + 558 + ], + "score": 1.0, + "content": "tribution", + "type": "text" + }, + { + "bbox": [ + 144, + 545, + 164, + 556 + ], + "score": 0.91, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "along with an additive term which accounts for the changes in the rate of volume", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 208, + 568 + ], + "score": 1.0, + "content": "expansion/contraction in", + "type": "text" + }, + { + "bbox": [ + 208, + 556, + 217, + 565 + ], + "score": 0.81, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 556, + 278, + 568 + ], + "score": 1.0, + "content": "locally around", + "type": "text" + }, + { + "bbox": [ + 279, + 557, + 286, + 566 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 556, + 339, + 568 + ], + "score": 1.0, + "content": ". In practice,", + "type": "text" + }, + { + "bbox": [ + 340, + 556, + 348, + 566 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "is not invertible, but the added benefit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 429, + 580 + ], + "score": 1.0, + "content": "of the denoiser-targeted gradient appears to reduce underfitting to the modes of", + "type": "text" + }, + { + "bbox": [ + 429, + 569, + 435, + 578 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "in the generator,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 578, + 299, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 227, + 590 + ], + "score": 1.0, + "content": "irrespective of any distortions", + "type": "text" + }, + { + "bbox": [ + 227, + 578, + 236, + 587 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 578, + 299, + 590 + ], + "score": 1.0, + "content": "may introduce.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 209, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 630, + 504, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "Denoising feature matching was originally inspired by feature matching introduced by Salimans", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 641, + 477, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 477, + 653 + ], + "score": 1.0, + "content": "et al. (2016) as an alternative training criterion for GAN generators, namely (in our notation)", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 658, + 405, + 682 + ], + "lines": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "spans": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "score": 0.91, + "content": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\left. \\left. \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\left[ \\Phi ( \\mathbf { x } ) \\right] - \\mathbb { E } _ { \\mathbf { z } \\sim p ( z ) } \\left[ \\Phi ( G ( \\mathbf { z } ) ) \\right] \\right. \\right. ^ { 2 }", + "type": "interline_equation", + "image_path": "d1bdaaf6fad4b07cb9daeaa3ba4c997736cb68bde4b7d2710f49d419afd9a5a3.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 699 + ], + "score": 1.0, + "content": "Feature matching is equivalent to linear maximum mean discrepancy (Gretton et al., 2006), em-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 421, + 711 + ], + "score": 1.0, + "content": "ploying linear first moment matching in the space of discriminator features", + "type": "text" + }, + { + "bbox": [ + 421, + 699, + 440, + 711 + ], + "score": 0.91, + "content": "\\Phi ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "rather than the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "more familiar kernelized formulation. When performed on features in the penultimate layer, Sali-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "mans et al. (2016) found that the feature matching criterion was useful for the purpose of improving", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + } + ], + "page_idx": 3, + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 159, + 97 + ], + "score": 1.0, + "content": "Formally, let", + "type": "text" + }, + { + "bbox": [ + 159, + 83, + 168, + 93 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 80, + 303, + 97 + ], + "score": 1.0, + "content": "be the generator parameterized by", + "type": "text" + }, + { + "bbox": [ + 304, + 83, + 316, + 93 + ], + "score": 0.87, + "content": "\\theta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 80, + 335, + 97 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 336, + 83, + 376, + 92 + ], + "score": 0.89, + "content": "D = d { \\circ } \\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "be our discriminator composing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 90, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 104, + 90, + 176, + 107 + ], + "score": 1.0, + "content": "feature extractor", + "type": "text" + }, + { + "bbox": [ + 176, + 93, + 247, + 106 + ], + "score": 0.92, + "content": "\\Phi ( \\cdot ) \\ : \\mathbb { R } ^ { n } \\ \\bar { \\mathbb { R } } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 90, + 312, + 107 + ], + "score": 1.0, + "content": "and a classifier", + "type": "text" + }, + { + "bbox": [ + 313, + 93, + 389, + 105 + ], + "score": 0.91, + "content": "d ( \\cdot ) : \\mathbb { R } ^ { k } \\to [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 90, + 412, + 107 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 412, + 93, + 483, + 106 + ], + "score": 0.92, + "content": "C ( \\cdot ) : \\mathbb { R } ^ { k } \\to \\mathbb { R } ^ { \\bar { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 90, + 507, + 107 + ], + "score": 1.0, + "content": "be a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "corruption function to be applied at the input of the denoising auto-encoder when it is trained to", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 296, + 128 + ], + "score": 1.0, + "content": "denoise. The parameters of the discriminator", + "type": "text" + }, + { + "bbox": [ + 297, + 116, + 306, + 125 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 115, + 456, + 128 + ], + "score": 1.0, + "content": ", comprising the parameters of both", + "type": "text" + }, + { + "bbox": [ + 456, + 116, + 462, + 125 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 115, + 482, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 483, + 116, + 491, + 125 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 115, + 505, + 128 + ], + "score": 1.0, + "content": ", is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 436, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 436, + 139 + ], + "score": 1.0, + "content": "trained as in Goodfellow et al. (2014a), while the generator is trained according to", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 104, + 80, + 507, + 139 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 142, + 459, + 165 + ], + "lines": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "spans": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "score": 0.9, + "content": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\left[ \\lambda _ { \\mathrm { d e n o i s e } } \\| \\Phi ( G ( \\mathbf { z } ) ) - r ( \\Phi ( G ( \\mathbf { z } ) ) ) \\| | ^ { 2 } - \\lambda _ { \\mathrm { a d v } } \\log D ( G ( z ) ) \\right]", + "type": "interline_equation", + "image_path": "9fb33ca769730051bdce5ac575ddc010ceaf5f6af105d6e45b004e40d243d7f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 150, + 142, + 459, + 165 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 170, + 504, + 193 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 134, + 183 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 171, + 168, + 182 + ], + "score": 0.92, + "content": "r ( G ( \\mathbf { z } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "is treated as constant with respect to gradient computations. Simultaneously, the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 306, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 142, + 194 + ], + "score": 1.0, + "content": "denoiser", + "type": "text" + }, + { + "bbox": [ + 143, + 182, + 159, + 194 + ], + "score": 0.9, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 181, + 306, + 194 + ], + "score": 1.0, + "content": "is trained according to the objective", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 169, + 505, + 194 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 198, + 385, + 221 + ], + "lines": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "spans": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "score": 0.92, + "content": "\\underset { \\theta _ { r } } { \\arg \\operatorname* { m i n } } \\mathop { { \\mathbb { E } } } _ { { \\mathbf { x } } \\sim { \\mathcal { D } } } \\| \\Phi ( { \\mathbf { x } } ) - r ( C ( \\Phi ( { \\mathbf { x } } ) ) ) \\| ^ { 2 }", + "type": "interline_equation", + "image_path": "58e69619f4024842b8268a99064c7f064bdf50c5191a4b3292f99e470b719851.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 225, + 198, + 385, + 221 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 233, + 188, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 187, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 179, + 245 + ], + "score": 1.0, + "content": "3.1 EFFECT OF", + "type": "text" + }, + { + "bbox": [ + 179, + 234, + 187, + 243 + ], + "score": 0.72, + "content": "\\Phi", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 506, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "The theory surrounding denoising auto-encoders applies when estimating a denoising function from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 182, + 278 + ], + "score": 1.0, + "content": "a data distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 265, + 216, + 277 + ], + "score": 0.92, + "content": "p ( v e c x )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 265, + 506, + 278 + ], + "score": 1.0, + "content": ". Here, we propose to estimate the denoising auto-encoder in the space", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 327, + 288 + ], + "score": 1.0, + "content": "of discriminator features, giving rise to a distribution", + "type": "text" + }, + { + "bbox": [ + 327, + 276, + 361, + 288 + ], + "score": 0.92, + "content": "q ( \\Phi ( \\mathbf { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 276, + 505, + 288 + ], + "score": 1.0, + "content": ". A natural question is what effect", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "this has on the gradient being backpropagated. This is difficult to analyze in general, as for most", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 191, + 310 + ], + "score": 1.0, + "content": "choices the mapping", + "type": "text" + }, + { + "bbox": [ + 191, + 298, + 200, + 308 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "will not be invertible, though it is instructive to examine the invertible case.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 307, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 201, + 325 + ], + "score": 1.0, + "content": "Assuming an invertible", + "type": "text" + }, + { + "bbox": [ + 201, + 311, + 258, + 322 + ], + "score": 0.9, + "content": "\\Phi : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 307, + 274, + 325 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 275, + 308, + 318, + 324 + ], + "score": 0.94, + "content": "\\begin{array} { r } { J = \\frac { \\partial \\Phi ( \\mathbf { \\bar { x } } ) } { \\partial \\mathbf { x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 307, + 394, + 325 + ], + "score": 1.0, + "content": "be the Jacobian of", + "type": "text" + }, + { + "bbox": [ + 394, + 311, + 402, + 321 + ], + "score": 0.8, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 307, + 422, + 325 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 423, + 310, + 501, + 323 + ], + "score": 0.92, + "content": "q ( \\Phi ( \\mathbf { x } ) ) = p ( \\mathbf { x } ) | J |", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 307, + 505, + 325 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 239, + 335 + ], + "score": 1.0, + "content": "By the inverse function theorem,", + "type": "text" + }, + { + "bbox": [ + 239, + 324, + 246, + 334 + ], + "score": 0.81, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 324, + 479, + 335 + ], + "score": 1.0, + "content": "is also invertible (and is in fact the Jacobian of the inverse", + "type": "text" + }, + { + "bbox": [ + 479, + 324, + 498, + 334 + ], + "score": 0.87, + "content": "\\Phi ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 498, + 324, + 505, + 335 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 454, + 347 + ], + "score": 1.0, + "content": "Applying the chain rule and re-arranging terms, taking advantage of the invertibility of", + "type": "text" + }, + { + "bbox": [ + 455, + 335, + 462, + 344 + ], + "score": 0.79, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 334, + 506, + 347 + ], + "score": 1.0, + "content": ", we arrive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 347, + 404, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 321, + 358 + ], + "score": 1.0, + "content": "at a straightforward relationship between the score of", + "type": "text" + }, + { + "bbox": [ + 321, + 348, + 327, + 357 + ], + "score": 0.81, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 347, + 394, + 358 + ], + "score": 1.0, + "content": "and the score of", + "type": "text" + }, + { + "bbox": [ + 394, + 348, + 401, + 357 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 347, + 404, + 358 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 253, + 506, + 358 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 375, + 405, + 469 + ], + "lines": [ + { + "bbox": [ + 206, + 375, + 405, + 469 + ], + "spans": [ + { + "bbox": [ + 206, + 375, + 405, + 469 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\frac { \\partial \\log q ( \\Phi ( \\mathbf { x } ) ) } { \\partial \\Phi ( \\mathbf { x } ) } = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { p } } ( \\mathbf { \\mathbf { x } } ) \\mid J \\mid ] } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\Phi ( \\mathbf { x } ) } + \\frac { \\partial \\log \\left| \\frac { \\partial \\Phi ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } \\right| } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\left( \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } + \\frac { \\partial \\log \\left| J \\right| } { \\partial \\mathbf { x } } \\right) J ^ { - 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "45b54f0b1f4bfc178d0457b8d54649a988ec8d755d452103517aed884c257747.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 206, + 375, + 405, + 388.42857142857144 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 206, + 388.42857142857144, + 405, + 401.8571428571429 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 206, + 401.8571428571429, + 405, + 415.28571428571433 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 206, + 415.28571428571433, + 405, + 428.7142857142858 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 206, + 428.7142857142858, + 405, + 442.1428571428572 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 206, + 442.1428571428572, + 405, + 455.57142857142867 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 206, + 455.57142857142867, + 405, + 469.0000000000001 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 133, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 470, + 135, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 135, + 484 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 470, + 135, + 484 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 487, + 362, + 515 + ], + "lines": [ + { + "bbox": [ + 248, + 487, + 362, + 515 + ], + "spans": [ + { + "bbox": [ + 248, + 487, + 362, + 515 + ], + "score": 0.94, + "content": "{ \\frac { \\partial \\log | J | } { \\partial x _ { k } } } = \\operatorname { T r } \\left( J ^ { - 1 } { \\frac { d J } { d x _ { k } } } \\right)", + "type": "interline_equation", + "image_path": "761c94ce4ea062d65fbead458c5b7ce1def1e2107844bd595dde46564edf0bd5.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 248, + 487, + 362, + 501.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 248, + 501.0, + 362, + 515.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 505, + 589 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 507, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 124, + 537 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 520, + 141, + 536 + ], + "score": 0.92, + "content": "\\scriptstyle { \\frac { d J } { d x _ { k } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 516, + 338, + 537 + ], + "score": 1.0, + "content": "is a matrix of scalar derivatives of elements of", + "type": "text" + }, + { + "bbox": [ + 338, + 522, + 344, + 531 + ], + "score": 0.28, + "content": "\\mathbf { J }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 516, + 410, + 537 + ], + "score": 1.0, + "content": "with respect to", + "type": "text" + }, + { + "bbox": [ + 410, + 523, + 422, + 533 + ], + "score": 0.85, + "content": "x _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 516, + 507, + 537 + ], + "score": 1.0, + "content": ". Thus, we see that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "the gradient backpropagated to the generator in an ideal setting is the gradient of the data dis-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 544, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 144, + 558 + ], + "score": 1.0, + "content": "tribution", + "type": "text" + }, + { + "bbox": [ + 144, + 545, + 164, + 556 + ], + "score": 0.91, + "content": "p ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 544, + 505, + 558 + ], + "score": 1.0, + "content": "along with an additive term which accounts for the changes in the rate of volume", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 208, + 568 + ], + "score": 1.0, + "content": "expansion/contraction in", + "type": "text" + }, + { + "bbox": [ + 208, + 556, + 217, + 565 + ], + "score": 0.81, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 556, + 278, + 568 + ], + "score": 1.0, + "content": "locally around", + "type": "text" + }, + { + "bbox": [ + 279, + 557, + 286, + 566 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 556, + 339, + 568 + ], + "score": 1.0, + "content": ". In practice,", + "type": "text" + }, + { + "bbox": [ + 340, + 556, + 348, + 566 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "is not invertible, but the added benefit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 429, + 580 + ], + "score": 1.0, + "content": "of the denoiser-targeted gradient appears to reduce underfitting to the modes of", + "type": "text" + }, + { + "bbox": [ + 429, + 569, + 435, + 578 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "in the generator,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 578, + 299, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 227, + 590 + ], + "score": 1.0, + "content": "irrespective of any distortions", + "type": "text" + }, + { + "bbox": [ + 227, + 578, + 236, + 587 + ], + "score": 0.82, + "content": "\\Phi", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 578, + 299, + 590 + ], + "score": 1.0, + "content": "may introduce.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 516, + 507, + 590 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 209, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 630, + 504, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "Denoising feature matching was originally inspired by feature matching introduced by Salimans", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 641, + 477, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 477, + 653 + ], + "score": 1.0, + "content": "et al. (2016) as an alternative training criterion for GAN generators, namely (in our notation)", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 630, + 505, + 653 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 658, + 405, + 682 + ], + "lines": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "spans": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "score": 0.91, + "content": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\left. \\left. \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\left[ \\Phi ( \\mathbf { x } ) \\right] - \\mathbb { E } _ { \\mathbf { z } \\sim p ( z ) } \\left[ \\Phi ( G ( \\mathbf { z } ) ) \\right] \\right. \\right. ^ { 2 }", + "type": "interline_equation", + "image_path": "d1bdaaf6fad4b07cb9daeaa3ba4c997736cb68bde4b7d2710f49d419afd9a5a3.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 205, + 658, + 405, + 682 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 504, + 699 + ], + "score": 1.0, + "content": "Feature matching is equivalent to linear maximum mean discrepancy (Gretton et al., 2006), em-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 421, + 711 + ], + "score": 1.0, + "content": "ploying linear first moment matching in the space of discriminator features", + "type": "text" + }, + { + "bbox": [ + 421, + 699, + 440, + 711 + ], + "score": 0.91, + "content": "\\Phi ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "rather than the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "more familiar kernelized formulation. When performed on features in the penultimate layer, Sali-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "mans et al. (2016) found that the feature matching criterion was useful for the purpose of improving", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "results on semi-supervised classification, using classification of samples from the generator as a so-", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "phisticated form of data augmentation. Feature matching was, however, less successful at producing", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "samples with high visual fidelity. This is somewhat unsurprising given that the criterion is insensi-", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 467, + 128 + ], + "score": 1.0, + "content": "tive to higher-order statistics of the respective feature distributions. Indeed, a degenerate", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 468, + 116, + 477, + 126 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 477, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "which", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 288, + 139 + ], + "score": 1.0, + "content": "deterministically reproduces a single sample", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 288, + 127, + 299, + 137 + ], + "score": 0.26, + "content": "\\hat { \\mathbf { m } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 300, + 126, + 340, + 139 + ], + "score": 1.0, + "content": "such that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 340, + 126, + 425, + 138 + ], + "score": 0.95, + "content": "\\Phi ( \\hat { \\mathbf { m } } ) = \\mathbb { E } _ { \\mathbf { x } \\in \\mathcal { D } } \\Phi ( \\mathbf { x } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 425, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "trivially minimizes", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 302, + 151 + ], + "score": 1.0, + "content": "(10); in practice the joint training dynamics of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 302, + 138, + 312, + 147 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 312, + 137, + 331, + 151 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 332, + 138, + 341, + 147 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 342, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "do not appear to yield such degenerate", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 149, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 149, + 161 + ], + "score": 1.0, + "content": "solutions.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 689, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "results on semi-supervised classification, using classification of samples from the generator as a so-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "phisticated form of data augmentation. Feature matching was, however, less successful at producing", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "samples with high visual fidelity. This is somewhat unsurprising given that the criterion is insensi-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 467, + 128 + ], + "score": 1.0, + "content": "tive to higher-order statistics of the respective feature distributions. Indeed, a degenerate", + "type": "text" + }, + { + "bbox": [ + 468, + 116, + 477, + 126 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 288, + 139 + ], + "score": 1.0, + "content": "deterministically reproduces a single sample", + "type": "text" + }, + { + "bbox": [ + 288, + 127, + 299, + 137 + ], + "score": 0.26, + "content": "\\hat { \\mathbf { m } }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 126, + 340, + 139 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 340, + 126, + 425, + 138 + ], + "score": 0.95, + "content": "\\Phi ( \\hat { \\mathbf { m } } ) = \\mathbb { E } _ { \\mathbf { x } \\in \\mathcal { D } } \\Phi ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "trivially minimizes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 302, + 151 + ], + "score": 1.0, + "content": "(10); in practice the joint training dynamics of", + "type": "text" + }, + { + "bbox": [ + 302, + 138, + 312, + 147 + ], + "score": 0.81, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 137, + 331, + 151 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 332, + 138, + 341, + 147 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "do not appear to yield such degenerate", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 149, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 149, + 161 + ], + "score": 1.0, + "content": "solutions.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Rather than aiming to merely reduce linear separability between data and samples in the feature", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 175, + 189 + ], + "score": 1.0, + "content": "space defined by", + "type": "text" + }, + { + "bbox": [ + 176, + 176, + 194, + 188 + ], + "score": 0.91, + "content": "\\Phi ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 176, + 506, + 189 + ], + "score": 1.0, + "content": ", denoising feature matching selects a more probable (according to the feature", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "distribution implied by the data, as captured by the denoiser) feature space target for each sample", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 160, + 211 + ], + "score": 1.0, + "content": "produced by", + "type": "text" + }, + { + "bbox": [ + 161, + 199, + 170, + 208 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 198, + 230, + 211 + ], + "score": 1.0, + "content": "and regresses", + "type": "text" + }, + { + "bbox": [ + 230, + 199, + 240, + 208 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 198, + 432, + 211 + ], + "score": 1.0, + "content": "towards it. While an early loss of entropy in", + "type": "text" + }, + { + "bbox": [ + 432, + 198, + 441, + 208 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "could result in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the generator locking on to one or a few attractors in the denoiser’s energy landscape, we observe", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "that this does not happen when used in conjunction with the traditional GAN objective, and in fact", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "that the combination of the two objectives is notably robust to the collapses often observed in GAN", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 372, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 372, + 254 + ], + "score": 1.0, + "content": "training, even without taking additional measures to prevent them.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "This work also draws inspiration from Alain & Bengio (2014), which showed that a suitably trained", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "denoiser learns an operator which locally maps a sample towards regions of high probability un-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 487, + 294 + ], + "score": 1.0, + "content": "der the data distribution. They further showed that a suitably trained1 reconstruction function", + "type": "text" + }, + { + "bbox": [ + 488, + 281, + 504, + 293 + ], + "score": 0.89, + "content": "r ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 292, + 179, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 179, + 303 + ], + "score": 1.0, + "content": "behaves such that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 318, + 353, + 343 + ], + "lines": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "spans": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "score": 0.94, + "content": "r ( \\mathbf { x } ) - \\mathbf { x } \\propto \\frac { \\partial \\log p ( \\mathbf { x } ) } { \\partial \\mathbf { x } }", + "type": "interline_equation", + "image_path": "acd946045e8303d1508b052cdcef4cb65cd32b7b0e084d0fbb155da7484d98b9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 142, + 372 + ], + "score": 1.0, + "content": "That is,", + "type": "text" + }, + { + "bbox": [ + 142, + 360, + 183, + 371 + ], + "score": 0.91, + "content": "r ( \\mathbf { x } ) - \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "estimates the score of the data generating distribution, up to a multiplicative", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 371, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 381 + ], + "score": 1.0, + "content": "constant. Our use of denoising auto-encoders necessarily departs from idealized conditions in that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 423, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 423, + 394 + ], + "score": 1.0, + "content": "the denoiser is estimated online from an ever-changing distribution of features.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Several approaches to GAN-like models have cast the problem in terms of learning an energy func-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "tion. Kim & Bengio (2016) extends GANs by modeling the data distribution simultaneously with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "an energy function parameterized by a deep neural network (playing the role of the discriminator)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "and the traditional generator, carrying out learning with a learning rule resembling that of the Boltz-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "mann machine (Ackley et al., 1985), where the “negative phase” gradient is estimated from samples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "from the generator. The energy-based GAN formulation of Zhao et al. (2016) resembles our work in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "their use of an auto-encoder which is trained to faithfully reconstruct (in our case, a corrupted, func-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "tion of) the training data. The energy-based GAN replaces the discriminator with an auto-encoder,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 264, + 500 + ], + "score": 1.0, + "content": "which is trained to assign low energy", + "type": "text" + }, + { + "bbox": [ + 265, + 487, + 277, + 497 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 484, + 505, + 500 + ], + "score": 1.0, + "content": "reconstruction error) to training data and higher energy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 175, + 510 + ], + "score": 1.0, + "content": "to samples from", + "type": "text" + }, + { + "bbox": [ + 176, + 497, + 185, + 507 + ], + "score": 0.66, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 497, + 505, + 510 + ], + "score": 1.0, + "content": ". To discourage generator collapses, a “pull-away term” penalizes the normal-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "ized dot product in a feature space defined by the auto-encoder’s internal representation. In this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "work, we preserve the discriminator, trained in the usual discriminative fashion, and in fact preserve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "the traditional generator loss, instead augmenting it with a source of complementary information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "provided by targets obtained from the denoiser. The energy-based GAN can be viewed as training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "the generator to seek fixed points of the autoencoding function (i.e. by backpropagating through", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "the decoder and encoder in order to decrease reconstruction error), whereas we treat the output of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 123, + 586 + ], + "score": 0.92, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "as constant with respect to the optimization as in Lee et al. (2015). That is to say, rather than", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 584, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 599 + ], + "score": 1.0, + "content": "using backpropagation to steer the dynamics of the autoencoder, we instead employ our denoising", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 596, + 461, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 461, + 609 + ], + "score": 1.0, + "content": "autoencoder to augment the gradient information obtained by ordinary backpropagation.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Closest to our own approach, concurrent work on model-based super-resolution by Sønderby et al.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "score": 1.0, + "content": "(2016) trains a denoising auto-encoder on high-resolution ground truth and evaluates it on synthe-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "sized super-resolution images, using the difference between the original synthesized image and the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "denoiser’s output as an additional training signal for refining the output of the super-resolution net-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "work. Both Sønderby et al. (2016) and our own work are motivated by the results of Alain & Bengio", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "(2014) discussed above. Aside from addressing a different application area, our denoiser is learned", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 679, + 401, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 401, + 690 + ], + "score": 1.0, + "content": "on-the-fly from a high-level feature representation which is itself learned.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 721, + 468, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 470, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 459, + 733 + ], + "score": 1.0, + "content": "1In the limit of infinite training data, with isotropic Gaussian noise of some standard deviation", + "type": "text" + }, + { + "bbox": [ + 459, + 724, + 465, + 730 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 720, + 470, + 733 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 4 + } + ] + } + ] + }, + { + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 159 + ], + "lines": [], + "index": 3, + "bbox_fs": [ + 104, + 82, + 506, + 161 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Rather than aiming to merely reduce linear separability between data and samples in the feature", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 175, + 189 + ], + "score": 1.0, + "content": "space defined by", + "type": "text" + }, + { + "bbox": [ + 176, + 176, + 194, + 188 + ], + "score": 0.91, + "content": "\\Phi ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 176, + 506, + 189 + ], + "score": 1.0, + "content": ", denoising feature matching selects a more probable (according to the feature", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "distribution implied by the data, as captured by the denoiser) feature space target for each sample", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 160, + 211 + ], + "score": 1.0, + "content": "produced by", + "type": "text" + }, + { + "bbox": [ + 161, + 199, + 170, + 208 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 198, + 230, + 211 + ], + "score": 1.0, + "content": "and regresses", + "type": "text" + }, + { + "bbox": [ + 230, + 199, + 240, + 208 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 198, + 432, + 211 + ], + "score": 1.0, + "content": "towards it. While an early loss of entropy in", + "type": "text" + }, + { + "bbox": [ + 432, + 198, + 441, + 208 + ], + "score": 0.78, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "could result in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "the generator locking on to one or a few attractors in the denoiser’s energy landscape, we observe", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "that this does not happen when used in conjunction with the traditional GAN objective, and in fact", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "that the combination of the two objectives is notably robust to the collapses often observed in GAN", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 243, + 372, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 372, + 254 + ], + "score": 1.0, + "content": "training, even without taking additional measures to prevent them.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 165, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "This work also draws inspiration from Alain & Bengio (2014), which showed that a suitably trained", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "denoiser learns an operator which locally maps a sample towards regions of high probability un-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 504, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 487, + 294 + ], + "score": 1.0, + "content": "der the data distribution. They further showed that a suitably trained1 reconstruction function", + "type": "text" + }, + { + "bbox": [ + 488, + 281, + 504, + 293 + ], + "score": 0.89, + "content": "r ( \\cdot )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 292, + 179, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 179, + 303 + ], + "score": 1.0, + "content": "behaves such that", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 259, + 505, + 303 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 318, + 353, + 343 + ], + "lines": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "spans": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "score": 0.94, + "content": "r ( \\mathbf { x } ) - \\mathbf { x } \\propto \\frac { \\partial \\log p ( \\mathbf { x } ) } { \\partial \\mathbf { x } }", + "type": "interline_equation", + "image_path": "acd946045e8303d1508b052cdcef4cb65cd32b7b0e084d0fbb155da7484d98b9.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 257, + 318, + 353, + 343 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 142, + 372 + ], + "score": 1.0, + "content": "That is,", + "type": "text" + }, + { + "bbox": [ + 142, + 360, + 183, + 371 + ], + "score": 0.91, + "content": "r ( \\mathbf { x } ) - \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 358, + 505, + 372 + ], + "score": 1.0, + "content": "estimates the score of the data generating distribution, up to a multiplicative", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 371, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 381 + ], + "score": 1.0, + "content": "constant. Our use of denoising auto-encoders necessarily departs from idealized conditions in that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 423, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 423, + 394 + ], + "score": 1.0, + "content": "the denoiser is estimated online from an ever-changing distribution of features.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 358, + 505, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 607 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Several approaches to GAN-like models have cast the problem in terms of learning an energy func-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "tion. Kim & Bengio (2016) extends GANs by modeling the data distribution simultaneously with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "an energy function parameterized by a deep neural network (playing the role of the discriminator)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "and the traditional generator, carrying out learning with a learning rule resembling that of the Boltz-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "mann machine (Ackley et al., 1985), where the “negative phase” gradient is estimated from samples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "from the generator. The energy-based GAN formulation of Zhao et al. (2016) resembles our work in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 505, + 477 + ], + "score": 1.0, + "content": "their use of an auto-encoder which is trained to faithfully reconstruct (in our case, a corrupted, func-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "tion of) the training data. The energy-based GAN replaces the discriminator with an auto-encoder,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 484, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 264, + 500 + ], + "score": 1.0, + "content": "which is trained to assign low energy", + "type": "text" + }, + { + "bbox": [ + 265, + 487, + 277, + 497 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 484, + 505, + 500 + ], + "score": 1.0, + "content": "reconstruction error) to training data and higher energy", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 175, + 510 + ], + "score": 1.0, + "content": "to samples from", + "type": "text" + }, + { + "bbox": [ + 176, + 497, + 185, + 507 + ], + "score": 0.66, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 497, + 505, + 510 + ], + "score": 1.0, + "content": ". To discourage generator collapses, a “pull-away term” penalizes the normal-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "ized dot product in a feature space defined by the auto-encoder’s internal representation. In this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "work, we preserve the discriminator, trained in the usual discriminative fashion, and in fact preserve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "the traditional generator loss, instead augmenting it with a source of complementary information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "provided by targets obtained from the denoiser. The energy-based GAN can be viewed as training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "the generator to seek fixed points of the autoencoding function (i.e. by backpropagating through", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "the decoder and encoder in order to decrease reconstruction error), whereas we treat the output of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 123, + 586 + ], + "score": 0.92, + "content": "r ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "as constant with respect to the optimization as in Lee et al. (2015). That is to say, rather than", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 584, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 599 + ], + "score": 1.0, + "content": "using backpropagation to steer the dynamics of the autoencoder, we instead employ our denoising", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 596, + 461, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 461, + 609 + ], + "score": 1.0, + "content": "autoencoder to augment the gradient information obtained by ordinary backpropagation.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 397, + 506, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Closest to our own approach, concurrent work on model-based super-resolution by Sønderby et al.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 505, + 635 + ], + "score": 1.0, + "content": "(2016) trains a denoising auto-encoder on high-resolution ground truth and evaluates it on synthe-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "sized super-resolution images, using the difference between the original synthesized image and the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 658 + ], + "score": 1.0, + "content": "denoiser’s output as an additional training signal for refining the output of the super-resolution net-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "work. Both Sønderby et al. (2016) and our own work are motivated by the results of Alain & Bengio", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "(2014) discussed above. Aside from addressing a different application area, our denoiser is learned", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 679, + 401, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 401, + 690 + ], + "score": 1.0, + "content": "on-the-fly from a high-level feature representation which is itself learned.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 612, + 506, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "We evaluate denoising feature matching on learning synthesis models from three datasets of increas-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "ing diversity and size: CIFAR-10, STL-10, and ImageNet. Although several authors have described", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 311, + 148 + ], + "score": 1.0, + "content": "GAN-based image synthesis models operating at", + "type": "text" + }, + { + "bbox": [ + 311, + 136, + 357, + 146 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "(Salimans et al., 2016; Zhao et al.,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 149, + 159 + ], + "score": 1.0, + "content": "2016) and", + "type": "text" + }, + { + "bbox": [ + 149, + 146, + 192, + 157 + ], + "score": 0.89, + "content": "2 5 6 \\times 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "(Zhao et al., 2016) resolution, we carry out our investigations at relatively low", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 158, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 504, + 169 + ], + "score": 1.0, + "content": "resolutions, both for computational ease and because we believe that the problem of unconditional", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "modeling of diverse image collections is not well solved even at low resolutions; making progress", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 424, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 424, + 192 + ], + "score": 1.0, + "content": "in this regime is likely to yield insights that apply to the higher-resolution case.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 400, + 209 + ], + "score": 1.0, + "content": "In all experiments, we employ isotropic Gaussian corruption noise with", + "type": "text" + }, + { + "bbox": [ + 400, + 197, + 428, + 207 + ], + "score": 0.89, + "content": "\\sigma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 196, + 505, + 209 + ], + "score": 1.0, + "content": ". Although we ex-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 215, + 221 + ], + "score": 1.0, + "content": "perimented with annealing", + "type": "text" + }, + { + "bbox": [ + 216, + 209, + 223, + 217 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 206, + 505, + 221 + ], + "score": 1.0, + "content": "towards 0 (as also performed in Sønderby et al. (2016)), an annealing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "score": 1.0, + "content": "schedule which consistently outperformed fixed noise remained elusive. We experimented with con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "volutional denoisers, but our best results to date were obtained with deep, fully-connected denoisers", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "using the ReLU nonlinearity on the penultimate layer of the discriminator. The number of hidden", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "units was fixed to the same value in all denoiser layers, and the procedure is apparently robust to this", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 262, + 457, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 457, + 275 + ], + "score": 1.0, + "content": "hyperparameter choice, as long as it is greater than or equal to the input dimensionality.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "Our generator and discriminator architectures follow the methods outlined in Radford et al. (2015).", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "Accordingly, batch normalization (Ioffe & Szegedy, 2015) was used in the generator and discrimi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "nator in the same manner as Radford et al. (2015), and in all layers of the denoiser except the output", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 313, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 324 + ], + "score": 1.0, + "content": "layer. In particular, as in Radford et al. (2015), we separately batch normalize data and generator", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "samples for the discriminator and denoiser with respect to each source’s statistics. We calculate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "updates with respect to all losses with the parameters of all three networks fixed, and update all", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 345, + 218, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 218, + 357 + ], + "score": 1.0, + "content": "parameters simultaneously.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "All networks were trained with the Adam optimizer Kingma & Ba (2014) with a learning rate of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 370, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 128, + 383 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 370, + 147, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 147, + 372, + 186, + 384 + ], + "score": 0.91, + "content": "\\beta _ { 1 } = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 370, + 471, + 387 + ], + "score": 1.0, + "content": ". The Adam optimizer is scale invariant, and so it suffices to e.g. tune", + "type": "text" + }, + { + "bbox": [ + 471, + 372, + 504, + 384 + ], + "score": 0.31, + "content": "\\lambda _ { \\mathrm { d e n o i s e } }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 138, + 397 + ], + "score": 1.0, + "content": "and fix", + "type": "text" + }, + { + "bbox": [ + 139, + 384, + 159, + 395 + ], + "score": 0.9, + "content": "\\lambda _ { \\mathrm { a d v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 383, + 301, + 397 + ], + "score": 1.0, + "content": "to 1. In our experiments, we set", + "type": "text" + }, + { + "bbox": [ + 302, + 384, + 336, + 395 + ], + "score": 0.92, + "content": "\\lambda _ { d e n o i s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 383, + 350, + 397 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 351, + 383, + 385, + 395 + ], + "score": 0.91, + "content": "0 . 0 3 / n _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 383, + 418, + 397 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 419, + 385, + 431, + 394 + ], + "score": 0.86, + "content": "n _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "is the number of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "discriminator hidden units fed as input to the denoiser; this division decouples the scale of the first", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "term of (4) from the dimensionality of the representation used, reducing the need to adjust this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 426, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 426, + 429 + ], + "score": 1.0, + "content": "hyperparameter simply because we altered the architecture of the discriminator.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 178, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 179, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 179, + 466 + ], + "score": 1.0, + "content": "5.1 CIFAR-10", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 444, + 491 + ], + "score": 1.0, + "content": "CIFAR-10 (Krizhevsky & Hinton, 2009) is a small, well-studied dataset consisting of", + "type": "text" + }, + { + "bbox": [ + 444, + 478, + 504, + 489 + ], + "score": 0.88, + "content": "5 0 , 0 0 0 3 2 \\times 3 2", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "pixel RGB training images and 10,000 test images from 10 classes: airplane, automobile, bird, cat,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 500, + 260, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 260, + 514 + ], + "score": 1.0, + "content": "deer, dog, frog, horse, ship, and truck.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Samples from our model trained on CIFAR-10 are shown in Figure 1, and Inception scores for sev-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "eral methods, including those reported in Salimans et al. (2016) and scores computed from samples", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "generated from a model presented in Dumoulin et al. (2016), are presented in Table 1. We achieve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "a mean Inception score of 7.72, falling slightly short of Salimans et al. (2016), which employed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 562, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 392, + 573 + ], + "score": 1.0, + "content": "a supervised discriminator network (the same work reports a score of", + "type": "text" + }, + { + "bbox": [ + 392, + 562, + 438, + 572 + ], + "score": 0.87, + "content": "4 . 3 6 \\pm . 0 4", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 562, + 505, + 573 + ], + "score": 1.0, + "content": "when labels are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "omitted from their training procedure). Qualitatively, the samples include recognizable cars, boats", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 426, + 596 + ], + "score": 1.0, + "content": "and various animals. The best performing generator network consisted of the", + "type": "text" + }, + { + "bbox": [ + 426, + 583, + 461, + 594 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "ImageNet", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "architecture from Radford et al. (2015) with half the number of parameters at each layer, and less", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 471, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 126, + 618 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 126, + 605, + 146, + 616 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 605, + 471, + 618 + ], + "score": 1.0, + "content": "of the parameters of the CIFAR-10 generator presented in Salimans et al. (2016).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 636, + 492, + 675 + ], + "lines": [ + { + "bbox": [ + 118, + 636, + 492, + 675 + ], + "spans": [ + { + "bbox": [ + 118, + 636, + 492, + 675 + ], + "score": 0.64, + "content": "\\frac { \\mathrm { R e a l ~ d a t a ^ { \\star } ~ } } { 1 1 . 2 4 \\pm . 1 2 } \\left| \\begin{array} { c } { { \\mathrm { S e m i - s u p e r v i s e d } } } \\\\ { { \\mathrm { I m p r o v e d ~ G A N ~ ( S a l i m a n s ~ } e t a l ) ^ { \\star } } } \\\\ { { \\mathrm { 8 . 0 9 \\pm . 0 7 } } } \\end{array} \\right| \\left| \\begin{array} { c } { { \\mathrm { U n s u p e r v i s e d } } } \\\\ { { \\mathrm { A L I ~ ( D u m o u l i n ~ } e t a l ) ^ { \\dagger } } } \\\\ { { 5 . 3 4 \\pm 0 . 0 5 } } \\end{array} \\right| \\left. \\begin{array} { c } { { \\mathrm { 0 u r s ~ } } } \\\\ { { \\mathrm { 7 . 7 2 \\pm 0 . 1 3 } } } \\end{array} \\right|", + "type": "interline_equation", + "image_path": "8b94c8eb78cf54076859c0560bdd30258661f60b5deadf38471e18f76219f8d5.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 118, + 636, + 492, + 649.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 118, + 649.0, + 492, + 662.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 662.0, + 492, + 675.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "table", + "bbox": [], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 682, + 503, + 715 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 681, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 504, + 694 + ], + "score": 1.0, + "content": "Table 1: Inception scores for models of CIFAR-10. ? as reported in Salimans et al. (2016); semi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "supervised † computed from samples drawn using author-provided model parameters and imple-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 703, + 151, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 151, + 716 + ], + "score": 1.0, + "content": "mentation.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 201, + 96 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "We evaluate denoising feature matching on learning synthesis models from three datasets of increas-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "ing diversity and size: CIFAR-10, STL-10, and ImageNet. Although several authors have described", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 311, + 148 + ], + "score": 1.0, + "content": "GAN-based image synthesis models operating at", + "type": "text" + }, + { + "bbox": [ + 311, + 136, + 357, + 146 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 135, + 505, + 148 + ], + "score": 1.0, + "content": "(Salimans et al., 2016; Zhao et al.,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 149, + 159 + ], + "score": 1.0, + "content": "2016) and", + "type": "text" + }, + { + "bbox": [ + 149, + 146, + 192, + 157 + ], + "score": 0.89, + "content": "2 5 6 \\times 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "(Zhao et al., 2016) resolution, we carry out our investigations at relatively low", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 158, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 504, + 169 + ], + "score": 1.0, + "content": "resolutions, both for computational ease and because we believe that the problem of unconditional", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "modeling of diverse image collections is not well solved even at low resolutions; making progress", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 424, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 424, + 192 + ], + "score": 1.0, + "content": "in this regime is likely to yield insights that apply to the higher-resolution case.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 113, + 505, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 400, + 209 + ], + "score": 1.0, + "content": "In all experiments, we employ isotropic Gaussian corruption noise with", + "type": "text" + }, + { + "bbox": [ + 400, + 197, + 428, + 207 + ], + "score": 0.89, + "content": "\\sigma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 196, + 505, + 209 + ], + "score": 1.0, + "content": ". Although we ex-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 215, + 221 + ], + "score": 1.0, + "content": "perimented with annealing", + "type": "text" + }, + { + "bbox": [ + 216, + 209, + 223, + 217 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 206, + 505, + 221 + ], + "score": 1.0, + "content": "towards 0 (as also performed in Sønderby et al. (2016)), an annealing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 231 + ], + "score": 1.0, + "content": "schedule which consistently outperformed fixed noise remained elusive. We experimented with con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "volutional denoisers, but our best results to date were obtained with deep, fully-connected denoisers", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "using the ReLU nonlinearity on the penultimate layer of the discriminator. The number of hidden", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "units was fixed to the same value in all denoiser layers, and the procedure is apparently robust to this", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 262, + 457, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 457, + 275 + ], + "score": 1.0, + "content": "hyperparameter choice, as long as it is greater than or equal to the input dimensionality.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 196, + 505, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 505, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "Our generator and discriminator architectures follow the methods outlined in Radford et al. (2015).", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "Accordingly, batch normalization (Ioffe & Szegedy, 2015) was used in the generator and discrimi-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "nator in the same manner as Radford et al. (2015), and in all layers of the denoiser except the output", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 313, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 324 + ], + "score": 1.0, + "content": "layer. In particular, as in Radford et al. (2015), we separately batch normalize data and generator", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "samples for the discriminator and denoiser with respect to each source’s statistics. We calculate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "updates with respect to all losses with the parameters of all three networks fixed, and update all", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 345, + 218, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 218, + 357 + ], + "score": 1.0, + "content": "parameters simultaneously.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 279, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 506, + 374 + ], + "score": 1.0, + "content": "All networks were trained with the Adam optimizer Kingma & Ba (2014) with a learning rate of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 370, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 128, + 383 + ], + "score": 0.9, + "content": "1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 370, + 147, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 147, + 372, + 186, + 384 + ], + "score": 0.91, + "content": "\\beta _ { 1 } = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 370, + 471, + 387 + ], + "score": 1.0, + "content": ". The Adam optimizer is scale invariant, and so it suffices to e.g. tune", + "type": "text" + }, + { + "bbox": [ + 471, + 372, + 504, + 384 + ], + "score": 0.31, + "content": "\\lambda _ { \\mathrm { d e n o i s e } }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 138, + 397 + ], + "score": 1.0, + "content": "and fix", + "type": "text" + }, + { + "bbox": [ + 139, + 384, + 159, + 395 + ], + "score": 0.9, + "content": "\\lambda _ { \\mathrm { a d v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 383, + 301, + 397 + ], + "score": 1.0, + "content": "to 1. In our experiments, we set", + "type": "text" + }, + { + "bbox": [ + 302, + 384, + 336, + 395 + ], + "score": 0.92, + "content": "\\lambda _ { d e n o i s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 383, + 350, + 397 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 351, + 383, + 385, + 395 + ], + "score": 0.91, + "content": "0 . 0 3 / n _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 383, + 418, + 397 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 419, + 385, + 431, + 394 + ], + "score": 0.86, + "content": "n _ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "is the number of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "discriminator hidden units fed as input to the denoiser; this division decouples the scale of the first", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 417 + ], + "score": 1.0, + "content": "term of (4) from the dimensionality of the representation used, reducing the need to adjust this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 426, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 426, + 429 + ], + "score": 1.0, + "content": "hyperparameter simply because we altered the architecture of the discriminator.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 361, + 506, + 429 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 178, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 179, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 179, + 466 + ], + "score": 1.0, + "content": "5.1 CIFAR-10", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 504, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 444, + 491 + ], + "score": 1.0, + "content": "CIFAR-10 (Krizhevsky & Hinton, 2009) is a small, well-studied dataset consisting of", + "type": "text" + }, + { + "bbox": [ + 444, + 478, + 504, + 489 + ], + "score": 0.88, + "content": "5 0 , 0 0 0 3 2 \\times 3 2", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "pixel RGB training images and 10,000 test images from 10 classes: airplane, automobile, bird, cat,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 500, + 260, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 260, + 514 + ], + "score": 1.0, + "content": "deer, dog, frog, horse, ship, and truck.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 478, + 505, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "Samples from our model trained on CIFAR-10 are shown in Figure 1, and Inception scores for sev-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "eral methods, including those reported in Salimans et al. (2016) and scores computed from samples", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "generated from a model presented in Dumoulin et al. (2016), are presented in Table 1. We achieve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "a mean Inception score of 7.72, falling slightly short of Salimans et al. (2016), which employed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 562, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 392, + 573 + ], + "score": 1.0, + "content": "a supervised discriminator network (the same work reports a score of", + "type": "text" + }, + { + "bbox": [ + 392, + 562, + 438, + 572 + ], + "score": 0.87, + "content": "4 . 3 6 \\pm . 0 4", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 562, + 505, + 573 + ], + "score": 1.0, + "content": "when labels are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "omitted from their training procedure). Qualitatively, the samples include recognizable cars, boats", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 426, + 596 + ], + "score": 1.0, + "content": "and various animals. The best performing generator network consisted of the", + "type": "text" + }, + { + "bbox": [ + 426, + 583, + 461, + 594 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "ImageNet", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "architecture from Radford et al. (2015) with half the number of parameters at each layer, and less", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 471, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 126, + 618 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 126, + 605, + 146, + 616 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 605, + 471, + 618 + ], + "score": 1.0, + "content": "of the parameters of the CIFAR-10 generator presented in Salimans et al. (2016).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 517, + 506, + 618 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 636, + 492, + 675 + ], + "lines": [ + { + "bbox": [ + 118, + 636, + 492, + 675 + ], + "spans": [ + { + "bbox": [ + 118, + 636, + 492, + 675 + ], + "score": 0.64, + "content": "\\frac { \\mathrm { R e a l ~ d a t a ^ { \\star } ~ } } { 1 1 . 2 4 \\pm . 1 2 } \\left| \\begin{array} { c } { { \\mathrm { S e m i - s u p e r v i s e d } } } \\\\ { { \\mathrm { I m p r o v e d ~ G A N ~ ( S a l i m a n s ~ } e t a l ) ^ { \\star } } } \\\\ { { \\mathrm { 8 . 0 9 \\pm . 0 7 } } } \\end{array} \\right| \\left| \\begin{array} { c } { { \\mathrm { U n s u p e r v i s e d } } } \\\\ { { \\mathrm { A L I ~ ( D u m o u l i n ~ } e t a l ) ^ { \\dagger } } } \\\\ { { 5 . 3 4 \\pm 0 . 0 5 } } \\end{array} \\right| \\left. \\begin{array} { c } { { \\mathrm { 0 u r s ~ } } } \\\\ { { \\mathrm { 7 . 7 2 \\pm 0 . 1 3 } } } \\end{array} \\right|", + "type": "interline_equation", + "image_path": "8b94c8eb78cf54076859c0560bdd30258661f60b5deadf38471e18f76219f8d5.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 118, + 636, + 492, + 649.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 118, + 649.0, + 492, + 662.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 662.0, + 492, + 675.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "table", + "bbox": [], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 682, + 503, + 715 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 681, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 504, + 694 + ], + "score": 1.0, + "content": "Table 1: Inception scores for models of CIFAR-10. ? as reported in Salimans et al. (2016); semi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "supervised † computed from samples drawn using author-provided model parameters and imple-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 703, + 151, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 151, + 716 + ], + "score": 1.0, + "content": "mentation.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "index": 45 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 504, + 307 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 504, + 307 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 504, + 307 + ], + "score": 0.972, + "type": "image", + "image_path": "2920d907092d5dbf8c4c4f921094af220f27cdd9f81d1d9481a0c8268052aabc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 504, + 156.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 156.33333333333331, + 504, + 231.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 231.66666666666663, + 504, + 306.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 109, + 319, + 500, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 318, + 500, + 333 + ], + "spans": [ + { + "bbox": [ + 109, + 318, + 500, + 333 + ], + "score": 1.0, + "content": "Figure 1: Samples generated from a model trained with denoising feature matching on CIFAR10.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 107, + 350, + 166, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 167, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 167, + 363 + ], + "score": 1.0, + "content": "5.2 STL-10", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "STL-10 (Coates et al., 2011) is a dataset consisting of a small labeled set and larger (100,000)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 175, + 395 + ], + "score": 1.0, + "content": "unlabeled set of", + "type": "text" + }, + { + "bbox": [ + 176, + 383, + 211, + 393 + ], + "score": 0.79, + "content": "9 6 \\times 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "RGB images. The unlabeled set is a subset of ImageNet that is more", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "diverse than CIFAR-10 (or the labeled set of STL-10), but less diverse than full ImageNet. We", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 400, + 416 + ], + "score": 1.0, + "content": "downsample by a factor of 2 on each dimension and train our networks at", + "type": "text" + }, + { + "bbox": [ + 401, + 404, + 433, + 415 + ], + "score": 0.9, + "content": "4 8 \\times 4 8", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 404, + 505, + 416 + ], + "score": 1.0, + "content": ". Inception scores", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "score": 1.0, + "content": "for our model and a baseline, consisting of the same architecture trained without denoising feature", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 426, + 491, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 491, + 439 + ], + "score": 1.0, + "content": "matching (both trained for 50 epochs), are shown in Table 2. Samples are displayed in Figure 2.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "table", + "bbox": [ + 209, + 447, + 402, + 472 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 209, + 447, + 402, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "spans": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "score": 0.76, + "html": "
Real dataOursGANBaseline
26.08±.268.51 ± 0.137.84 ± .07
", + "type": "table", + "image_path": "c38dc87ca763335a4636a98017817abffe08c22e36a3c5a8372d04f8f7a18e56.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 167, + 480, + 442, + 492 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 479, + 443, + 492 + ], + "spans": [ + { + "bbox": [ + 168, + 479, + 443, + 492 + ], + "score": 1.0, + "content": "Table 2: Inception scores for models of the unlabeled set of STL-10.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 510, + 179, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 181, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 181, + 523 + ], + "score": 1.0, + "content": "5.3 IMAGENET", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 530, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 543 + ], + "score": 1.0, + "content": "The ImageNet database (Russakovsky et al., 2014) is a large-scale database of natural images. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 540, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 104, + 540, + 506, + 556 + ], + "score": 1.0, + "content": "train on the designated training set of the most widely used release, the 2012 ImageNet Large", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 550, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 567 + ], + "score": 1.0, + "content": "Scale Visual Recognition Challenge (ILSVRC2012), consisting of a highly unbalanced split among", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "1,000 object classes. We preprocess the dataset as rescaled central crops following the procedure of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 249, + 587 + ], + "score": 1.0, + "content": "Krizhevsky et al. (2012), except at", + "type": "text" + }, + { + "bbox": [ + 249, + 575, + 284, + 585 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "resolution to facilitate comparison with Radford et al.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 585, + 139, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 139, + 599 + ], + "score": 1.0, + "content": "(2015).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 614 + ], + "score": 1.0, + "content": "ImageNet poses a particular challenge for unsupervised GANs due to its high level of diversity and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "class skew. With a generator and discriminator architecture identical to that used for the same dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 623, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 639 + ], + "score": 1.0, + "content": "in Radford et al. (2015), we achieve a higher Inception score using denoising feature matching, using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "denoiser with 10 hidden layers of 2,048 rectified linear units each. Both fall far short of the score", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "assigned to real data at this resolution; there is still plenty of room for improvement. Samples are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 657, + 196, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 196, + 670 + ], + "score": 1.0, + "content": "displayed in Figure 3.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 685, + 329, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 330, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 330, + 699 + ], + "score": 1.0, + "content": "6 DISCUSSION AND FUTURE DIRECTIONS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We have shown that training a denoising model on high-level discriminator activations in a GAN,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "and using the denoiser to propose high-level feature targets for the generator, can usefully improve", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 504, + 307 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 504, + 307 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 504, + 307 + ], + "score": 0.972, + "type": "image", + "image_path": "2920d907092d5dbf8c4c4f921094af220f27cdd9f81d1d9481a0c8268052aabc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 504, + 156.33333333333331 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 156.33333333333331, + 504, + 231.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 231.66666666666663, + 504, + 306.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 109, + 319, + 500, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 318, + 500, + 333 + ], + "spans": [ + { + "bbox": [ + 109, + 318, + 500, + 333 + ], + "score": 1.0, + "content": "Figure 1: Samples generated from a model trained with denoising feature matching on CIFAR10.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 107, + 350, + 166, + 362 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 167, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 167, + 363 + ], + "score": 1.0, + "content": "5.2 STL-10", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "STL-10 (Coates et al., 2011) is a dataset consisting of a small labeled set and larger (100,000)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 175, + 395 + ], + "score": 1.0, + "content": "unlabeled set of", + "type": "text" + }, + { + "bbox": [ + 176, + 383, + 211, + 393 + ], + "score": 0.79, + "content": "9 6 \\times 9 6", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "RGB images. The unlabeled set is a subset of ImageNet that is more", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 406 + ], + "score": 1.0, + "content": "diverse than CIFAR-10 (or the labeled set of STL-10), but less diverse than full ImageNet. We", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 400, + 416 + ], + "score": 1.0, + "content": "downsample by a factor of 2 on each dimension and train our networks at", + "type": "text" + }, + { + "bbox": [ + 401, + 404, + 433, + 415 + ], + "score": 0.9, + "content": "4 8 \\times 4 8", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 404, + 505, + 416 + ], + "score": 1.0, + "content": ". Inception scores", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 505, + 428 + ], + "score": 1.0, + "content": "for our model and a baseline, consisting of the same architecture trained without denoising feature", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 426, + 491, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 491, + 439 + ], + "score": 1.0, + "content": "matching (both trained for 50 epochs), are shown in Table 2. Samples are displayed in Figure 2.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 370, + 506, + 439 + ] + }, + { + "type": "table", + "bbox": [ + 209, + 447, + 402, + 472 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 209, + 447, + 402, + 472 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "spans": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "score": 0.76, + "html": "
Real dataOursGANBaseline
26.08±.268.51 ± 0.137.84 ± .07
", + "type": "table", + "image_path": "c38dc87ca763335a4636a98017817abffe08c22e36a3c5a8372d04f8f7a18e56.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 209, + 447, + 402, + 472 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 167, + 480, + 442, + 492 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 168, + 479, + 443, + 492 + ], + "spans": [ + { + "bbox": [ + 168, + 479, + 443, + 492 + ], + "score": 1.0, + "content": "Table 2: Inception scores for models of the unlabeled set of STL-10.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 510, + 179, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 181, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 181, + 523 + ], + "score": 1.0, + "content": "5.3 IMAGENET", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 530, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 543 + ], + "score": 1.0, + "content": "The ImageNet database (Russakovsky et al., 2014) is a large-scale database of natural images. We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 540, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 104, + 540, + 506, + 556 + ], + "score": 1.0, + "content": "train on the designated training set of the most widely used release, the 2012 ImageNet Large", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 550, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 567 + ], + "score": 1.0, + "content": "Scale Visual Recognition Challenge (ILSVRC2012), consisting of a highly unbalanced split among", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "1,000 object classes. We preprocess the dataset as rescaled central crops following the procedure of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 249, + 587 + ], + "score": 1.0, + "content": "Krizhevsky et al. (2012), except at", + "type": "text" + }, + { + "bbox": [ + 249, + 575, + 284, + 585 + ], + "score": 0.9, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "resolution to facilitate comparison with Radford et al.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 585, + 139, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 139, + 599 + ], + "score": 1.0, + "content": "(2015).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 530, + 506, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 614 + ], + "score": 1.0, + "content": "ImageNet poses a particular challenge for unsupervised GANs due to its high level of diversity and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "class skew. With a generator and discriminator architecture identical to that used for the same dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 623, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 639 + ], + "score": 1.0, + "content": "in Radford et al. (2015), we achieve a higher Inception score using denoising feature matching, using", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "denoiser with 10 hidden layers of 2,048 rectified linear units each. Both fall far short of the score", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "assigned to real data at this resolution; there is still plenty of room for improvement. Samples are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 657, + 196, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 196, + 670 + ], + "score": 1.0, + "content": "displayed in Figure 3.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 603, + 506, + 670 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 685, + 329, + 698 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 330, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 330, + 699 + ], + "score": 1.0, + "content": "6 DISCUSSION AND FUTURE DIRECTIONS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We have shown that training a denoising model on high-level discriminator activations in a GAN,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "and using the denoiser to propose high-level feature targets for the generator, can usefully improve", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 709, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 121, + 504, + 333 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 121, + 504, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 121, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 107, + 121, + 504, + 333 + ], + "score": 0.973, + "type": "image", + "image_path": "29920cf699d2fec30f17d655c1dfae487045c1563aaf102ee3b2620d354b1c93.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 121, + 504, + 191.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 191.66666666666669, + 504, + 262.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 262.33333333333337, + 504, + 333.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 345, + 503, + 367 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "Figure 2: Samples from a model trained with denoising feature matching on the unlabeled portion", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 356, + 198, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 198, + 368 + ], + "score": 1.0, + "content": "of the STL-10 dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 107, + 453, + 505, + 666 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 453, + 505, + 666 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 453, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 505, + 666 + ], + "score": 0.973, + "type": "image", + "image_path": "be1a200c0eb6f3b8c857de32f4dd2d30763756f36937a68393656c0630cafdd7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 453, + 505, + 524.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 524.0, + 505, + 595.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 595.0, + 505, + 666.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 156, + 677, + 454, + 689 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 155, + 676, + 455, + 691 + ], + "spans": [ + { + "bbox": [ + 155, + 676, + 375, + 691 + ], + "score": 1.0, + "content": "Figure 3: Samples from our model of ILSVRC2012 at", + "type": "text" + }, + { + "bbox": [ + 375, + 677, + 409, + 689 + ], + "score": 0.82, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 676, + 455, + 691 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 121, + 504, + 333 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 121, + 504, + 333 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 121, + 504, + 333 + ], + "spans": [ + { + "bbox": [ + 107, + 121, + 504, + 333 + ], + "score": 0.973, + "type": "image", + "image_path": "29920cf699d2fec30f17d655c1dfae487045c1563aaf102ee3b2620d354b1c93.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 121, + 504, + 191.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 191.66666666666669, + 504, + 262.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 262.33333333333337, + 504, + 333.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 345, + 503, + 367 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "Figure 2: Samples from a model trained with denoising feature matching on the unlabeled portion", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 356, + 198, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 198, + 368 + ], + "score": 1.0, + "content": "of the STL-10 dataset.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "image", + "bbox": [ + 107, + 453, + 505, + 666 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 453, + 505, + 666 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 453, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 107, + 453, + 505, + 666 + ], + "score": 0.973, + "type": "image", + "image_path": "be1a200c0eb6f3b8c857de32f4dd2d30763756f36937a68393656c0630cafdd7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 107, + 453, + 505, + 524.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 524.0, + 505, + 595.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 595.0, + 505, + 666.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 156, + 677, + 454, + 689 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 155, + 676, + 455, + 691 + ], + "spans": [ + { + "bbox": [ + 155, + 676, + 375, + 691 + ], + "score": 1.0, + "content": "Figure 3: Samples from our model of ILSVRC2012 at", + "type": "text" + }, + { + "bbox": [ + 375, + 677, + 409, + 689 + ], + "score": 0.82, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 676, + 455, + 691 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 7.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 213, + 79, + 397, + 104 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 213, + 79, + 397, + 104 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "spans": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "score": 0.959, + "html": "
Real dataRadford et al*Ours
25.78 ± .478.83 ± 0.149.18± .13
", + "type": "table", + "image_path": "76af805e34a814df92a346b3fe98cf47a9e0dbb7f53cc191e57e04cc6402a5bd.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "spans": [], + "index": 0 + } + ] + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 346, + 125 + ], + "score": 1.0, + "content": "Table 3: Inception scores for models of ILSVRC 2012 at", + "type": "text" + }, + { + "bbox": [ + 347, + 113, + 382, + 123 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 112, + 505, + 125 + ], + "score": 1.0, + "content": "resolution. ? computed from", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 123, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 416, + 136 + ], + "score": 1.0, + "content": "samples drawn using author-provided model parameters and implementation.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "GAN image models. Higher Inception scores, as well as visual inspection, suggest that the procedure", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "captures class-specific features of the training data in a manner superior to the original adversarial", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 192 + ], + "score": 1.0, + "content": "objective alone. That being said, we do not believe we are yet making optimal use of the paradigm.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "The non-stationarity of the feature distribution on which the denoiser is trained could be limiting the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "ability of the denoiser to obtain a good fit, and the information backpropagated to the generator is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "always slightly stale. Steps to reduce this non-stationarity may be fruitful; we experimented briefly", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "with historical averaging as explored in Salimans et al. (2016) but did not observe a clear benefit thus", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "far. Structured denoisers, including denoisers that learn an energy function for multiple hidden layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 244, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 504, + 255 + ], + "score": 1.0, + "content": "at once, could conceivably aid in obtaining a better fit. Learning a partially stochastic transition", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "operator rather than a deterministic denoiser could conceivably capture interesting multimodalities", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 317, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 317, + 279 + ], + "score": 1.0, + "content": "that are “blurred” by a unimodal denoising function.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "Our method is orthogonal and could conceivably be used in combination with several other GAN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "extensions. For example, methods incorporating an encoder component (Donahue et al., 2016;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "Dumoulin et al., 2016), various existing conditional architectures (Mirza & Osindero, 2014; Denton", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "et al., 2015; Reed et al., 2016), or the semi-supervised variant employed in Salimans et al. (2016),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 412, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 412, + 339 + ], + "score": 1.0, + "content": "could all be trained with an additional denoising feature matching objective.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "We have proposed a useful heuristic, but a better theoretical grounding regarding how GANs are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "trained in practice is a necessary direction for future work, including grounded criteria for assess-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "score": 1.0, + "content": "ing mode coverage and mass misassignment, and principled criteria for assessing convergence or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 215, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 215, + 390 + ], + "score": 1.0, + "content": "performing early stopping.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 200, + 411 + ], + "lines": [ + { + "bbox": [ + 107, + 402, + 200, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 402, + 200, + 412 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "We thank Ian Goodfellow, Laurent Dinh, Yaroslav Ganin and Kyle Kastner for helpful discussions.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "We thank Vincent Dumoulin and Ishmael Belghazi for making available code and model parameters", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "score": 1.0, + "content": "used in comparison to ALI, as well as Alec Radford for making available the code and model pa-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "rameters for his ImageNet model. We would like to thank Antonia Creswell and Hiroyuki Yamazaki", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 504, + 476 + ], + "score": 1.0, + "content": "for pointing out an error in the initial version of this manuscript, and anonymous reviewers for valu-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "able feedback. We thank the University of Montreal and Compute Canada for the computational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 504, + 497 + ], + "score": 1.0, + "content": "resources used for this investigation, as well as the authors of Theano (Al-Rfou et al., 2016), Blocks", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "and Fuel (van Merrienboer et al., 2015). We thank CIFAR, NSERC, Google, Samsung and Canada ¨", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 224, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 224, + 520 + ], + "score": 1.0, + "content": "Research Chairs for funding.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 107, + 535, + 175, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 176, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 176, + 549 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "score": 1.0, + "content": "David H Ackley, Geoffrey E Hinton, and Terrence J Sejnowski. A learning algorithm for boltzmann", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 565, + 321, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 321, + 577 + ], + "score": 1.0, + "content": "machines. Cognitive science, 9(1):147–169, 1985.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 503, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "score": 1.0, + "content": "Rami Al-Rfou, Guillaume Alain, Amjad Almahairi, and et al. Theano: A python framework for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 596, + 504, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 504, + 608 + ], + "score": 1.0, + "content": "fast computation of mathematical expressions. CoRR, abs/1605.02688, 2016. URL http://", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 608, + 266, + 619 + ], + "spans": [ + { + "bbox": [ + 117, + 608, + 266, + 619 + ], + "score": 1.0, + "content": "arxiv.org/abs/1605.02688.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 640 + ], + "score": 1.0, + "content": "Guillaume Alain and Yoshua Bengio. What regularized auto-encoders learn from the data-generating", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 637, + 429, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 429, + 650 + ], + "score": 1.0, + "content": "distribution. Journal of Machine Learning Research, 15(1):3563–3593, 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "A. Coates, H. Lee, and A. Y. Ng. An analysis of single-layer networks in unsupervised feature", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "learning. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 250, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 250, + 690 + ], + "score": 1.0, + "content": "Statistics (AISTATS 2011), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 105, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "laplacian pyramid of adversarial networks. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 206, + 731 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 206, + 731 + ], + "score": 1.0, + "content": "pp. 1486–1494, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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": [ + 213, + 79, + 397, + 104 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 213, + 79, + 397, + 104 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "spans": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "score": 0.959, + "html": "
Real dataRadford et al*Ours
25.78 ± .478.83 ± 0.149.18± .13
", + "type": "table", + "image_path": "76af805e34a814df92a346b3fe98cf47a9e0dbb7f53cc191e57e04cc6402a5bd.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 213, + 79, + 397, + 104 + ], + "spans": [], + "index": 0 + } + ] + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 112, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 346, + 125 + ], + "score": 1.0, + "content": "Table 3: Inception scores for models of ILSVRC 2012 at", + "type": "text" + }, + { + "bbox": [ + 347, + 113, + 382, + 123 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 112, + 505, + 125 + ], + "score": 1.0, + "content": "resolution. ? computed from", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 123, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 416, + 136 + ], + "score": 1.0, + "content": "samples drawn using author-provided model parameters and implementation.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 112, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "GAN image models. Higher Inception scores, as well as visual inspection, suggest that the procedure", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "captures class-specific features of the training data in a manner superior to the original adversarial", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 192 + ], + "score": 1.0, + "content": "objective alone. That being said, we do not believe we are yet making optimal use of the paradigm.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 202 + ], + "score": 1.0, + "content": "The non-stationarity of the feature distribution on which the denoiser is trained could be limiting the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "ability of the denoiser to obtain a good fit, and the information backpropagated to the generator is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "always slightly stale. Steps to reduce this non-stationarity may be fruitful; we experimented briefly", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "with historical averaging as explored in Salimans et al. (2016) but did not observe a clear benefit thus", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "far. Structured denoisers, including denoisers that learn an energy function for multiple hidden layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 244, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 504, + 255 + ], + "score": 1.0, + "content": "at once, could conceivably aid in obtaining a better fit. Learning a partially stochastic transition", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "operator rather than a deterministic denoiser could conceivably capture interesting multimodalities", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 317, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 317, + 279 + ], + "score": 1.0, + "content": "that are “blurred” by a unimodal denoising function.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 155, + 505, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 505, + 294 + ], + "score": 1.0, + "content": "Our method is orthogonal and could conceivably be used in combination with several other GAN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "extensions. For example, methods incorporating an encoder component (Donahue et al., 2016;", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "Dumoulin et al., 2016), various existing conditional architectures (Mirza & Osindero, 2014; Denton", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "et al., 2015; Reed et al., 2016), or the semi-supervised variant employed in Salimans et al. (2016),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 326, + 412, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 412, + 339 + ], + "score": 1.0, + "content": "could all be trained with an additional denoising feature matching objective.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 282, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "We have proposed a useful heuristic, but a better theoretical grounding regarding how GANs are", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 506, + 367 + ], + "score": 1.0, + "content": "trained in practice is a necessary direction for future work, including grounded criteria for assess-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 379 + ], + "score": 1.0, + "content": "ing mode coverage and mass misassignment, and principled criteria for assessing convergence or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 375, + 215, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 215, + 390 + ], + "score": 1.0, + "content": "performing early stopping.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 343, + 506, + 390 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 401, + 200, + 411 + ], + "lines": [ + { + "bbox": [ + 107, + 402, + 200, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 402, + 200, + 412 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "We thank Ian Goodfellow, Laurent Dinh, Yaroslav Ganin and Kyle Kastner for helpful discussions.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 443 + ], + "score": 1.0, + "content": "We thank Vincent Dumoulin and Ishmael Belghazi for making available code and model parameters", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 455 + ], + "score": 1.0, + "content": "used in comparison to ALI, as well as Alec Radford for making available the code and model pa-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "rameters for his ImageNet model. We would like to thank Antonia Creswell and Hiroyuki Yamazaki", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 504, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 504, + 476 + ], + "score": 1.0, + "content": "for pointing out an error in the initial version of this manuscript, and anonymous reviewers for valu-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "able feedback. We thank the University of Montreal and Compute Canada for the computational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 504, + 497 + ], + "score": 1.0, + "content": "resources used for this investigation, as well as the authors of Theano (Al-Rfou et al., 2016), Blocks", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "and Fuel (van Merrienboer et al., 2015). We thank CIFAR, NSERC, Google, Samsung and Canada ¨", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 505, + 224, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 224, + 520 + ], + "score": 1.0, + "content": "Research Chairs for funding.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 420, + 505, + 520 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 535, + 175, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 176, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 176, + 549 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "score": 1.0, + "content": "David H Ackley, Geoffrey E Hinton, and Terrence J Sejnowski. A learning algorithm for boltzmann", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 565, + 321, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 321, + 577 + ], + "score": 1.0, + "content": "machines. Cognitive science, 9(1):147–169, 1985.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 553, + 505, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 503, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 596 + ], + "score": 1.0, + "content": "Rami Al-Rfou, Guillaume Alain, Amjad Almahairi, and et al. Theano: A python framework for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 596, + 504, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 596, + 504, + 608 + ], + "score": 1.0, + "content": "fast computation of mathematical expressions. CoRR, abs/1605.02688, 2016. URL http://", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 608, + 266, + 619 + ], + "spans": [ + { + "bbox": [ + 117, + 608, + 266, + 619 + ], + "score": 1.0, + "content": "arxiv.org/abs/1605.02688.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 585, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 626, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 640 + ], + "score": 1.0, + "content": "Guillaume Alain and Yoshua Bengio. What regularized auto-encoders learn from the data-generating", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 637, + 429, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 429, + 650 + ], + "score": 1.0, + "content": "distribution. Journal of Machine Learning Research, 15(1):3563–3593, 2014.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 624, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 503, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "A. Coates, H. Lee, and A. Y. Ng. An analysis of single-layer networks in unsupervised feature", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "learning. In Proceedings of the Thirteenth International Conference on Artificial Intelligence and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 250, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 250, + 690 + ], + "score": 1.0, + "content": "Statistics (AISTATS 2011), 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 657, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 699, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "laplacian pyramid of adversarial networks. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 206, + 731 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 206, + 731 + ], + "score": 1.0, + "content": "pp. 1486–1494, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 506, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Darrell. Decaf: A deep convolutional activation feature for generic visual recognition. In ICML,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 197, + 116 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 197, + 116 + ], + "score": 1.0, + "content": "pp. 647–655, 2014.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 122, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. ¨ arXiv preprint", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 219, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 219, + 146 + ], + "score": 1.0, + "content": "arXiv:1605.09782, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 105, + 151, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 504, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 504, + 164 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Thomas Brox. Inverting visual representations with convolutional networks.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 480, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 480, + 176 + ], + "score": 1.0, + "content": "In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 108, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 504, + 194 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 142, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 142, + 215 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 221, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 236 + ], + "score": 1.0, + "content": "Dumitru Erhan, Yoshua Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 374, + 245 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 374, + 245 + ], + "score": 1.0, + "content": "features of a deep network. University of Montreal, 1341, 2009.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 260, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 260, + 506, + 276 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Z. Ghahramani, M. Welling,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "C. Cortes, N. D. Lawrence, and K. Q. Weinberger (eds.), Advances in Neural Information Pro-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "cessing Systems 27, pp. 2672–2680. Curran Associates, Inc., 2014a. URL http://papers.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 295, + 422, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 295, + 422, + 307 + ], + "score": 1.0, + "content": "nips.cc/paper/5423-generative-adversarial-nets.pdf.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 503, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 312, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 506, + 327 + ], + "score": 1.0, + "content": "Ian J Goodfellow. On distinguishability criteria for estimating generative models. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 214, + 335 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 214, + 335 + ], + "score": 1.0, + "content": "arXiv:1412.6515, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 503, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 354, + 322, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 322, + 366 + ], + "score": 1.0, + "content": "examples. arXiv preprint arXiv:1412.6572, 2014b.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Arthur Gretton, Karsten M Borgwardt, Malte Rasch, Bernhard Scholkopf, and Alex J Smola. A ker- ¨", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "nel method for the two-sample-problem. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 394, + 196, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 196, + 406 + ], + "score": 1.0, + "content": "pp. 513–520, 2006.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 423, + 411, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 423, + 411, + 435 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 108, + 441, + 503, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 504, + 455 + ], + "score": 1.0, + "content": "Taesup Kim and Yoshua Bengio. Deep directed generative models with energy-based probability", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 452, + 326, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 452, + 326, + 465 + ], + "score": 1.0, + "content": "estimation. arXiv preprint arXiv:1606.03439, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 503, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 482, + 214, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 482, + 214, + 494 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 503, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 532 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in neural information processing systems, pp. 1097–1105,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 540, + 143, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 540, + 143, + 552 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 558, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Quoc Le, Marc’Aurelio Ranzato, Rajat Monga, Matthieu Devin, Greg Corrado, Kai Chen, Jeff", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Dean, and Andrew Ng. Building high-level features using large scale unsupervised learning. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 581, + 192, + 592 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 192, + 592 + ], + "score": 1.0, + "content": "ICML’2012, 2012.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "Dong-Hyun Lee, Saizheng Zhang, Asja Fischer, and Yoshua Bengio. Difference target propagation.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 609, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 505, + 625 + ], + "score": 1.0, + "content": "In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 220, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 220, + 634 + ], + "score": 1.0, + "content": "498–515. Springer, 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 639, + 502, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 504, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 504, + 652 + ], + "score": 1.0, + "content": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 650, + 434, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 650, + 434, + 663 + ], + "score": 1.0, + "content": "In Proceedings of International Conference on Computer Vision (ICCV), 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 105, + 669, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "score": 1.0, + "content": "Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 215, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 215, + 691 + ], + "score": 1.0, + "content": "arXiv:1411.1784, 2014.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Anh Nguyen, Jason Yosinski, and Jeff Clune. Deep neural networks are easily fooled: High confi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "dence predictions for unrecognizable images. In 2015 IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 721, + 341, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 341, + 733 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), pp. 427–436. IEEE, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 107 + ], + "score": 1.0, + "content": "Darrell. Decaf: A deep convolutional activation feature for generic visual recognition. In ICML,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 197, + 116 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 197, + 116 + ], + "score": 1.0, + "content": "pp. 647–655, 2014.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 122, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "score": 1.0, + "content": "Jeff Donahue, Philipp Krahenb ¨ uhl, and Trevor Darrell. Adversarial feature learning. ¨ arXiv preprint", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 219, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 219, + 146 + ], + "score": 1.0, + "content": "arXiv:1605.09782, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 120, + 506, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 151, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 504, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 504, + 164 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Thomas Brox. Inverting visual representations with convolutional networks.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 480, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 480, + 176 + ], + "score": 1.0, + "content": "In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 153, + 504, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 181, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 504, + 194 + ], + "score": 1.0, + "content": "Vincent Dumoulin, Ishmael Belghazi, Ben Poole, Alex Lamb, Martin Arjovsky, Olivier Mastropi-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "etro, and Aaron Courville. Adversarially learned inference. arXiv preprint arXiv:1606.00704,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 142, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 142, + 215 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 180, + 505, + 215 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 221, + 505, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 220, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 236 + ], + "score": 1.0, + "content": "Dumitru Erhan, Yoshua Bengio, Aaron Courville, and Pascal Vincent. Visualizing higher-layer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 374, + 245 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 374, + 245 + ], + "score": 1.0, + "content": "features of a deep network. University of Montreal, 1341, 2009.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 220, + 505, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 264 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 260, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 115, + 260, + 506, + 276 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Z. Ghahramani, M. Welling,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "C. Cortes, N. D. Lawrence, and K. Q. Weinberger (eds.), Advances in Neural Information Pro-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "cessing Systems 27, pp. 2672–2680. Curran Associates, Inc., 2014a. URL http://papers.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 295, + 422, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 295, + 422, + 307 + ], + "score": 1.0, + "content": "nips.cc/paper/5423-generative-adversarial-nets.pdf.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 251, + 506, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 503, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 312, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 312, + 506, + 327 + ], + "score": 1.0, + "content": "Ian J Goodfellow. On distinguishability criteria for estimating generative models. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 214, + 335 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 214, + 335 + ], + "score": 1.0, + "content": "arXiv:1412.6515, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 312, + 506, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 503, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 354, + 322, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 322, + 366 + ], + "score": 1.0, + "content": "examples. arXiv preprint arXiv:1412.6572, 2014b.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 342, + 505, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 385 + ], + "score": 1.0, + "content": "Arthur Gretton, Karsten M Borgwardt, Malte Rasch, Bernhard Scholkopf, and Alex J Smola. A ker- ¨", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 506, + 396 + ], + "score": 1.0, + "content": "nel method for the two-sample-problem. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 394, + 196, + 406 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 196, + 406 + ], + "score": 1.0, + "content": "pp. 513–520, 2006.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 371, + 506, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 423, + 411, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 423, + 411, + 435 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 411, + 505, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 441, + 503, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 504, + 455 + ], + "score": 1.0, + "content": "Taesup Kim and Yoshua Bengio. Deep directed generative models with energy-based probability", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 452, + 326, + 465 + ], + "spans": [ + { + "bbox": [ + 115, + 452, + 326, + 465 + ], + "score": 1.0, + "content": "estimation. arXiv preprint arXiv:1606.03439, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 441, + 504, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 503, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 482, + 214, + 494 + ], + "spans": [ + { + "bbox": [ + 115, + 482, + 214, + 494 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 469, + 505, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 503, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 514 + ], + "score": 1.0, + "content": "Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images. 2009.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 498, + 505, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 517, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 532 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in neural information processing systems, pp. 1097–1105,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 114, + 540, + 143, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 540, + 143, + 552 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 517, + 506, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 558, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Quoc Le, Marc’Aurelio Ranzato, Rajat Monga, Matthieu Devin, Greg Corrado, Kai Chen, Jeff", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "Dean, and Andrew Ng. Building high-level features using large scale unsupervised learning. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 581, + 192, + 592 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 192, + 592 + ], + "score": 1.0, + "content": "ICML’2012, 2012.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 558, + 506, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "Dong-Hyun Lee, Saizheng Zhang, Asja Fischer, and Yoshua Bengio. Difference target propagation.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 609, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 115, + 609, + 505, + 625 + ], + "score": 1.0, + "content": "In Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 220, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 220, + 634 + ], + "score": 1.0, + "content": "498–515. Springer, 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 599, + 505, + 634 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 639, + 502, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 639, + 504, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 504, + 652 + ], + "score": 1.0, + "content": "Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the wild.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 650, + 434, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 650, + 434, + 663 + ], + "score": 1.0, + "content": "In Proceedings of International Conference on Computer Vision (ICCV), 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 639, + 504, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 669, + 503, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "score": 1.0, + "content": "Mehdi Mirza and Simon Osindero. Conditional generative adversarial nets. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 215, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 215, + 691 + ], + "score": 1.0, + "content": "arXiv:1411.1784, 2014.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 667, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Anh Nguyen, Jason Yosinski, and Jeff Clune. Deep neural networks are easily fooled: High confi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "dence predictions for unrecognizable images. In 2015 IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 721, + 341, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 341, + 733 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), pp. 427–436. IEEE, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 699, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 468, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 468, + 106 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 112, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Scott E. Reed, Zeynep Akata, Xinchen Yan, Lajanugen Logeswaran, Bernt Schiele, and Honglak", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "Lee. Generative adversarial text to image synthesis. CoRR, abs/1605.05396, 2016. URL http:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 135, + 277, + 146 + ], + "spans": [ + { + "bbox": [ + 117, + 135, + 277, + 146 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1605.05396.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 153, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 358, + 188 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 358, + 188 + ], + "score": 1.0, + "content": "ImageNet Large Scale Visual Recognition Challenge, 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 502, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 504, + 206 + ], + "score": 1.0, + "content": "Tim Salimans, Ian J. Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 205, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 116, + 205, + 504, + 217 + ], + "score": 1.0, + "content": "Improved techniques for training gans. CoRR, abs/1606.03498, 2016. URL http://arxiv.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 230, + 228 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 230, + 228 + ], + "score": 1.0, + "content": "org/abs/1606.03498.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 245, + 450, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 450, + 258 + ], + "score": 1.0, + "content": "map inference for image super-resolution. arXiv preprint arXiv:1610.04490, 2016.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Du-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "mitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1–9, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 347 + ], + "score": 1.0, + "content": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 347, + 314, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 314, + 358 + ], + "score": 1.0, + "content": "models. arXiv preprint arXiv:1511.01844, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 108, + 365, + 503, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "score": 1.0, + "content": "Bart van Merrienboer, Dzmitry Bahdanau, Vincent Dumoulin, Dmitriy Serdyuk, David Warde-¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "Farley, Jan Chorowski, and Yoshua Bengio. Blocks and fuel: Frameworks for deep learning.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 387, + 453, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 387, + 453, + 399 + ], + "score": 1.0, + "content": "CoRR, abs/1506.00619, 2015. URL http://arxiv.org/abs/1506.00619.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 406, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "D Warde-Farley and I Goodfellow. Adversarial perturbations of deep neural networks. In Tamir", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Hazan, George Papandreou, and Daniel Tarlow (eds.), Perturbation, Optimization and Statistics,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 339, + 440 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 339, + 440 + ], + "score": 1.0, + "content": "chapter 11, pp. 311–339. MIT Press, Cambridge, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "Jason Yosinski, Jeff Clune, Yoshua Bengio, and Hod Lipson. How transferable are features in deep", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 458, + 500, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 500, + 471 + ], + "score": 1.0, + "content": "neural networks? In Advances in neural information processing systems, pp. 3320–3328, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 104, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Jason Yosinski, Jeff Clune, Anh Nguyen, Thomas Fuchs, and Hod Lipson. Understanding neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 430, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 430, + 501 + ], + "score": 1.0, + "content": "networks through deep visualization. arXiv preprint arXiv:1506.06579, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 503, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. LSUN: construction of a large-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "scale image dataset using deep learning with humans in the loop. CoRR, abs/1506.03365, 2015.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 528, + 330, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 330, + 541 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1506.03365.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 103, + 547, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "Junbo Zhao, Michael Mathieu, and Yann LeCun. Energy-based generative adversarial network.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 558, + 278, + 571 + ], + "spans": [ + { + "bbox": [ + 116, + 558, + 278, + 571 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.03126, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 468, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 468, + 106 + ], + "score": 1.0, + "content": "convolutional generative adversarial networks. arXiv preprint arXiv:1511.06434, 2015.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 112, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Scott E. Reed, Zeynep Akata, Xinchen Yan, Lajanugen Logeswaran, Bernt Schiele, and Honglak", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "Lee. Generative adversarial text to image synthesis. CoRR, abs/1605.05396, 2016. URL http:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 135, + 277, + 146 + ], + "spans": [ + { + "bbox": [ + 117, + 135, + 277, + 146 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1605.05396.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 112, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 153, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 505, + 177 + ], + "score": 1.0, + "content": "Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 358, + 188 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 358, + 188 + ], + "score": 1.0, + "content": "ImageNet Large Scale Visual Recognition Challenge, 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 152, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 502, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 504, + 206 + ], + "score": 1.0, + "content": "Tim Salimans, Ian J. Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 205, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 116, + 205, + 504, + 217 + ], + "score": 1.0, + "content": "Improved techniques for training gans. CoRR, abs/1606.03498, 2016. URL http://arxiv.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 216, + 230, + 228 + ], + "spans": [ + { + "bbox": [ + 116, + 216, + 230, + 228 + ], + "score": 1.0, + "content": "org/abs/1606.03498.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 193, + 504, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "Casper Kaae Sønderby, Jose Caballero, Lucas Theis, Wenzhe Shi, and Ferenc Huszar. Amortised ´", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 245, + 450, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 245, + 450, + 258 + ], + "score": 1.0, + "content": "map inference for image super-resolution. arXiv preprint arXiv:1610.04490, 2016.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 234, + 505, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 264, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 278 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 264, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Du-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 505, + 318 + ], + "score": 1.0, + "content": "mitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1–9, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 294, + 506, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 347 + ], + "score": 1.0, + "content": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 347, + 314, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 314, + 358 + ], + "score": 1.0, + "content": "models. arXiv preprint arXiv:1511.01844, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 336, + 505, + 358 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 365, + 503, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "score": 1.0, + "content": "Bart van Merrienboer, Dzmitry Bahdanau, Vincent Dumoulin, Dmitriy Serdyuk, David Warde-¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "Farley, Jan Chorowski, and Yoshua Bengio. Blocks and fuel: Frameworks for deep learning.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 387, + 453, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 387, + 453, + 399 + ], + "score": 1.0, + "content": "CoRR, abs/1506.00619, 2015. URL http://arxiv.org/abs/1506.00619.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 365, + 505, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 406, + 504, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "D Warde-Farley and I Goodfellow. Adversarial perturbations of deep neural networks. In Tamir", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 506, + 430 + ], + "score": 1.0, + "content": "Hazan, George Papandreou, and Daniel Tarlow (eds.), Perturbation, Optimization and Statistics,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 339, + 440 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 339, + 440 + ], + "score": 1.0, + "content": "chapter 11, pp. 311–339. MIT Press, Cambridge, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 405, + 506, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "Jason Yosinski, Jeff Clune, Yoshua Bengio, and Hod Lipson. How transferable are features in deep", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 458, + 500, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 500, + 471 + ], + "score": 1.0, + "content": "neural networks? In Advances in neural information processing systems, pp. 3320–3328, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 446, + 505, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 477, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Jason Yosinski, Jeff Clune, Anh Nguyen, Thomas Fuchs, and Hod Lipson. Understanding neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 487, + 430, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 430, + 501 + ], + "score": 1.0, + "content": "networks through deep visualization. arXiv preprint arXiv:1506.06579, 2015.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 477, + 505, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 503, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 520 + ], + "score": 1.0, + "content": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. LSUN: construction of a large-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 517, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 115, + 517, + 505, + 530 + ], + "score": 1.0, + "content": "scale image dataset using deep learning with humans in the loop. CoRR, abs/1506.03365, 2015.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 528, + 330, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 330, + 541 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1506.03365.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 506, + 505, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 547, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 546, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 505, + 560 + ], + "score": 1.0, + "content": "Junbo Zhao, Michael Mathieu, and Yann LeCun. Energy-based generative adversarial network.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 558, + 278, + 571 + ], + "spans": [ + { + "bbox": [ + 116, + 558, + 278, + 571 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.03126, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 546, + 505, + 571 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S1X7nhsxl/S1X7nhsxl_model.json b/parse/train/S1X7nhsxl/S1X7nhsxl_model.json new file mode 100644 index 0000000000000000000000000000000000000000..35d15b1b36af9699a5aba939edf11252feb97ced --- /dev/null +++ b/parse/train/S1X7nhsxl/S1X7nhsxl_model.json @@ -0,0 +1,13561 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1759, + 1404, + 1759, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1498, + 1403, + 1498, + 1403, + 1744, + 297, + 1744 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 398, + 683, + 1302, + 683, + 1302, + 959, + 398, + 959 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1299, + 1403, + 1299, + 1403, + 1484, + 298, + 1484 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1099, + 1403, + 1099, + 1403, + 1284, + 297, + 1284 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 299, + 219, + 1397, + 219, + 1397, + 324, + 299, + 324 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 315, + 376, + 1088, + 376, + 1088, + 530, + 315, + 530 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 302, + 1027, + 573, + 1027, + 573, + 1062, + 302, + 1062 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 773, + 611, + 927, + 611, + 927, + 644, + 773, + 644 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 856, + 2089, + 856, + 2112, + 842, + 2112 + ], + "score": 0.612 + }, + { + "category_id": 13, + "poly": [ + 804, + 411, + 826, + 411, + 826, + 436, + 804, + 436 + ], + "score": 0.76, + "latex": "\\star" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 219.0, + 1403.0, + 219.0, + 1403.0, + 271.0, + 296.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 275.0, + 1105.0, + 275.0, + 1105.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 579.0, + 1024.0, + 579.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 607.0, + 934.0, + 607.0, + 934.0, + 650.0, + 768.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1794.0, + 295.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1402.0, + 1818.0, + 1402.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1404.0, + 1881.0, + 1404.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1003.0, + 2002.0, + 1003.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1536.0, + 292.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1401.0, + 1530.0, + 1401.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1403.0, + 1561.0, + 1403.0, + 1595.0, + 293.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1628.0, + 291.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1650.0, + 1404.0, + 1650.0, + 1404.0, + 1686.0, + 292.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1681.0, + 1405.0, + 1681.0, + 1405.0, + 1717.0, + 292.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 594.0, + 1709.0, + 594.0, + 1751.0, + 293.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 685.0, + 1304.0, + 685.0, + 1304.0, + 718.0, + 396.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 715.0, + 1304.0, + 715.0, + 1304.0, + 748.0, + 395.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 747.0, + 1304.0, + 747.0, + 1304.0, + 777.0, + 396.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 772.0, + 1306.0, + 772.0, + 1306.0, + 813.0, + 392.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 807.0, + 1305.0, + 807.0, + 1305.0, + 840.0, + 394.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 836.0, + 1307.0, + 836.0, + 1307.0, + 872.0, + 393.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 867.0, + 1306.0, + 867.0, + 1306.0, + 903.0, + 395.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 899.0, + 1304.0, + 899.0, + 1304.0, + 931.0, + 394.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 929.0, + 673.0, + 929.0, + 673.0, + 963.0, + 395.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1299.0, + 1404.0, + 1299.0, + 1404.0, + 1334.0, + 294.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1329.0, + 1407.0, + 1329.0, + 1407.0, + 1366.0, + 292.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1395.0, + 293.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1392.0, + 1403.0, + 1392.0, + 1403.0, + 1426.0, + 292.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1422.0, + 1404.0, + 1422.0, + 1404.0, + 1454.0, + 293.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1453.0, + 888.0, + 1453.0, + 888.0, + 1484.0, + 296.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1101.0, + 1404.0, + 1101.0, + 1404.0, + 1133.0, + 296.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1132.0, + 1403.0, + 1132.0, + 1403.0, + 1164.0, + 296.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1251.0, + 935.0, + 1251.0, + 935.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 377.0, + 783.0, + 377.0, + 783.0, + 410.0, + 311.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 406.0, + 803.0, + 406.0, + 803.0, + 440.0, + 311.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 406.0, + 1075.0, + 406.0, + 1075.0, + 440.0, + 827.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 438.0, + 576.0, + 438.0, + 576.0, + 467.0, + 314.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 468.0, + 616.0, + 468.0, + 616.0, + 499.0, + 311.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 496.0, + 1095.0, + 496.0, + 1095.0, + 535.0, + 312.0, + 535.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1588, + 1405, + 1588, + 1405, + 1835, + 297, + 1835 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1274, + 1404, + 1274, + 1404, + 1490, + 297, + 1490 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1404, + 1849, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 592, + 1403, + 592, + 1403, + 748, + 298, + 748 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 414, + 298, + 414 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1404, + 839, + 1404, + 996, + 298, + 996 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1165, + 1403, + 1165, + 1403, + 1261, + 298, + 1261 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1009, + 1397, + 1009, + 1397, + 1072, + 300, + 1072 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 479, + 767, + 1219, + 767, + 1219, + 822, + 479, + 822 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 675, + 1091, + 1023, + 1091, + 1023, + 1146, + 675, + 1146 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 299, + 1531, + 876, + 1531, + 876, + 1562, + 299, + 1562 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 462, + 558, + 462, + 558, + 499, + 300, + 499 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 301, + 535, + 841, + 535, + 841, + 567, + 301, + 567 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1096, + 1400, + 1096, + 1400, + 1125, + 1366, + 1125 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 771, + 1399, + 771, + 1399, + 801, + 1366, + 801 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.704 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.24 + }, + { + "category_id": 14, + "poly": [ + 673, + 1091, + 1024, + 1091, + 1024, + 1146, + 673, + 1146 + ], + "score": 0.92, + "latex": "\\underset { G } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log D \\left( G ( z ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 846, + 1167, + 991, + 1167, + 991, + 1201, + 846, + 1201 + ], + "score": 0.92, + "latex": "\\log D ( G ( \\mathbf { z } ) )" + }, + { + "category_id": 13, + "poly": [ + 589, + 1882, + 642, + 1882, + 642, + 1915, + 589, + 1915 + ], + "score": 0.92, + "latex": "p ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 1170, + 872, + 1222, + 872, + 1222, + 905, + 1170, + 905 + ], + "score": 0.92, + "latex": "p ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 719, + 1228, + 952, + 1228, + 952, + 1262, + 719, + 1262 + ], + "score": 0.91, + "latex": "- \\log ( 1 - D ( G ( \\mathbf { z } ) ) )" + }, + { + "category_id": 13, + "poly": [ + 680, + 873, + 778, + 873, + 778, + 900, + 680, + 900 + ], + "score": 0.9, + "latex": "\\mathbf { z } \\in \\mathbb { R } ^ { m }" + }, + { + "category_id": 14, + "poly": [ + 478, + 766, + 1217, + 766, + 1217, + 824, + 478, + 824 + ], + "score": 0.9, + "latex": "\\underset { G } { \\arg \\operatorname* { m i n } } \\ \\underset { D } { \\arg \\operatorname* { m a x } } \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\log D ( \\mathbf { x } ) + \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\log \\left( 1 - D \\left( G ( \\mathbf { z } ) \\right) \\right)" + }, + { + "category_id": 13, + "poly": [ + 1017, + 843, + 1056, + 843, + 1056, + 869, + 1017, + 869 + ], + "score": 0.88, + "latex": "\\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 606, + 903, + 644, + 903, + 644, + 931, + 606, + 931 + ], + "score": 0.87, + "latex": "\\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1330, + 843, + 1354, + 843, + 1354, + 869, + 1330, + 869 + ], + "score": 0.84, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 535, + 1169, + 561, + 1169, + 561, + 1195, + 535, + 1195 + ], + "score": 0.84, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1136, + 657, + 1162, + 657, + 1162, + 683, + 1136, + 683 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 527, + 1199, + 551, + 1199, + 551, + 1225, + 527, + 1225 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 586, + 1775, + 611, + 1775, + 611, + 1801, + 586, + 1801 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1885, + 1099, + 1885, + 1099, + 1909, + 1062, + 1909 + ], + "score": 0.83, + "latex": "\\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 627, + 1030, + 627, + 1030, + 654, + 1005, + 654 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1013, + 1401, + 1013, + 1401, + 1038, + 1377, + 1038 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 620, + 1199, + 646, + 1199, + 646, + 1225, + 620, + 1225 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 496, + 965, + 520, + 965, + 520, + 991, + 496, + 991 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1944, + 1277, + 1944, + 1277, + 1971, + 1251, + 1971 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 373, + 843, + 399, + 843, + 399, + 869, + 373, + 869 + ], + "score": 0.82, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 674, + 843, + 711, + 843, + 711, + 869, + 674, + 869 + ], + "score": 0.81, + "latex": "\\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1030, + 657, + 1055, + 657, + 1055, + 684, + 1030, + 684 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1398, + 1061, + 1398, + 1061, + 1424, + 1034, + 1424 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1852, + 1162, + 1852, + 1162, + 1878, + 1137, + 1878 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1944, + 1358, + 1944, + 1358, + 1970, + 1332, + 1970 + ], + "score": 0.8, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1913, + 1306, + 1913, + 1306, + 1940, + 1281, + 1940 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 724, + 843, + 751, + 843, + 751, + 869, + 724, + 869 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1714, + 1130, + 1714, + 1130, + 1741, + 1103, + 1741 + ], + "score": 0.78, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1347, + 626, + 1373, + 626, + 1373, + 653, + 1347, + 653 + ], + "score": 0.71, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1303, + 627, + 1329, + 627, + 1329, + 653, + 1303, + 653 + ], + "score": 0.7, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 712, + 1307, + 738, + 1307, + 738, + 1334, + 712, + 1334 + ], + "score": 0.35, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 879.0, + 1528.0, + 879.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 458.0, + 562.0, + 458.0, + 562.0, + 508.0, + 290.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 533.0, + 844.0, + 533.0, + 844.0, + 570.0, + 295.0, + 570.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, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1590.0, + 1403.0, + 1590.0, + 1403.0, + 1624.0, + 296.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1713.0, + 1102.0, + 1713.0, + 1102.0, + 1746.0, + 295.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1713.0, + 1403.0, + 1713.0, + 1403.0, + 1746.0, + 1131.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1743.0, + 1403.0, + 1743.0, + 1403.0, + 1777.0, + 295.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 585.0, + 1774.0, + 585.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1808.0, + 612.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1799.0, + 381.0, + 1799.0, + 381.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1310.0, + 295.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 711.0, + 1304.0, + 711.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1304.0, + 1406.0, + 1304.0, + 1406.0, + 1341.0, + 739.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1405.0, + 1368.0, + 1405.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1396.0, + 1033.0, + 1396.0, + 1033.0, + 1431.0, + 294.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1396.0, + 1404.0, + 1396.0, + 1404.0, + 1431.0, + 1062.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1426.0, + 1406.0, + 1426.0, + 1406.0, + 1463.0, + 294.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1079.0, + 1459.0, + 1079.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1136.0, + 1849.0, + 1136.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1886.0, + 1163.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 588.0, + 1880.0, + 588.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1880.0, + 1061.0, + 1880.0, + 1061.0, + 1916.0, + 643.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1916.0, + 1100.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1280.0, + 1911.0, + 1280.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1945.0, + 1307.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1250.0, + 1944.0, + 1250.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1944.0, + 1331.0, + 1944.0, + 1331.0, + 1976.0, + 1278.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1976.0, + 1359.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1359.0, + 2003.0, + 1359.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 594.0, + 1404.0, + 594.0, + 1404.0, + 629.0, + 296.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 626.0, + 1004.0, + 626.0, + 1004.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 626.0, + 1302.0, + 626.0, + 1302.0, + 659.0, + 1031.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 626.0, + 1346.0, + 626.0, + 1346.0, + 659.0, + 1330.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 626.0, + 1405.0, + 626.0, + 1405.0, + 659.0, + 1374.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 654.0, + 1029.0, + 654.0, + 1029.0, + 691.0, + 293.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 654.0, + 1135.0, + 654.0, + 1135.0, + 691.0, + 1056.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 654.0, + 1407.0, + 654.0, + 1407.0, + 691.0, + 1163.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 715.0, + 913.0, + 715.0, + 913.0, + 754.0, + 293.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 583.0, + 381.0, + 583.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 840.0, + 372.0, + 840.0, + 372.0, + 877.0, + 296.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 840.0, + 673.0, + 840.0, + 673.0, + 877.0, + 400.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 840.0, + 723.0, + 840.0, + 723.0, + 877.0, + 712.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 840.0, + 1016.0, + 840.0, + 1016.0, + 877.0, + 752.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 840.0, + 1329.0, + 840.0, + 1329.0, + 877.0, + 1057.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 840.0, + 1408.0, + 840.0, + 1408.0, + 877.0, + 1355.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 679.0, + 869.0, + 679.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 869.0, + 1169.0, + 869.0, + 1169.0, + 907.0, + 779.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 869.0, + 1406.0, + 869.0, + 1406.0, + 907.0, + 1223.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 605.0, + 901.0, + 605.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 901.0, + 1404.0, + 901.0, + 1404.0, + 938.0, + 645.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 965.0, + 495.0, + 965.0, + 495.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 965.0, + 532.0, + 965.0, + 532.0, + 998.0, + 521.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1163.0, + 534.0, + 1163.0, + 534.0, + 1204.0, + 292.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1163.0, + 845.0, + 1163.0, + 845.0, + 1204.0, + 562.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1163.0, + 1404.0, + 1163.0, + 1404.0, + 1204.0, + 992.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1196.0, + 526.0, + 1196.0, + 526.0, + 1235.0, + 292.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1196.0, + 619.0, + 1196.0, + 619.0, + 1235.0, + 552.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1235.0, + 647.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1228.0, + 718.0, + 1228.0, + 718.0, + 1264.0, + 293.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1228.0, + 1071.0, + 1228.0, + 1071.0, + 1264.0, + 953.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1010.0, + 1376.0, + 1010.0, + 1376.0, + 1046.0, + 296.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 1083.0, + 1039.0, + 1083.0, + 1077.0, + 292.0, + 1077.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1659, + 1405, + 1659, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1078, + 1404, + 1078, + 1404, + 1385, + 298, + 1385 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 514, + 1404, + 514, + 1404, + 798, + 298, + 798 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1399, + 1404, + 1399, + 1404, + 1645, + 297, + 1645 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 445, + 297, + 445 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 909, + 1403, + 909, + 1403, + 1064, + 298, + 1064 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 617, + 459, + 1085, + 459, + 1085, + 501, + 617, + 501 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 299, + 839, + 1333, + 839, + 1333, + 877, + 299, + 877 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 466, + 1399, + 466, + 1399, + 495, + 1366, + 495 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.61 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.45 + }, + { + "category_id": 14, + "poly": [ + 613, + 457, + 1086, + 457, + 1086, + 500, + 613, + 500 + ], + "score": 0.93, + "latex": "I ( \\{ \\mathbf { x } \\} _ { 1 } ^ { N } ) = \\exp { ( \\mathbb { E } \\left[ D _ { K L } ( p ( y | \\mathbf { x } ) \\| p ( y ) \\right] ) ) }" + }, + { + "category_id": 13, + "poly": [ + 670, + 1752, + 768, + 1752, + 768, + 1795, + 670, + 1795 + ], + "score": 0.93, + "latex": "\\frac { \\partial \\log q ( \\mathbf { h } ) } { \\partial \\mathbf { h } }" + }, + { + "category_id": 13, + "poly": [ + 1229, + 1660, + 1275, + 1660, + 1275, + 1693, + 1229, + 1693 + ], + "score": 0.93, + "latex": "r ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1789, + 1295, + 1789, + 1295, + 1823, + 1172, + 1823 + ], + "score": 0.93, + "latex": "\\mathbf { x } ^ { \\prime } = G ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 611, + 1850, + 860, + 1850, + 860, + 1884, + 611, + 1884 + ], + "score": 0.93, + "latex": "| | r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } ) | | ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 514, + 1406, + 514, + 1406, + 554, + 1082, + 554 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { p ( y ) = \\int _ { \\mathbf { x } } p ( \\mathbf { x } ) p ( y | \\mathbf { x } ) d \\mathbf { x } \\approx } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 739, + 1912, + 800, + 1912, + 800, + 1945, + 739, + 1945 + ], + "score": 0.92, + "latex": "\\Phi ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1722, + 1359, + 1722, + 1359, + 1755, + 1249, + 1755 + ], + "score": 0.92, + "latex": "r ( \\mathbf { h } ) - \\mathbf { h }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1881, + 1343, + 1881, + 1343, + 1914, + 1282, + 1914 + ], + "score": 0.92, + "latex": "\\Phi ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 373, + 516, + 450, + 516, + 450, + 549, + 373, + 549 + ], + "score": 0.92, + "latex": "p ( y | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1033, + 1722, + 1088, + 1722, + 1088, + 1755, + 1033, + 1755 + ], + "score": 0.92, + "latex": "q ( \\mathbf { h } )" + }, + { + "category_id": 13, + "poly": [ + 585, + 1790, + 701, + 1790, + 701, + 1822, + 585, + 1822 + ], + "score": 0.91, + "latex": "\\mathbf { h } = \\Phi ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 909, + 1789, + 1112, + 1789, + 1112, + 1822, + 909, + 1822 + ], + "score": 0.91, + "latex": "r ( \\Phi ( \\mathbf { x } ^ { \\prime } ) ) - \\Phi ( \\mathbf { x } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 549, + 448, + 549, + 448, + 588, + 299, + 588 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\frac { 1 } { N } \\sum p ( y | \\mathbf { x } _ { i } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 944, + 1822, + 1070, + 1822, + 1070, + 1853, + 944, + 1853 + ], + "score": 0.89, + "latex": "\\mathbf { h } = \\Phi ( \\mathbf { x } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 762, + 1791, + 841, + 1791, + 841, + 1819, + 762, + 1819 + ], + "score": 0.88, + "latex": "\\mathbf { x } \\sim \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1851, + 1305, + 1851, + 1305, + 1879, + 1276, + 1879 + ], + "score": 0.87, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 1852, + 1074, + 1852, + 1074, + 1878, + 1045, + 1878 + ], + "score": 0.85, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 506, + 1821, + 535, + 1821, + 535, + 1849, + 506, + 1849 + ], + "score": 0.84, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 840.0, + 1337.0, + 840.0, + 1337.0, + 881.0, + 292.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "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": [ + 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, + 1660.0, + 1228.0, + 1660.0, + 1228.0, + 1694.0, + 296.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1660.0, + 1403.0, + 1660.0, + 1403.0, + 1694.0, + 1276.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1722.0, + 1032.0, + 1722.0, + 1032.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1722.0, + 1248.0, + 1722.0, + 1248.0, + 1756.0, + 1089.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1756.0, + 1360.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1747.0, + 584.0, + 1747.0, + 584.0, + 1828.0, + 291.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1747.0, + 908.0, + 1747.0, + 908.0, + 1828.0, + 842.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1747.0, + 1171.0, + 1747.0, + 1171.0, + 1828.0, + 1113.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1747.0, + 1407.0, + 1747.0, + 1407.0, + 1828.0, + 1296.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 505.0, + 1818.0, + 505.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1818.0, + 943.0, + 1818.0, + 943.0, + 1855.0, + 536.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1855.0, + 1071.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1846.0, + 610.0, + 1846.0, + 610.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1846.0, + 1044.0, + 1846.0, + 1044.0, + 1887.0, + 861.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1846.0, + 1275.0, + 1846.0, + 1275.0, + 1887.0, + 1075.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1846.0, + 1406.0, + 1846.0, + 1406.0, + 1887.0, + 1306.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1281.0, + 1881.0, + 1281.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 1344.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 738.0, + 1912.0, + 738.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1947.0, + 801.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 905.0, + 2001.0, + 905.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1117.0, + 293.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1111.0, + 1406.0, + 1111.0, + 1406.0, + 1144.0, + 292.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1139.0, + 1405.0, + 1139.0, + 1405.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1173.0, + 1405.0, + 1173.0, + 1405.0, + 1205.0, + 296.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1406.0, + 1200.0, + 1406.0, + 1237.0, + 293.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1408.0, + 1232.0, + 1408.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 1406.0, + 1262.0, + 1406.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1293.0, + 1405.0, + 1293.0, + 1405.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1322.0, + 1406.0, + 1322.0, + 1406.0, + 1360.0, + 292.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 379.0, + 1348.0, + 379.0, + 1390.0, + 292.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 512.0, + 372.0, + 512.0, + 372.0, + 555.0, + 292.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 512.0, + 1081.0, + 512.0, + 1081.0, + 555.0, + 451.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 298.0, + 548.0, + 298.0, + 594.0, + 294.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 548.0, + 1406.0, + 548.0, + 1406.0, + 594.0, + 449.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 580.0, + 1404.0, + 580.0, + 1404.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 650.0, + 291.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 644.0, + 1404.0, + 644.0, + 1404.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 674.0, + 1404.0, + 674.0, + 1404.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 705.0, + 1404.0, + 705.0, + 1404.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 771.0, + 293.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 768.0, + 1113.0, + 768.0, + 1113.0, + 799.0, + 294.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1401.0, + 1404.0, + 1401.0, + 1404.0, + 1434.0, + 296.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1433.0, + 1405.0, + 1433.0, + 1405.0, + 1463.0, + 296.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1462.0, + 1406.0, + 1462.0, + 1406.0, + 1496.0, + 295.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1522.0, + 1405.0, + 1522.0, + 1405.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1553.0, + 1404.0, + 1553.0, + 1404.0, + 1587.0, + 295.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1584.0, + 1405.0, + 1584.0, + 1405.0, + 1618.0, + 295.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 1034.0, + 1615.0, + 1034.0, + 1647.0, + 293.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1404.0, + 289.0, + 1404.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1402.0, + 322.0, + 1402.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 353.0, + 1404.0, + 353.0, + 1404.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1409.0, + 381.0, + 1409.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 413.0, + 1228.0, + 413.0, + 1228.0, + 449.0, + 292.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 911.0, + 1404.0, + 911.0, + 1404.0, + 944.0, + 296.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 940.0, + 1405.0, + 940.0, + 1405.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 971.0, + 1408.0, + 971.0, + 1408.0, + 1008.0, + 292.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1004.0, + 1404.0, + 1004.0, + 1404.0, + 1037.0, + 296.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1167.0, + 1030.0, + 1167.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1446, + 1404, + 1446, + 1404, + 1638, + 297, + 1638 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 704, + 1406, + 704, + 1406, + 995, + 296, + 995 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1405, + 227, + 1405, + 385, + 296, + 385 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1403, + 1910, + 1403, + 2036, + 298, + 2036 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 694, + 1353, + 1005, + 1353, + 1005, + 1431, + 694, + 1431 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 295, + 1750, + 1401, + 1750, + 1401, + 1816, + 295, + 1816 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 572, + 1830, + 1127, + 1830, + 1127, + 1896, + 572, + 1896 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 474, + 1402, + 474, + 1402, + 537, + 300, + 537 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 577, + 1048, + 942, + 1048, + 942, + 1122, + 577, + 1122 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 631, + 554, + 1066, + 554, + 1066, + 612, + 631, + 612 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 743, + 1225, + 1121, + 1225, + 1121, + 1299, + 743, + 1299 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 425, + 396, + 1274, + 396, + 1274, + 455, + 425, + 455 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 298, + 648, + 523, + 648, + 523, + 679, + 298, + 679 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1683, + 582, + 1683, + 582, + 1717, + 300, + 1717 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 744, + 1128, + 1072, + 1128, + 1072, + 1218, + 744, + 1218 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 815, + 74, + 815, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1841, + 1399, + 1841, + 1399, + 1871, + 1352, + 1871 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1377, + 1400, + 1377, + 1400, + 1407, + 1366, + 1407 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 561, + 1400, + 561, + 1400, + 591, + 1366, + 591 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1247, + 1400, + 1247, + 1400, + 1277, + 1366, + 1277 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1072, + 1400, + 1072, + 1400, + 1101, + 1366, + 1101 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1366, + 403, + 1400, + 403, + 1400, + 433, + 1366, + 433 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 298, + 1313, + 370, + 1313, + 370, + 1343, + 298, + 1343 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1169, + 1400, + 1169, + 1400, + 1199, + 1366, + 1199 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.777 + }, + { + "category_id": 14, + "poly": [ + 691, + 1353, + 1008, + 1353, + 1008, + 1431, + 691, + 1431 + ], + "score": 0.94, + "latex": "{ \\frac { \\partial \\log | J | } { \\partial x _ { k } } } = \\operatorname { T r } \\left( J ^ { - 1 } { \\frac { d J } { d x _ { k } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 764, + 858, + 886, + 858, + 886, + 901, + 764, + 901 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { J = \\frac { \\partial \\Phi ( \\mathbf { \\bar { x } } ) } { \\partial \\mathbf { x } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 573, + 1044, + 1125, + 1044, + 1125, + 1303, + 573, + 1303 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { \\displaystyle \\frac { \\partial \\log q ( \\Phi ( \\mathbf { x } ) ) } { \\partial \\Phi ( \\mathbf { x } ) } = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { p } } ( \\mathbf { \\mathbf { x } } ) \\mid J \\mid ] } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\Phi ( \\mathbf { x } ) } + \\frac { \\partial \\log \\left| \\frac { \\partial \\Phi ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } \\right| } { \\partial \\Phi ( \\mathbf { x } ) } } \\\\ { \\displaystyle ~ = \\left( \\frac { \\partial \\log p ( \\mathbf { \\boldsymbol { x } } ) } { \\partial \\mathbf { x } } + \\frac { \\partial \\log \\left| J \\right| } { \\partial \\mathbf { x } } \\right) J ^ { - 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 910, + 767, + 1004, + 767, + 1004, + 801, + 910, + 801 + ], + "score": 0.92, + "latex": "q ( \\Phi ( \\mathbf { x } ) )" + }, + { + "category_id": 13, + "poly": [ + 507, + 738, + 600, + 738, + 600, + 771, + 507, + 771 + ], + "score": 0.92, + "latex": "p ( v e c x )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 259, + 1344, + 259, + 1344, + 295, + 1147, + 295 + ], + "score": 0.92, + "latex": "C ( \\cdot ) : \\mathbb { R } ^ { k } \\to \\mathbb { R } ^ { \\bar { k } }" + }, + { + "category_id": 13, + "poly": [ + 374, + 475, + 469, + 475, + 469, + 508, + 374, + 508 + ], + "score": 0.92, + "latex": "r ( G ( \\mathbf { z } ) )" + }, + { + "category_id": 13, + "poly": [ + 1175, + 863, + 1393, + 863, + 1393, + 899, + 1175, + 899 + ], + "score": 0.92, + "latex": "q ( \\Phi ( \\mathbf { x } ) ) = p ( \\mathbf { x } ) | J |" + }, + { + "category_id": 13, + "poly": [ + 490, + 260, + 688, + 260, + 688, + 295, + 490, + 295 + ], + "score": 0.92, + "latex": "\\Phi ( \\cdot ) \\ : \\mathbb { R } ^ { n } \\ \\bar { \\mathbb { R } } ^ { k }" + }, + { + "category_id": 14, + "poly": [ + 627, + 552, + 1070, + 552, + 1070, + 614, + 627, + 614 + ], + "score": 0.92, + "latex": "\\underset { \\theta _ { r } } { \\arg \\operatorname* { m i n } } \\mathop { { \\mathbb { E } } } _ { { \\mathbf { x } } \\sim { \\mathcal { D } } } \\| \\Phi ( { \\mathbf { x } } ) - r ( C ( \\Phi ( { \\mathbf { x } } ) ) ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 348, + 1445, + 393, + 1445, + 393, + 1489, + 348, + 1489 + ], + "score": 0.92, + "latex": "\\scriptstyle { \\frac { d J } { d x _ { k } } }" + }, + { + "category_id": 13, + "poly": [ + 870, + 259, + 1083, + 259, + 1083, + 294, + 870, + 294 + ], + "score": 0.91, + "latex": "d ( \\cdot ) : \\mathbb { R } ^ { k } \\to [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 402, + 1515, + 457, + 1515, + 457, + 1547, + 402, + 1547 + ], + "score": 0.91, + "latex": "p ( \\mathbf { x } )" + }, + { + "category_id": 14, + "poly": [ + 571, + 1829, + 1126, + 1829, + 1126, + 1897, + 571, + 1897 + ], + "score": 0.91, + "latex": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\left. \\left. \\mathbb { E } _ { \\mathbf { x } \\sim \\mathcal { D } } \\left[ \\Phi ( \\mathbf { x } ) \\right] - \\mathbb { E } _ { \\mathbf { z } \\sim p ( z ) } \\left[ \\Phi ( G ( \\mathbf { z } ) ) \\right] \\right. \\right. ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1942, + 1223, + 1942, + 1223, + 1976, + 1171, + 1976 + ], + "score": 0.91, + "latex": "\\Phi ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 560, + 864, + 718, + 864, + 718, + 895, + 560, + 895 + ], + "score": 0.9, + "latex": "\\Phi : \\mathbb { R } ^ { n } \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 398, + 508, + 443, + 508, + 443, + 539, + 398, + 539 + ], + "score": 0.9, + "latex": "r ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 418, + 396, + 1275, + 396, + 1275, + 459, + 418, + 459 + ], + "score": 0.9, + "latex": "\\underset { \\theta _ { G } } { \\arg \\operatorname* { m i n } } \\mathbb { E } _ { \\mathbf { z } \\sim p ( \\mathbf { z } ) } \\left[ \\lambda _ { \\mathrm { d e n o i s e } } \\| \\Phi ( G ( \\mathbf { z } ) ) - r ( \\Phi ( G ( \\mathbf { z } ) ) ) \\| | ^ { 2 } - \\lambda _ { \\mathrm { a d v } } \\log D ( G ( z ) ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 934, + 231, + 1047, + 231, + 1047, + 258, + 934, + 258 + ], + "score": 0.89, + "latex": "D = d { \\circ } \\Phi" + }, + { + "category_id": 13, + "poly": [ + 845, + 232, + 879, + 232, + 879, + 261, + 845, + 261 + ], + "score": 0.87, + "latex": "\\theta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 900, + 1384, + 900, + 1384, + 929, + 1332, + 929 + ], + "score": 0.87, + "latex": "\\Phi ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1455, + 1174, + 1455, + 1174, + 1481, + 1141, + 1481 + ], + "score": 0.85, + "latex": "x _ { k }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1546, + 969, + 1546, + 969, + 1573, + 945, + 1573 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 1342, + 323, + 1364, + 323, + 1364, + 349, + 1342, + 349 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 633, + 1607, + 656, + 1607, + 656, + 1633, + 633, + 1633 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 825, + 323, + 851, + 323, + 851, + 349, + 825, + 349 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 533, + 830, + 557, + 830, + 557, + 856, + 533, + 856 + ], + "score": 0.82, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 579, + 1546, + 603, + 1546, + 603, + 1572, + 579, + 1572 + ], + "score": 0.81, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 665, + 902, + 686, + 902, + 686, + 929, + 665, + 929 + ], + "score": 0.81, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 894, + 967, + 911, + 967, + 911, + 994, + 894, + 994 + ], + "score": 0.81, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1581, + 1211, + 1581, + 1211, + 1608, + 1193, + 1608 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1268, + 323, + 1286, + 323, + 1286, + 349, + 1268, + 349 + ], + "score": 0.81, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1096, + 866, + 1118, + 866, + 1118, + 894, + 1096, + 894 + ], + "score": 0.8, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 443, + 232, + 467, + 232, + 467, + 259, + 443, + 259 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1264, + 932, + 1284, + 932, + 1284, + 958, + 1264, + 958 + ], + "score": 0.79, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 1097, + 967, + 1114, + 967, + 1114, + 994, + 1097, + 994 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 499, + 651, + 522, + 651, + 522, + 677, + 499, + 677 + ], + "score": 0.72, + "latex": "\\Phi" + }, + { + "category_id": 13, + "poly": [ + 775, + 1549, + 796, + 1549, + 796, + 1573, + 775, + 1573 + ], + "score": 0.61, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 941, + 1451, + 958, + 1451, + 958, + 1477, + 941, + 1477 + ], + "score": 0.28, + "latex": "\\mathbf { J }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 645.0, + 498.0, + 645.0, + 498.0, + 683.0, + 293.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 645.0, + 526.0, + 645.0, + 526.0, + 683.0, + 523.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 585.0, + 1679.0, + 585.0, + 1722.0, + 293.0, + 1722.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, + 862.0, + 2086.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1435.0, + 347.0, + 1435.0, + 347.0, + 1494.0, + 292.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1435.0, + 940.0, + 1435.0, + 940.0, + 1494.0, + 394.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1435.0, + 1140.0, + 1435.0, + 1140.0, + 1494.0, + 959.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1435.0, + 1409.0, + 1435.0, + 1409.0, + 1494.0, + 1175.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1404.0, + 1481.0, + 1404.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1512.0, + 401.0, + 1512.0, + 401.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1512.0, + 1404.0, + 1512.0, + 1404.0, + 1550.0, + 458.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1545.0, + 578.0, + 1545.0, + 578.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1545.0, + 774.0, + 1545.0, + 774.0, + 1578.0, + 604.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1545.0, + 944.0, + 1545.0, + 944.0, + 1578.0, + 797.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1545.0, + 1405.0, + 1545.0, + 1405.0, + 1578.0, + 970.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1192.0, + 1573.0, + 1192.0, + 1612.0, + 294.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1573.0, + 1405.0, + 1573.0, + 1405.0, + 1612.0, + 1212.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1607.0, + 632.0, + 1607.0, + 632.0, + 1640.0, + 296.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1607.0, + 832.0, + 1607.0, + 832.0, + 1640.0, + 657.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 705.0, + 1404.0, + 705.0, + 1404.0, + 743.0, + 295.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 738.0, + 506.0, + 738.0, + 506.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 738.0, + 1406.0, + 738.0, + 1406.0, + 773.0, + 601.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 768.0, + 909.0, + 768.0, + 909.0, + 802.0, + 295.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 768.0, + 1404.0, + 768.0, + 1404.0, + 802.0, + 1005.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 797.0, + 1406.0, + 797.0, + 1406.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 829.0, + 532.0, + 829.0, + 532.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 829.0, + 1404.0, + 829.0, + 1404.0, + 863.0, + 558.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 853.0, + 559.0, + 853.0, + 559.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 853.0, + 763.0, + 853.0, + 763.0, + 904.0, + 719.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 853.0, + 1095.0, + 853.0, + 1095.0, + 904.0, + 887.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 853.0, + 1174.0, + 853.0, + 1174.0, + 904.0, + 1119.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 853.0, + 1404.0, + 853.0, + 1404.0, + 904.0, + 1394.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 900.0, + 664.0, + 900.0, + 664.0, + 933.0, + 293.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 900.0, + 1331.0, + 900.0, + 1331.0, + 933.0, + 687.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1385.0, + 900.0, + 1403.0, + 900.0, + 1403.0, + 933.0, + 1385.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 1263.0, + 929.0, + 1263.0, + 966.0, + 293.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 929.0, + 1407.0, + 929.0, + 1407.0, + 966.0, + 1285.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 964.0, + 893.0, + 964.0, + 893.0, + 995.0, + 295.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 964.0, + 1096.0, + 964.0, + 1096.0, + 995.0, + 912.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 964.0, + 1123.0, + 964.0, + 1123.0, + 995.0, + 1115.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 442.0, + 224.0, + 442.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 224.0, + 844.0, + 224.0, + 844.0, + 270.0, + 468.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 224.0, + 933.0, + 224.0, + 933.0, + 270.0, + 880.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 224.0, + 1406.0, + 224.0, + 1406.0, + 270.0, + 1048.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 252.0, + 489.0, + 252.0, + 489.0, + 299.0, + 290.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 252.0, + 869.0, + 252.0, + 869.0, + 299.0, + 689.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 252.0, + 1146.0, + 252.0, + 1146.0, + 299.0, + 1084.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 252.0, + 1410.0, + 252.0, + 1410.0, + 299.0, + 1345.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 824.0, + 322.0, + 824.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 322.0, + 1267.0, + 322.0, + 1267.0, + 356.0, + 852.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 322.0, + 1341.0, + 322.0, + 1341.0, + 356.0, + 1287.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 356.0, + 1365.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 353.0, + 1213.0, + 353.0, + 1213.0, + 387.0, + 295.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1402.0, + 1914.0, + 1402.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1170.0, + 1942.0, + 1170.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1975.0, + 1224.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2008.0, + 292.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1752.0, + 1403.0, + 1752.0, + 1403.0, + 1788.0, + 295.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1783.0, + 1327.0, + 1783.0, + 1327.0, + 1815.0, + 297.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 472.0, + 373.0, + 472.0, + 373.0, + 511.0, + 295.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 472.0, + 1404.0, + 472.0, + 1404.0, + 511.0, + 470.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 503.0, + 397.0, + 503.0, + 397.0, + 541.0, + 295.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 503.0, + 850.0, + 503.0, + 850.0, + 541.0, + 444.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1308.0, + 375.0, + 1308.0, + 375.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1107, + 1404, + 1107, + 1404, + 1688, + 298, + 1688 + ], + "score": 0.986 + }, + { + "category_id": 1, + "poly": [ + 298, + 459, + 1402, + 459, + 1402, + 705, + 298, + 705 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1402, + 229, + 1402, + 444, + 298, + 444 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1702, + 1402, + 1702, + 1402, + 1917, + 298, + 1917 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 719, + 1402, + 719, + 1402, + 843, + 298, + 843 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 999, + 1400, + 999, + 1400, + 1092, + 299, + 1092 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 717, + 885, + 980, + 885, + 980, + 954, + 717, + 954 + ], + "score": 0.943 + }, + { + "category_id": 9, + "poly": [ + 1353, + 906, + 1399, + 906, + 1399, + 936, + 1353, + 936 + ], + "score": 0.912 + }, + { + "category_id": 2, + "poly": [ + 327, + 2004, + 1301, + 2004, + 1301, + 2034, + 327, + 2034 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.754 + }, + { + "category_id": 13, + "poly": [ + 946, + 352, + 1182, + 352, + 1182, + 386, + 946, + 386 + ], + "score": 0.95, + "latex": "\\Phi ( \\hat { \\mathbf { m } } ) = \\mathbb { E } _ { \\mathbf { x } \\in \\mathcal { D } } \\Phi ( \\mathbf { x } )" + }, + { + "category_id": 14, + "poly": [ + 716, + 885, + 982, + 885, + 982, + 954, + 716, + 954 + ], + "score": 0.94, + "latex": "r ( \\mathbf { x } ) - \\mathbf { x } \\propto \\frac { \\partial \\log p ( \\mathbf { x } ) } { \\partial \\mathbf { x } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1595, + 343, + 1595, + 343, + 1629, + 297, + 1629 + ], + "score": 0.92, + "latex": "r ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 489, + 491, + 540, + 491, + 540, + 523, + 489, + 523 + ], + "score": 0.91, + "latex": "\\Phi ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 396, + 1000, + 509, + 1000, + 509, + 1033, + 396, + 1033 + ], + "score": 0.91, + "latex": "r ( \\mathbf { x } ) - \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 782, + 1400, + 782, + 1400, + 815, + 1356, + 815 + ], + "score": 0.89, + "latex": "r ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 737, + 1353, + 771, + 1353, + 771, + 1382, + 737, + 1382 + ], + "score": 0.85, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 384, + 867, + 384, + 867, + 410, + 840, + 410 + ], + "score": 0.81, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 641, + 553, + 667, + 553, + 667, + 579, + 641, + 579 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 923, + 384, + 949, + 384, + 949, + 410, + 923, + 410 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1300, + 323, + 1325, + 323, + 1325, + 350, + 1300, + 350 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1201, + 552, + 1227, + 552, + 1227, + 580, + 1201, + 580 + ], + "score": 0.78, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 448, + 553, + 474, + 553, + 474, + 580, + 448, + 580 + ], + "score": 0.77, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1276, + 2012, + 1294, + 2012, + 1294, + 2030, + 1276, + 2030 + ], + "score": 0.73, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 489, + 1382, + 514, + 1382, + 514, + 1409, + 489, + 1409 + ], + "score": 0.66, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 801, + 353, + 833, + 353, + 833, + 381, + 801, + 381 + ], + "score": 0.26, + "latex": "\\hat { \\mathbf { m } }" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 2001.0, + 1275.0, + 2001.0, + 1275.0, + 2037.0, + 333.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 2001.0, + 1306.0, + 2001.0, + 1306.0, + 2037.0, + 1295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1145.0, + 293.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1138.0, + 1405.0, + 1138.0, + 1405.0, + 1173.0, + 294.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1168.0, + 1404.0, + 1168.0, + 1404.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1200.0, + 1404.0, + 1200.0, + 1404.0, + 1235.0, + 293.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1229.0, + 1406.0, + 1229.0, + 1406.0, + 1266.0, + 291.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1296.0, + 294.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1287.0, + 1404.0, + 1287.0, + 1404.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1359.0, + 293.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1347.0, + 736.0, + 1347.0, + 736.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1347.0, + 1404.0, + 1347.0, + 1404.0, + 1391.0, + 772.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1382.0, + 488.0, + 1382.0, + 488.0, + 1418.0, + 293.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1382.0, + 1404.0, + 1382.0, + 1404.0, + 1418.0, + 515.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1448.0, + 293.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1440.0, + 1406.0, + 1440.0, + 1406.0, + 1480.0, + 292.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1474.0, + 1405.0, + 1474.0, + 1405.0, + 1509.0, + 294.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1541.0, + 293.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1535.0, + 1405.0, + 1535.0, + 1405.0, + 1570.0, + 294.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1406.0, + 1563.0, + 1406.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1595.0, + 296.0, + 1595.0, + 296.0, + 1630.0, + 293.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1630.0, + 344.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1623.0, + 1406.0, + 1623.0, + 1406.0, + 1664.0, + 292.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1281.0, + 1657.0, + 1281.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 496.0, + 293.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 491.0, + 488.0, + 491.0, + 488.0, + 527.0, + 292.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 491.0, + 1407.0, + 491.0, + 1407.0, + 527.0, + 541.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 521.0, + 1404.0, + 521.0, + 1404.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 551.0, + 447.0, + 551.0, + 447.0, + 587.0, + 292.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 551.0, + 640.0, + 551.0, + 640.0, + 587.0, + 475.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 551.0, + 1200.0, + 551.0, + 1200.0, + 587.0, + 668.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 587.0, + 1228.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 582.0, + 1406.0, + 582.0, + 1406.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 1407.0, + 611.0, + 1407.0, + 648.0, + 293.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 643.0, + 1406.0, + 643.0, + 1406.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 1036.0, + 675.0, + 1036.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 322.0, + 1299.0, + 322.0, + 1299.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 356.0, + 1326.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 800.0, + 352.0, + 800.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 352.0, + 945.0, + 352.0, + 945.0, + 387.0, + 834.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 352.0, + 1404.0, + 352.0, + 1404.0, + 387.0, + 1183.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 839.0, + 382.0, + 839.0, + 420.0, + 293.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 382.0, + 922.0, + 382.0, + 922.0, + 420.0, + 868.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 382.0, + 1406.0, + 382.0, + 1406.0, + 420.0, + 950.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 410.0, + 414.0, + 410.0, + 414.0, + 449.0, + 291.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 1404.0, + 1702.0, + 1404.0, + 1737.0, + 294.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1736.0, + 1403.0, + 1736.0, + 1403.0, + 1766.0, + 297.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1764.0, + 1404.0, + 1764.0, + 1404.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1406.0, + 1795.0, + 1406.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 1406.0, + 1824.0, + 1406.0, + 1859.0, + 294.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1888.0, + 296.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 1116.0, + 1887.0, + 1116.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 720.0, + 1404.0, + 720.0, + 1404.0, + 753.0, + 296.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 749.0, + 1404.0, + 749.0, + 1404.0, + 785.0, + 293.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 779.0, + 1355.0, + 779.0, + 1355.0, + 817.0, + 292.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 813.0, + 499.0, + 813.0, + 499.0, + 842.0, + 296.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 997.0, + 395.0, + 997.0, + 395.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 997.0, + 1404.0, + 997.0, + 1404.0, + 1036.0, + 510.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 1402.0, + 1031.0, + 1402.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 1176.0, + 1059.0, + 1176.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1437, + 1403, + 1437, + 1403, + 1715, + 298, + 1715 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 545, + 1403, + 545, + 1403, + 761, + 298, + 761 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 774, + 1403, + 774, + 1403, + 990, + 298, + 990 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1004, + 1404, + 1004, + 1404, + 1189, + 299, + 1189 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 315, + 1404, + 315, + 1404, + 531, + 298, + 531 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1329, + 1400, + 1329, + 1400, + 1423, + 299, + 1423 + ], + "score": 0.965 + }, + { + "category_id": 5, + "poly": [ + 334, + 1769, + 1364, + 1769, + 1364, + 1874, + 334, + 1874 + ], + "score": 0.961, + "html": "
Real data*Semi-supervised Improved GAN (Salimans et al)*Unsupervised
ALI (Dumoulin et al)†Ours
11.24 ±.128.09±.075.34 ± 0.057.72±0.13
" + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 557, + 226, + 557, + 261, + 299, + 261 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1259, + 495, + 1259, + 495, + 1290, + 299, + 1290 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.782 + }, + { + "category_id": 6, + "poly": [ + 301, + 1895, + 1399, + 1895, + 1399, + 1988, + 301, + 1988 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 301, + 1895, + 1399, + 1895, + 1399, + 1988, + 301, + 1988 + ], + "score": 0.261 + }, + { + "category_id": 13, + "poly": [ + 839, + 1068, + 936, + 1068, + 936, + 1098, + 839, + 1098 + ], + "score": 0.92, + "latex": "\\lambda _ { d e n o i s e }" + }, + { + "category_id": 13, + "poly": [ + 410, + 1035, + 519, + 1035, + 519, + 1067, + 410, + 1067 + ], + "score": 0.91, + "latex": "\\beta _ { 1 } = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 975, + 1066, + 1071, + 1066, + 1071, + 1099, + 975, + 1099 + ], + "score": 0.91, + "latex": "0 . 0 3 / n _ { h }" + }, + { + "category_id": 13, + "poly": [ + 387, + 1068, + 444, + 1068, + 444, + 1098, + 387, + 1098 + ], + "score": 0.9, + "latex": "\\lambda _ { \\mathrm { a d v } }" + }, + { + "category_id": 13, + "poly": [ + 865, + 378, + 992, + 378, + 992, + 407, + 865, + 407 + ], + "score": 0.9, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 297, + 1034, + 358, + 1034, + 358, + 1065, + 297, + 1065 + ], + "score": 0.9, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1113, + 548, + 1190, + 548, + 1190, + 575, + 1113, + 575 + ], + "score": 0.89, + "latex": "\\sigma = 1" + }, + { + "category_id": 13, + "poly": [ + 415, + 408, + 534, + 408, + 534, + 437, + 415, + 437 + ], + "score": 0.89, + "latex": "2 5 6 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1622, + 1283, + 1622, + 1283, + 1651, + 1186, + 1651 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1330, + 1402, + 1330, + 1402, + 1361, + 1236, + 1361 + ], + "score": 0.88, + "latex": "5 0 , 0 0 0 3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1562, + 1217, + 1562, + 1217, + 1591, + 1091, + 1591 + ], + "score": 0.87, + "latex": "4 . 3 6 \\pm . 0 4" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1071, + 1199, + 1071, + 1199, + 1097, + 1164, + 1097 + ], + "score": 0.86, + "latex": "n _ { h }" + }, + { + "category_id": 13, + "poly": [ + 351, + 1683, + 406, + 1683, + 406, + 1712, + 351, + 1712 + ], + "score": 0.85, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 600, + 582, + 621, + 582, + 621, + 605, + 600, + 605 + ], + "score": 0.74, + "latex": "\\sigma" + }, + { + "category_id": 14, + "poly": [ + 330, + 1767, + 1368, + 1767, + 1368, + 1876, + 330, + 1876 + ], + "score": 0.64, + "latex": "\\frac { \\mathrm { R e a l ~ d a t a ^ { \\star } ~ } } { 1 1 . 2 4 \\pm . 1 2 } \\left| \\begin{array} { c } { { \\mathrm { S e m i - s u p e r v i s e d } } } \\\\ { { \\mathrm { I m p r o v e d ~ G A N ~ ( S a l i m a n s ~ } e t a l ) ^ { \\star } } } \\\\ { { \\mathrm { 8 . 0 9 \\pm . 0 7 } } } \\end{array} \\right| \\left| \\begin{array} { c } { { \\mathrm { U n s u p e r v i s e d } } } \\\\ { { \\mathrm { A L I ~ ( D u m o u l i n ~ } e t a l ) ^ { \\dagger } } } \\\\ { { 5 . 3 4 \\pm 0 . 0 5 } } \\end{array} \\right| \\left. \\begin{array} { c } { { \\mathrm { 0 u r s ~ } } } \\\\ { { \\mathrm { 7 . 7 2 \\pm 0 . 1 3 } } } \\end{array} \\right|" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1036, + 1401, + 1036, + 1401, + 1068, + 1310, + 1068 + ], + "score": 0.31, + "latex": "\\lambda _ { \\mathrm { d e n o i s e } }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 561.0, + 223.0, + 561.0, + 267.0, + 292.0, + 267.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": [ + 293.0, + 1256.0, + 499.0, + 1256.0, + 499.0, + 1296.0, + 293.0, + 1296.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": [ + 296.0, + 1894.0, + 1402.0, + 1894.0, + 1402.0, + 1928.0, + 296.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1403.0, + 1923.0, + 1403.0, + 1961.0, + 295.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1955.0, + 422.0, + 1955.0, + 422.0, + 1990.0, + 293.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1437.0, + 1404.0, + 1437.0, + 1404.0, + 1472.0, + 296.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 1404.0, + 1470.0, + 1404.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1408.0, + 1499.0, + 1408.0, + 1535.0, + 292.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1565.0, + 292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1562.0, + 1090.0, + 1562.0, + 1090.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1562.0, + 1405.0, + 1562.0, + 1405.0, + 1594.0, + 1218.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1593.0, + 1404.0, + 1593.0, + 1404.0, + 1626.0, + 296.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1185.0, + 1621.0, + 1185.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1657.0, + 1284.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1652.0, + 1404.0, + 1652.0, + 1404.0, + 1685.0, + 296.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 350.0, + 1681.0, + 350.0, + 1718.0, + 293.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1681.0, + 1311.0, + 1681.0, + 1311.0, + 1718.0, + 407.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 547.0, + 1112.0, + 547.0, + 1112.0, + 581.0, + 294.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 547.0, + 1403.0, + 547.0, + 1403.0, + 581.0, + 1191.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 574.0, + 599.0, + 574.0, + 599.0, + 615.0, + 292.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 574.0, + 1404.0, + 574.0, + 1404.0, + 615.0, + 622.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 602.0, + 1404.0, + 602.0, + 1404.0, + 644.0, + 292.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 639.0, + 1404.0, + 639.0, + 1404.0, + 670.0, + 297.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 1404.0, + 667.0, + 1404.0, + 701.0, + 294.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 699.0, + 1405.0, + 699.0, + 1405.0, + 733.0, + 294.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 730.0, + 1271.0, + 730.0, + 1271.0, + 764.0, + 296.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 775.0, + 1403.0, + 775.0, + 1403.0, + 809.0, + 296.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 841.0, + 296.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 872.0, + 292.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 870.0, + 1404.0, + 870.0, + 1404.0, + 901.0, + 296.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 897.0, + 1405.0, + 897.0, + 1405.0, + 931.0, + 293.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 928.0, + 1405.0, + 928.0, + 1405.0, + 962.0, + 296.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 606.0, + 960.0, + 606.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 1406.0, + 1004.0, + 1406.0, + 1039.0, + 295.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1029.0, + 296.0, + 1029.0, + 296.0, + 1075.0, + 293.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1029.0, + 409.0, + 1029.0, + 409.0, + 1075.0, + 359.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1029.0, + 1309.0, + 1029.0, + 1309.0, + 1075.0, + 520.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1029.0, + 1406.0, + 1029.0, + 1406.0, + 1075.0, + 1402.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1065.0, + 386.0, + 1065.0, + 386.0, + 1104.0, + 293.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1065.0, + 838.0, + 1065.0, + 838.0, + 1104.0, + 445.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1065.0, + 974.0, + 1065.0, + 974.0, + 1104.0, + 937.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1065.0, + 1163.0, + 1065.0, + 1163.0, + 1104.0, + 1072.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1065.0, + 1408.0, + 1065.0, + 1408.0, + 1104.0, + 1200.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1131.0, + 294.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1128.0, + 1404.0, + 1128.0, + 1404.0, + 1160.0, + 295.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1185.0, + 1158.0, + 1185.0, + 1192.0, + 294.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 314.0, + 1404.0, + 314.0, + 1404.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 345.0, + 1405.0, + 345.0, + 1405.0, + 381.0, + 293.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 377.0, + 864.0, + 377.0, + 864.0, + 412.0, + 294.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 377.0, + 1404.0, + 377.0, + 1404.0, + 412.0, + 993.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 408.0, + 414.0, + 408.0, + 414.0, + 443.0, + 294.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 408.0, + 1405.0, + 408.0, + 1405.0, + 443.0, + 535.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 440.0, + 1402.0, + 440.0, + 1402.0, + 471.0, + 296.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 467.0, + 1405.0, + 467.0, + 1405.0, + 504.0, + 293.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 497.0, + 1180.0, + 497.0, + 1180.0, + 534.0, + 293.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1235.0, + 1329.0, + 1235.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1363.0, + 1404.0, + 1363.0, + 1404.0, + 1397.0, + 295.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 724.0, + 1391.0, + 724.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1894.0, + 1402.0, + 1894.0, + 1402.0, + 1928.0, + 296.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1923.0, + 1403.0, + 1923.0, + 1403.0, + 1961.0, + 295.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1955.0, + 422.0, + 1955.0, + 422.0, + 1990.0, + 293.0, + 1990.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1674, + 1404, + 1674, + 1404, + 1859, + 298, + 1859 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1031, + 1404, + 1031, + 1404, + 1217, + 298, + 1217 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1474, + 1405, + 1474, + 1405, + 1660, + 297, + 1660 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 298, + 225, + 1402, + 225, + 1402, + 854, + 298, + 854 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1402, + 1971, + 1402, + 2035, + 297, + 2035 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 298, + 1903, + 914, + 1903, + 914, + 1939, + 298, + 1939 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 298, + 1417, + 498, + 1417, + 498, + 1449, + 298, + 1449 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 973, + 463, + 973, + 463, + 1006, + 298, + 1006 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 4, + "poly": [ + 303, + 888, + 1391, + 888, + 1391, + 921, + 303, + 921 + ], + "score": 0.876 + }, + { + "category_id": 6, + "poly": [ + 466, + 1334, + 1229, + 1334, + 1229, + 1367, + 466, + 1367 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.662 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 859, + 2087, + 859, + 2111, + 842, + 2111 + ], + "score": 0.24 + }, + { + "category_id": 13, + "poly": [ + 1114, + 1124, + 1205, + 1124, + 1205, + 1153, + 1114, + 1153 + ], + "score": 0.9, + "latex": "4 8 \\times 4 8" + }, + { + "category_id": 13, + "poly": [ + 694, + 1598, + 789, + 1598, + 789, + 1627, + 694, + 1627 + ], + "score": 0.9, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 489, + 1064, + 588, + 1064, + 588, + 1093, + 489, + 1093 + ], + "score": 0.79, + "latex": "9 6 \\times 9 6" + }, + { + "category_id": 5, + "poly": [ + 583, + 1242, + 1117, + 1242, + 1117, + 1312, + 583, + 1312 + ], + "score": 0.76, + "html": "
Real dataOursGANBaseline
26.08±.268.51 ± 0.137.84 ± .07
" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 248.0, + 835.0, + 248.0, + 835.0, + 286.0, + 787.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 240.0, + 923.0, + 240.0, + 923.0, + 298.0, + 864.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 223.0, + 1377.0, + 223.0, + 1377.0, + 310.0, + 1075.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 314.0, + 995.0, + 314.0, + 995.0, + 374.0, + 935.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 322.0, + 1085.0, + 322.0, + 1085.0, + 367.0, + 1018.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 399.0, + 756.0, + 399.0, + 756.0, + 432.0, + 713.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 415.0, + 924.0, + 415.0, + 924.0, + 452.0, + 889.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 456.0, + 944.0, + 456.0, + 944.0, + 549.0, + 621.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 547.0, + 1399.0, + 547.0, + 1399.0, + 628.0, + 1328.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 564.0, + 1156.0, + 564.0, + 1156.0, + 605.0, + 1111.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 629.0, + 607.0, + 629.0, + 607.0, + 688.0, + 453.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 614.0, + 1404.0, + 614.0, + 1404.0, + 708.0, + 1319.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 693.0, + 700.0, + 693.0, + 700.0, + 787.0, + 361.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 727.0, + 750.0, + 727.0, + 750.0, + 767.0, + 705.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 727.0, + 1051.0, + 727.0, + 1051.0, + 747.0, + 1027.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 727.0, + 1146.0, + 727.0, + 1146.0, + 747.0, + 1121.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 720.0, + 1226.0, + 720.0, + 1226.0, + 753.0, + 1175.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 764.0, + 703.0, + 764.0, + 703.0, + 859.0, + 361.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 767.0, + 1408.0, + 767.0, + 1408.0, + 863.0, + 847.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.25, + 235.5, + 1076.25, + 235.5, + 1076.25, + 288.5, + 1025.25, + 288.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 315.5, + 925.0, + 315.5, + 925.0, + 367.5, + 850.0, + 367.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.25, + 471.0, + 1000.25, + 471.0, + 1000.25, + 535.5, + 923.25, + 535.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 720.5, + 1002.0, + 720.5, + 1002.0, + 761.0, + 936.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.75, + 782.0, + 777.75, + 782.0, + 777.75, + 833.0, + 687.75, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1900.0, + 917.0, + 1900.0, + 917.0, + 1944.0, + 293.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 503.0, + 1414.0, + 503.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 971.0, + 466.0, + 971.0, + 466.0, + 1011.0, + 294.0, + 1011.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": [ + 304.0, + 884.0, + 1391.0, + 884.0, + 1391.0, + 925.0, + 304.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1333.0, + 1231.0, + 1333.0, + 1231.0, + 1369.0, + 468.0, + 1369.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": [ + 840.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1708.0, + 296.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1739.0, + 296.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 1406.0, + 1731.0, + 1406.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1801.0, + 293.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 1405.0, + 1796.0, + 1405.0, + 1831.0, + 294.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1826.0, + 547.0, + 1826.0, + 547.0, + 1862.0, + 293.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1405.0, + 1030.0, + 1405.0, + 1067.0, + 293.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1060.0, + 488.0, + 1060.0, + 488.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1060.0, + 1406.0, + 1060.0, + 1406.0, + 1098.0, + 589.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 1406.0, + 1092.0, + 1406.0, + 1128.0, + 294.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1123.0, + 1113.0, + 1123.0, + 1113.0, + 1157.0, + 295.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1123.0, + 1404.0, + 1123.0, + 1404.0, + 1157.0, + 1206.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1189.0, + 293.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1364.0, + 1184.0, + 1364.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1474.0, + 1406.0, + 1474.0, + 1406.0, + 1510.0, + 295.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1501.0, + 1406.0, + 1501.0, + 1406.0, + 1545.0, + 291.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1576.0, + 292.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1406.0, + 1564.0, + 1406.0, + 1603.0, + 294.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 693.0, + 1596.0, + 693.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1632.0, + 790.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 388.0, + 1626.0, + 388.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 299, + 1260, + 1403, + 1260, + 1403, + 1850, + 299, + 1850 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 298, + 338, + 1401, + 338, + 1401, + 927, + 298, + 927 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 960, + 1399, + 960, + 1399, + 1022, + 296, + 1022 + ], + "score": 0.931 + }, + { + "category_id": 4, + "poly": [ + 436, + 1882, + 1262, + 1882, + 1262, + 1916, + 436, + 1916 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.787 + }, + { + "category_id": 13, + "poly": [ + 1044, + 1883, + 1138, + 1883, + 1138, + 1914, + 1044, + 1914 + ], + "score": 0.82, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1279.0, + 733.0, + 1279.0, + 733.0, + 1322.0, + 660.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1277.0, + 811.0, + 1277.0, + 811.0, + 1330.0, + 746.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1282.0, + 1033.0, + 1282.0, + 1033.0, + 1318.0, + 973.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1278.0, + 1109.0, + 1278.0, + 1109.0, + 1324.0, + 1037.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1367.0, + 655.0, + 1367.0, + 655.0, + 1395.0, + 620.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1347.0, + 733.0, + 1347.0, + 733.0, + 1402.0, + 672.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1333.0, + 1029.0, + 1333.0, + 1029.0, + 1418.0, + 736.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1424.0, + 1239.0, + 1424.0, + 1239.0, + 1464.0, + 1195.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1480.0, + 817.0, + 1480.0, + 817.0, + 1563.0, + 542.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1486.0, + 1114.0, + 1486.0, + 1114.0, + 1559.0, + 865.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1580.0, + 953.0, + 1580.0, + 953.0, + 1616.0, + 896.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1550.0, + 1336.0, + 1550.0, + 1336.0, + 1643.0, + 1035.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1631.0, + 1337.0, + 1631.0, + 1337.0, + 1707.0, + 952.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1736.0, + 1004.0, + 1736.0, + 1004.0, + 1752.0, + 988.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.25, + 1288.0, + 1236.25, + 1288.0, + 1236.25, + 1321.0, + 1191.25, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.25, + 1488.5, + 890.25, + 1488.5, + 890.25, + 1554.5, + 808.25, + 1554.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 435.0, + 588.0, + 435.0, + 588.0, + 477.0, + 527.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 451.0, + 501.0, + 451.0, + 501.0, + 463.0, + 490.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 654.0, + 1101.0, + 654.0, + 1101.0, + 695.0, + 1037.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 658.0, + 1031.0, + 658.0, + 1031.0, + 695.0, + 996.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 860.0, + 452.0, + 860.0, + 452.0, + 917.0, + 352.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 860.0, + 594.0, + 860.0, + 594.0, + 920.0, + 525.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 856.0, + 758.0, + 856.0, + 758.0, + 910.0, + 666.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 849.0, + 1049.0, + 849.0, + 1049.0, + 933.0, + 798.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.25, + 654.5, + 732.25, + 654.5, + 732.25, + 689.0, + 666.25, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.75, + 861.0, + 507.75, + 861.0, + 507.75, + 908.0, + 444.75, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.25, + 872.5, + 640.25, + 872.5, + 640.25, + 896.5, + 634.25, + 896.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 959.0, + 1404.0, + 959.0, + 1404.0, + 995.0, + 295.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 991.0, + 551.0, + 991.0, + 551.0, + 1023.0, + 296.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1879.0, + 1043.0, + 1879.0, + 1043.0, + 1921.0, + 432.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1879.0, + 1265.0, + 1879.0, + 1265.0, + 1921.0, + 1139.0, + 1921.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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 433, + 1404, + 433, + 1404, + 771, + 298, + 771 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1166, + 1404, + 1166, + 1404, + 1443, + 298, + 1443 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 786, + 1403, + 786, + 1403, + 940, + 299, + 940 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 955, + 1402, + 955, + 1402, + 1078, + 299, + 1078 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 592, + 222, + 1103, + 222, + 1103, + 291, + 592, + 291 + ], + "score": 0.959, + "html": "
Real dataRadford et al*Ours
25.78 ± .478.83 ± 0.149.18± .13
" + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 301, + 1115, + 557, + 1115, + 557, + 1143, + 301, + 1143 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 299, + 1488, + 487, + 1488, + 487, + 1522, + 299, + 1522 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 297, + 1541, + 1401, + 1541, + 1401, + 1603, + 297, + 1603 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 293, + 313, + 1400, + 313, + 1400, + 377, + 293, + 377 + ], + "score": 0.591 + }, + { + "category_id": 1, + "poly": [ + 295, + 1625, + 1399, + 1625, + 1399, + 1718, + 295, + 1718 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 293, + 1942, + 1402, + 1942, + 1402, + 2033, + 293, + 2033 + ], + "score": 0.517 + }, + { + "category_id": 6, + "poly": [ + 293, + 313, + 1400, + 313, + 1400, + 377, + 293, + 377 + ], + "score": 0.491 + }, + { + "category_id": 1, + "poly": [ + 291, + 1740, + 1402, + 1740, + 1402, + 1805, + 291, + 1805 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 300, + 1825, + 1399, + 1825, + 1399, + 1919, + 300, + 1919 + ], + "score": 0.465 + }, + { + "category_id": 13, + "poly": [ + 964, + 315, + 1063, + 315, + 1063, + 344, + 964, + 344 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "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": [ + 299.0, + 1117.0, + 558.0, + 1117.0, + 558.0, + 1146.0, + 299.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1489.0, + 490.0, + 1489.0, + 490.0, + 1525.0, + 296.0, + 1525.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, + 313.0, + 963.0, + 313.0, + 963.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 313.0, + 1403.0, + 313.0, + 1403.0, + 349.0, + 1064.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 344.0, + 1158.0, + 344.0, + 1158.0, + 380.0, + 293.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 433.0, + 1404.0, + 433.0, + 1404.0, + 471.0, + 293.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 466.0, + 1404.0, + 466.0, + 1404.0, + 501.0, + 293.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 492.0, + 1404.0, + 492.0, + 1404.0, + 534.0, + 292.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 525.0, + 1404.0, + 525.0, + 1404.0, + 562.0, + 295.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 590.0, + 296.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 622.0, + 294.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 618.0, + 1404.0, + 618.0, + 1404.0, + 653.0, + 294.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1405.0, + 648.0, + 1405.0, + 683.0, + 294.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 680.0, + 1402.0, + 680.0, + 1402.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 709.0, + 1405.0, + 709.0, + 1405.0, + 744.0, + 294.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 739.0, + 882.0, + 739.0, + 882.0, + 775.0, + 293.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1167.0, + 1405.0, + 1167.0, + 1405.0, + 1200.0, + 297.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1196.0, + 1404.0, + 1196.0, + 1404.0, + 1231.0, + 296.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 1404.0, + 1226.0, + 1404.0, + 1264.0, + 293.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1293.0, + 292.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1402.0, + 1290.0, + 1402.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1320.0, + 1404.0, + 1320.0, + 1404.0, + 1353.0, + 294.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1350.0, + 1402.0, + 1350.0, + 1402.0, + 1383.0, + 293.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1405.0, + 624.0, + 1405.0, + 624.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 786.0, + 1404.0, + 786.0, + 1404.0, + 818.0, + 295.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 1404.0, + 817.0, + 1404.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 846.0, + 1407.0, + 846.0, + 1407.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 875.0, + 1405.0, + 875.0, + 1405.0, + 913.0, + 292.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 1145.0, + 907.0, + 1145.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 953.0, + 1406.0, + 953.0, + 1406.0, + 990.0, + 293.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 985.0, + 1406.0, + 985.0, + 1406.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1015.0, + 1404.0, + 1015.0, + 1404.0, + 1053.0, + 294.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1044.0, + 599.0, + 1044.0, + 599.0, + 1085.0, + 293.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1572.0, + 892.0, + 1572.0, + 892.0, + 1605.0, + 322.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 313.0, + 963.0, + 313.0, + 963.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 313.0, + 1403.0, + 313.0, + 1403.0, + 349.0, + 1064.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 344.0, + 1158.0, + 344.0, + 1158.0, + 380.0, + 293.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1627.0, + 1403.0, + 1627.0, + 1403.0, + 1657.0, + 296.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1656.0, + 1401.0, + 1656.0, + 1401.0, + 1690.0, + 324.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1690.0, + 739.0, + 1690.0, + 739.0, + 1720.0, + 325.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 321.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2005.0, + 574.0, + 2005.0, + 574.0, + 2033.0, + 321.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 1405.0, + 1735.0, + 1405.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1771.0, + 1192.0, + 1771.0, + 1192.0, + 1806.0, + 322.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1862.0, + 295.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1857.0, + 1403.0, + 1857.0, + 1403.0, + 1891.0, + 324.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1889.0, + 695.0, + 1889.0, + 695.0, + 1919.0, + 324.0, + 1919.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 302, + 1552, + 1402, + 1552, + 1402, + 1647, + 302, + 1647 + ], + "score": 0.843 + }, + { + "category_id": 1, + "poly": [ + 296, + 1390, + 1399, + 1390, + 1399, + 1425, + 296, + 1425 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 299, + 1440, + 1402, + 1440, + 1402, + 1535, + 299, + 1535 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 297, + 1309, + 1399, + 1309, + 1399, + 1373, + 297, + 1373 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 296, + 1665, + 1403, + 1665, + 1403, + 1760, + 296, + 1760 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 297, + 952, + 1398, + 952, + 1398, + 1017, + 297, + 1017 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 300, + 1227, + 1399, + 1227, + 1399, + 1292, + 300, + 1292 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 292, + 615, + 1403, + 615, + 1403, + 681, + 292, + 681 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 298, + 1146, + 1400, + 1146, + 1400, + 1210, + 298, + 1210 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 293, + 422, + 1400, + 422, + 1400, + 488, + 293, + 488 + ], + "score": 0.764 + }, + { + "category_id": 1, + "poly": [ + 301, + 503, + 1400, + 503, + 1400, + 599, + 301, + 599 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 296, + 871, + 1399, + 871, + 1399, + 935, + 296, + 935 + ], + "score": 0.751 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 323, + 299, + 323 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 294, + 340, + 1401, + 340, + 1401, + 405, + 294, + 405 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 294, + 1777, + 1396, + 1777, + 1396, + 1842, + 294, + 1842 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 297, + 697, + 1403, + 697, + 1403, + 853, + 297, + 853 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 294, + 1859, + 1399, + 1859, + 1399, + 1923, + 294, + 1923 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1404, + 1942, + 1404, + 2035, + 299, + 2035 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 297, + 1033, + 1404, + 1033, + 1404, + 1128, + 297, + 1128 + ], + "score": 0.618 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1590.0, + 297.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1620.0, + 323.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1615.0, + 536.0, + 1615.0, + 536.0, + 1647.0, + 323.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 1404.0, + 1386.0, + 1404.0, + 1430.0, + 295.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 1403.0, + 1437.0, + 1403.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1509.0, + 322.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1500.0, + 398.0, + 1500.0, + 398.0, + 1536.0, + 319.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1304.0, + 1405.0, + 1304.0, + 1405.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1339.0, + 597.0, + 1339.0, + 597.0, + 1373.0, + 321.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1664.0, + 1403.0, + 1664.0, + 1403.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1737.0, + 320.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1727.0, + 612.0, + 1727.0, + 612.0, + 1762.0, + 321.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 951.0, + 1404.0, + 951.0, + 1404.0, + 991.0, + 293.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 985.0, + 895.0, + 985.0, + 895.0, + 1018.0, + 322.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 1402.0, + 1225.0, + 1402.0, + 1265.0, + 295.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1258.0, + 907.0, + 1258.0, + 907.0, + 1293.0, + 322.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1405.0, + 612.0, + 1405.0, + 656.0, + 294.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 647.0, + 1039.0, + 647.0, + 1039.0, + 683.0, + 324.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1143.0, + 1404.0, + 1143.0, + 1404.0, + 1186.0, + 293.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1177.0, + 1144.0, + 1177.0, + 1144.0, + 1211.0, + 321.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 425.0, + 1402.0, + 425.0, + 1402.0, + 458.0, + 297.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 452.0, + 1336.0, + 452.0, + 1336.0, + 489.0, + 322.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 501.0, + 1400.0, + 501.0, + 1400.0, + 541.0, + 296.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 536.0, + 1404.0, + 536.0, + 1404.0, + 571.0, + 322.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 564.0, + 396.0, + 564.0, + 396.0, + 599.0, + 321.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 909.0, + 291.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 902.0, + 595.0, + 902.0, + 595.0, + 932.0, + 322.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 258.0, + 1406.0, + 258.0, + 1406.0, + 298.0, + 320.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 291.0, + 549.0, + 291.0, + 549.0, + 323.0, + 319.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 336.0, + 1406.0, + 336.0, + 1406.0, + 380.0, + 292.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 373.0, + 611.0, + 373.0, + 611.0, + 406.0, + 321.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1777.0, + 1400.0, + 1777.0, + 1400.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1808.0, + 1207.0, + 1808.0, + 1207.0, + 1844.0, + 322.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1404.0, + 698.0, + 1404.0, + 734.0, + 294.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 724.0, + 1407.0, + 724.0, + 1407.0, + 768.0, + 320.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 759.0, + 1404.0, + 759.0, + 1404.0, + 795.0, + 324.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 830.0, + 320.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 822.0, + 1174.0, + 822.0, + 1174.0, + 855.0, + 324.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1897.0, + 292.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1890.0, + 598.0, + 1890.0, + 598.0, + 1920.0, + 322.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1403.0, + 1943.0, + 1403.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 323.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 949.0, + 2003.0, + 949.0, + 2037.0, + 323.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1033.0, + 1404.0, + 1033.0, + 1404.0, + 1071.0, + 294.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1063.0, + 1406.0, + 1063.0, + 1406.0, + 1102.0, + 321.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1095.0, + 547.0, + 1095.0, + 547.0, + 1129.0, + 320.0, + 1129.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 288, + 1521, + 1400, + 1521, + 1400, + 1586, + 288, + 1586 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 300, + 1014, + 1398, + 1014, + 1398, + 1110, + 300, + 1110 + ], + "score": 0.498 + }, + { + "category_id": 1, + "poly": [ + 301, + 1128, + 1402, + 1128, + 1402, + 1223, + 301, + 1223 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 295, + 931, + 1401, + 931, + 1401, + 996, + 295, + 996 + ], + "score": 0.487 + }, + { + "category_id": 1, + "poly": [ + 296, + 735, + 1400, + 735, + 1400, + 801, + 296, + 801 + ], + "score": 0.487 + }, + { + "category_id": 1, + "poly": [ + 296, + 1408, + 1399, + 1408, + 1399, + 1503, + 296, + 1503 + ], + "score": 0.483 + }, + { + "category_id": 1, + "poly": [ + 290, + 1241, + 1402, + 1241, + 1402, + 1307, + 290, + 1307 + ], + "score": 0.472 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1402, + 229, + 1402, + 294, + 293, + 294 + ], + "score": 0.462 + }, + { + "category_id": 1, + "poly": [ + 298, + 818, + 1401, + 818, + 1401, + 913, + 298, + 913 + ], + "score": 0.459 + }, + { + "category_id": 1, + "poly": [ + 290, + 1325, + 1401, + 1325, + 1401, + 1390, + 290, + 1390 + ], + "score": 0.449 + }, + { + "category_id": 1, + "poly": [ + 298, + 538, + 1397, + 538, + 1397, + 632, + 298, + 632 + ], + "score": 0.403 + }, + { + "category_id": 1, + "poly": [ + 296, + 651, + 1399, + 651, + 1399, + 717, + 296, + 717 + ], + "score": 0.399 + }, + { + "category_id": 1, + "poly": [ + 300, + 426, + 1399, + 426, + 1399, + 520, + 300, + 520 + ], + "score": 0.393 + }, + { + "category_id": 1, + "poly": [ + 302, + 312, + 1398, + 312, + 1398, + 406, + 302, + 406 + ], + "score": 0.386 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1519.0, + 1403.0, + 1519.0, + 1403.0, + 1557.0, + 291.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1552.0, + 774.0, + 1552.0, + 774.0, + 1587.0, + 323.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1015.0, + 1402.0, + 1015.0, + 1402.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1044.0, + 1403.0, + 1044.0, + 1403.0, + 1083.0, + 321.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1075.0, + 1260.0, + 1075.0, + 1260.0, + 1111.0, + 324.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1127.0, + 1406.0, + 1127.0, + 1406.0, + 1165.0, + 294.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1160.0, + 1406.0, + 1160.0, + 1406.0, + 1196.0, + 322.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1190.0, + 943.0, + 1190.0, + 943.0, + 1224.0, + 322.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 934.0, + 1403.0, + 934.0, + 1403.0, + 966.0, + 297.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 964.0, + 873.0, + 964.0, + 873.0, + 997.0, + 322.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 1404.0, + 736.0, + 1404.0, + 773.0, + 295.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 802.0, + 322.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 1404.0, + 1406.0, + 1404.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1438.0, + 1405.0, + 1438.0, + 1405.0, + 1474.0, + 321.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1469.0, + 918.0, + 1469.0, + 918.0, + 1505.0, + 322.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 1405.0, + 1240.0, + 1405.0, + 1279.0, + 293.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1273.0, + 1389.0, + 1273.0, + 1389.0, + 1309.0, + 322.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 1407.0, + 224.0, + 1407.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 1300.0, + 262.0, + 1300.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 1405.0, + 817.0, + 1405.0, + 857.0, + 294.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 850.0, + 1403.0, + 850.0, + 1403.0, + 884.0, + 323.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 917.0, + 322.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 1403.0, + 1325.0, + 1403.0, + 1361.0, + 294.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1355.0, + 1195.0, + 1355.0, + 1195.0, + 1392.0, + 321.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 538.0, + 1401.0, + 538.0, + 1401.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 570.0, + 1401.0, + 570.0, + 1401.0, + 604.0, + 324.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 602.0, + 640.0, + 602.0, + 640.0, + 635.0, + 323.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 652.0, + 1404.0, + 652.0, + 1404.0, + 688.0, + 297.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 683.0, + 1251.0, + 683.0, + 1251.0, + 719.0, + 321.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 423.0, + 1404.0, + 423.0, + 1404.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 456.0, + 1405.0, + 456.0, + 1405.0, + 494.0, + 324.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 486.0, + 996.0, + 486.0, + 996.0, + 524.0, + 324.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 313.0, + 1403.0, + 313.0, + 1403.0, + 347.0, + 296.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 341.0, + 1403.0, + 341.0, + 1403.0, + 381.0, + 321.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 376.0, + 772.0, + 376.0, + 772.0, + 406.0, + 326.0, + 406.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/SJeeL04KvH/images/02f2013d0ad2d06af7dc1946fa1b518e11a9c89fee849c6851efedd32719bbfc.jpg b/parse/train/SJeeL04KvH/images/02f2013d0ad2d06af7dc1946fa1b518e11a9c89fee849c6851efedd32719bbfc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fee4d5aa5ede4468f930b9651804715ce3cf5501 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/02f2013d0ad2d06af7dc1946fa1b518e11a9c89fee849c6851efedd32719bbfc.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363aa8ff9389dfb9cbf10224f7c8c299e06dfe7bdc64fcbe20bc337306a5f635 +size 2660 diff --git a/parse/train/SJeeL04KvH/images/128a3fda67bdc02eb9d5c8751465a77f6434a4ccdc4e0dccbe56af29e25928e5.jpg b/parse/train/SJeeL04KvH/images/128a3fda67bdc02eb9d5c8751465a77f6434a4ccdc4e0dccbe56af29e25928e5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2fc1d3d5135a0f6cf896dd05fb51dc07274f2f7 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/128a3fda67bdc02eb9d5c8751465a77f6434a4ccdc4e0dccbe56af29e25928e5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:598bf43e12d834030298170c1971ec6b0e772706b082cdd0dec62fe8c4a99dde +size 7398 diff --git a/parse/train/SJeeL04KvH/images/12c7c0e239455a1adde207ad0126dfd7e810e7e0e880abbce900d5abbe48127a.jpg b/parse/train/SJeeL04KvH/images/12c7c0e239455a1adde207ad0126dfd7e810e7e0e880abbce900d5abbe48127a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eddd0194787bd86c0e7c8878c142feeba93c26a --- /dev/null +++ b/parse/train/SJeeL04KvH/images/12c7c0e239455a1adde207ad0126dfd7e810e7e0e880abbce900d5abbe48127a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19c59f07215e18bd086c301d88d023019863e1441e16526c5820f61824d8b6b +size 10852 diff --git a/parse/train/SJeeL04KvH/images/1ee554e5896901ded7d637a83e968850b43cba89870f68430656f163376a0003.jpg b/parse/train/SJeeL04KvH/images/1ee554e5896901ded7d637a83e968850b43cba89870f68430656f163376a0003.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc4719c30f484fa033ff8390479ca82a45042820 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/1ee554e5896901ded7d637a83e968850b43cba89870f68430656f163376a0003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8275e6af767289617f067ed4a8d515d857519ef68e86aebaa7860315e62a9e43 +size 45075 diff --git a/parse/train/SJeeL04KvH/images/2e0e0fccaeac2acbdfad79dfa2e5b1c6c472fd19488b656f4db3b7d7bc89304e.jpg b/parse/train/SJeeL04KvH/images/2e0e0fccaeac2acbdfad79dfa2e5b1c6c472fd19488b656f4db3b7d7bc89304e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c00c2a0615026ff156d80a4f791cc392fa5487f --- /dev/null +++ b/parse/train/SJeeL04KvH/images/2e0e0fccaeac2acbdfad79dfa2e5b1c6c472fd19488b656f4db3b7d7bc89304e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1346b6a5aeb27b90aa3f467c373adfc0f7c51260e2a5656f0d40b4a2d1b052b5 +size 44185 diff --git a/parse/train/SJeeL04KvH/images/5662b40501d8fa56d6554c4827008e8ec83c2dcca0f1c6fa66098a505f3f1f86.jpg b/parse/train/SJeeL04KvH/images/5662b40501d8fa56d6554c4827008e8ec83c2dcca0f1c6fa66098a505f3f1f86.jpg new file mode 100644 index 0000000000000000000000000000000000000000..317198a3ca51524f639c68589e3c9dcfe921290a --- /dev/null +++ b/parse/train/SJeeL04KvH/images/5662b40501d8fa56d6554c4827008e8ec83c2dcca0f1c6fa66098a505f3f1f86.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a3d7f8bea92c2743782cb95065a98a7e538f7d3d9c142c12f7f97e2475c032 +size 7577 diff --git a/parse/train/SJeeL04KvH/images/66efd9ce834e8e046d594f682cbf4cf46344c3e0aa207c3a45f8ff02a5b786a5.jpg b/parse/train/SJeeL04KvH/images/66efd9ce834e8e046d594f682cbf4cf46344c3e0aa207c3a45f8ff02a5b786a5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e57478c042f118a38b22e1bbd916d6a3e1c2673 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/66efd9ce834e8e046d594f682cbf4cf46344c3e0aa207c3a45f8ff02a5b786a5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a59b6718af21f37c34baeaae2c89f64d9ed1dafce27f93516d2597912220bc2 +size 11229 diff --git a/parse/train/SJeeL04KvH/images/694adc61d4f26c451bcf5be864db3c0d5e21a43e757a839a544d7e26e57000c0.jpg b/parse/train/SJeeL04KvH/images/694adc61d4f26c451bcf5be864db3c0d5e21a43e757a839a544d7e26e57000c0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9e3e2442a81694acedd870adccf47485c71b8fc --- /dev/null +++ b/parse/train/SJeeL04KvH/images/694adc61d4f26c451bcf5be864db3c0d5e21a43e757a839a544d7e26e57000c0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb87c8845f2acd20e758596bcd1ef0b632e65adc907d1ed257e3b013cccd1507 +size 43556 diff --git a/parse/train/SJeeL04KvH/images/6e38debce1d60547c033e00a2ae7864a3851aa80134c30686b7c722c87e3df6e.jpg b/parse/train/SJeeL04KvH/images/6e38debce1d60547c033e00a2ae7864a3851aa80134c30686b7c722c87e3df6e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36ee0886b9e8168a0b59e6203b60fd01144a5b30 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/6e38debce1d60547c033e00a2ae7864a3851aa80134c30686b7c722c87e3df6e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d4e473e8cd31fab49d4caaa6470eddebecd9fc81f6c3c6db8cf5eb7b28c3f1 +size 86314 diff --git a/parse/train/SJeeL04KvH/images/77912d54de8f9bb0c707546a2bc5e90c062c83c8a8055c288dfa82170227281e.jpg b/parse/train/SJeeL04KvH/images/77912d54de8f9bb0c707546a2bc5e90c062c83c8a8055c288dfa82170227281e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd8a66244f5a82ca48eea4dd18bc3a11634d1d26 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/77912d54de8f9bb0c707546a2bc5e90c062c83c8a8055c288dfa82170227281e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5668e60238c31756f957a7fa4d0e7e4efe5f0ba1b71501add85146cfcc868f3 +size 33346 diff --git a/parse/train/SJeeL04KvH/images/9c0ef48765fb0cd04af6818e1ac3829ead5bc61a1550900e6d21dae2aaef37b8.jpg b/parse/train/SJeeL04KvH/images/9c0ef48765fb0cd04af6818e1ac3829ead5bc61a1550900e6d21dae2aaef37b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b71b4464eab0b249a3544d5289227e10228a56ee --- /dev/null +++ b/parse/train/SJeeL04KvH/images/9c0ef48765fb0cd04af6818e1ac3829ead5bc61a1550900e6d21dae2aaef37b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029fe6396e786cc220e47b001c08c770102084212395fbbc17e723a3c58bfada +size 9201 diff --git a/parse/train/SJeeL04KvH/images/a65c008a286d84139a1cea3caf8f8fcfd400370bb27be03120d600a602644010.jpg b/parse/train/SJeeL04KvH/images/a65c008a286d84139a1cea3caf8f8fcfd400370bb27be03120d600a602644010.jpg new file mode 100644 index 0000000000000000000000000000000000000000..311231aa91d13b20a39c12d227c030b7d0b433ad --- /dev/null +++ b/parse/train/SJeeL04KvH/images/a65c008a286d84139a1cea3caf8f8fcfd400370bb27be03120d600a602644010.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953e5300af57d12c642e965a4eba47af38fba7878a7d9e969aab07327e1d2477 +size 11538 diff --git a/parse/train/SJeeL04KvH/images/ada8294d76d0fdd950157581591b7c3276c51c515f73a96add93f7eee66ee6eb.jpg b/parse/train/SJeeL04KvH/images/ada8294d76d0fdd950157581591b7c3276c51c515f73a96add93f7eee66ee6eb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f0096994385df138676edfa66c79e1434c1aa470 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/ada8294d76d0fdd950157581591b7c3276c51c515f73a96add93f7eee66ee6eb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df752a4bbf0212d9d88d0d25f5ec01b188d884e17e5e94f6f64d845c26b09c52 +size 92785 diff --git a/parse/train/SJeeL04KvH/images/eee053431cfb89efd2e90e9fa1c695c48f40cbfe0b96099c3965ce3f17ee7d2d.jpg b/parse/train/SJeeL04KvH/images/eee053431cfb89efd2e90e9fa1c695c48f40cbfe0b96099c3965ce3f17ee7d2d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9467b9a0b253e6b1824774eabb2c193633c263c1 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/eee053431cfb89efd2e90e9fa1c695c48f40cbfe0b96099c3965ce3f17ee7d2d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dc6ed8fe9c582176f2d657fb028240ca2b4493b7c7f127c8347dbcb2e48b34 +size 52129 diff --git a/parse/train/SJeeL04KvH/images/f394b0d830561608f4ea8db20dda87845d0c8ef02ebe2c20927c5e757ea9d396.jpg b/parse/train/SJeeL04KvH/images/f394b0d830561608f4ea8db20dda87845d0c8ef02ebe2c20927c5e757ea9d396.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e8c06b0aba0ac642e3d3d14a3c7e0b022bdbad7 --- /dev/null +++ b/parse/train/SJeeL04KvH/images/f394b0d830561608f4ea8db20dda87845d0c8ef02ebe2c20927c5e757ea9d396.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f6f20fbf20daf1575435ab9c518ec1a43bb55084d19f30838a43f027af1adf +size 56603 diff --git a/parse/train/SkFEGHx0Z/SkFEGHx0Z_middle.json b/parse/train/SkFEGHx0Z/SkFEGHx0Z_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..918f912ab601d0d0e4238c9167b91e225b4b8a25 --- /dev/null +++ b/parse/train/SkFEGHx0Z/SkFEGHx0Z_middle.json @@ -0,0 +1,26650 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 495, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 388, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 388, + 97 + ], + "score": 1.0, + "content": "NEAREST NEIGHBOUR RADIAL BASIS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 495, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 495, + 118 + ], + "score": 1.0, + "content": "FUNCTION SOLVERS FOR DEEP NEURAL NETWORKS", + "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, + 212, + 469, + 388 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 469, + 224 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 469, + 224 + ], + "score": 1.0, + "content": "We present a radial basis function solver for convolutional neural networks that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "score": 1.0, + "content": "can be directly applied to both distance metric learning and classification problems.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "Our method treats all training features from a deep neural network as radial basis", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "function centres and computes loss by summing the influence of a feature’s nearby", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "centres in the embedding space. Having a radial basis function centred on each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "training feature is made scalable by treating it as an approximate nearest neighbour", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "search problem. End-to-end learning of the network and solver is carried out,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 299 + ], + "score": 1.0, + "content": "mapping high dimensional features into clusters of the same class. This results in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "well formed embedding space, where semantically related instances are likely to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "score": 1.0, + "content": "be located near one another, regardless of whether or not the network was trained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "on those classes. The same loss function is used for both the metric learning and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "classification problems. We show that our radial basis function solver outperforms", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 471, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 471, + 355 + ], + "score": 1.0, + "content": "state-of-the-art embedding approaches on the Stanford Cars196 and CUB-200-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "2011 datasets. Additionally, we show that when used as a classifier, our method", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 469, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 469, + 376 + ], + "score": 1.0, + "content": "outperforms a conventional softmax classifier on the CUB-200-2011, Stanford", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 376, + 461, + 388 + ], + "spans": [ + { + "bbox": [ + 142, + 376, + 461, + 388 + ], + "score": 1.0, + "content": "Cars196, Oxford 102 Flowers and Leafsnap fine-grained classification datasets.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 206, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "score": 1.0, + "content": "The solver of a neural network is vital to its performance, as it defines the objective and drives the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "score": 1.0, + "content": "learning. We define a solver as the layers of the network that are aware of the class labels of the data.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "In the domain of image classification, a softmax solver is conventionally used to transform activations", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "into a distribution across class labels (Krizhevsky et al., 2012; Simonyan & Zisserman, 2014; Szegedy", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "et al., 2015; He et al., 2016). While in the domain of distance metric learning, a Siamese (Chopra", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "et al., 2005) or triplet (Hoffer & Ailon, 2015; Schroff et al., 2015; Kumar et al., 2017) solver, with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "contrastive or hinge loss, is commonly used to pull embeddings of the same class together and push", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "embeddings of different classes apart. The two tasks of classification and metric learning are related", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "but distinct. Conventional classification learning is generally used when the objective is to associate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "data with a pre-defined set of classes and there is sufficient data to train or fine-tune a network to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "do so. Distance metric learning, or embedding space building, aims to learn an embedding space", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 554, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 569 + ], + "score": 1.0, + "content": "where samples with similar semantic meaning are located near one another. Applications for learning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "such effective embeddings include transfer learning, retrieval, clustering and weakly supervised or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 207, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 207, + 591 + ], + "score": 1.0, + "content": "self-supervised learning.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "In this paper, we present a deep neural network solver that can be applied to both embedding space", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "building and classification problems. The solver defines training features in the embedding space as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "radial basis function (RBF) centres, which are used to push or pull features in a local neighbourhood,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "depending on the labels of the associated training samples. The same loss function is used for both", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "classification and metric learning problems. This means that a network trained for the classification", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "task results in feature embeddings of the same class being located near one another and similarly, a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "network trained for metric learning results in feature embeddings that can be well classified by our", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "RBF solver. Fast approximate nearest neighbour search is used to provide an efficient and scalable", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 681, + 144, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 144, + 694 + ], + "score": 1.0, + "content": "solution.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "The best success on embedding building tasks has been achieved by deep metric learning methods", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(Hoffer & Ailon, 2015; Schroff et al., 2015; Song et al., 2016a; Sohn, 2016; Kumar et al., 2017),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "which make use of deep neural networks. Such approaches may indiscriminately pull samples of", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 495, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 388, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 388, + 97 + ], + "score": 1.0, + "content": "NEAREST NEIGHBOUR RADIAL BASIS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 495, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 495, + 118 + ], + "score": 1.0, + "content": "FUNCTION SOLVERS FOR DEEP NEURAL NETWORKS", + "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, + 212, + 469, + 388 + ], + "lines": [ + { + "bbox": [ + 142, + 212, + 469, + 224 + ], + "spans": [ + { + "bbox": [ + 142, + 212, + 469, + 224 + ], + "score": 1.0, + "content": "We present a radial basis function solver for convolutional neural networks that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 235 + ], + "score": 1.0, + "content": "can be directly applied to both distance metric learning and classification problems.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 233, + 470, + 246 + ], + "score": 1.0, + "content": "Our method treats all training features from a deep neural network as radial basis", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "function centres and computes loss by summing the influence of a feature’s nearby", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 268 + ], + "score": 1.0, + "content": "centres in the embedding space. Having a radial basis function centred on each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "training feature is made scalable by treating it as an approximate nearest neighbour", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "search problem. End-to-end learning of the network and solver is carried out,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 470, + 299 + ], + "score": 1.0, + "content": "mapping high dimensional features into clusters of the same class. This results in a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "well formed embedding space, where semantically related instances are likely to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "score": 1.0, + "content": "be located near one another, regardless of whether or not the network was trained", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "on those classes. The same loss function is used for both the metric learning and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 142, + 333, + 469, + 344 + ], + "score": 1.0, + "content": "classification problems. We show that our radial basis function solver outperforms", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 471, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 471, + 355 + ], + "score": 1.0, + "content": "state-of-the-art embedding approaches on the Stanford Cars196 and CUB-200-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "2011 datasets. Additionally, we show that when used as a classifier, our method", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 469, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 469, + 376 + ], + "score": 1.0, + "content": "outperforms a conventional softmax classifier on the CUB-200-2011, Stanford", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 376, + 461, + 388 + ], + "spans": [ + { + "bbox": [ + 142, + 376, + 461, + 388 + ], + "score": 1.0, + "content": "Cars196, Oxford 102 Flowers and Leafsnap fine-grained classification datasets.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 12.5, + "bbox_fs": [ + 141, + 212, + 471, + 388 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 206, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 446 + ], + "score": 1.0, + "content": "The solver of a neural network is vital to its performance, as it defines the objective and drives the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 457 + ], + "score": 1.0, + "content": "learning. We define a solver as the layers of the network that are aware of the class labels of the data.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "In the domain of image classification, a softmax solver is conventionally used to transform activations", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 466, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 505, + 481 + ], + "score": 1.0, + "content": "into a distribution across class labels (Krizhevsky et al., 2012; Simonyan & Zisserman, 2014; Szegedy", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "et al., 2015; He et al., 2016). While in the domain of distance metric learning, a Siamese (Chopra", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "et al., 2005) or triplet (Hoffer & Ailon, 2015; Schroff et al., 2015; Kumar et al., 2017) solver, with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "contrastive or hinge loss, is commonly used to pull embeddings of the same class together and push", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "embeddings of different classes apart. The two tasks of classification and metric learning are related", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "but distinct. Conventional classification learning is generally used when the objective is to associate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 546 + ], + "score": 1.0, + "content": "data with a pre-defined set of classes and there is sufficient data to train or fine-tune a network to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "do so. Distance metric learning, or embedding space building, aims to learn an embedding space", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 554, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 569 + ], + "score": 1.0, + "content": "where samples with similar semantic meaning are located near one another. Applications for learning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 578 + ], + "score": 1.0, + "content": "such effective embeddings include transfer learning, retrieval, clustering and weakly supervised or", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 576, + 207, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 207, + 591 + ], + "score": 1.0, + "content": "self-supervised learning.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 435, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "In this paper, we present a deep neural network solver that can be applied to both embedding space", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "building and classification problems. The solver defines training features in the embedding space as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "radial basis function (RBF) centres, which are used to push or pull features in a local neighbourhood,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "depending on the labels of the associated training samples. The same loss function is used for both", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "classification and metric learning problems. This means that a network trained for the classification", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "task results in feature embeddings of the same class being located near one another and similarly, a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "network trained for metric learning results in feature embeddings that can be well classified by our", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "RBF solver. Fast approximate nearest neighbour search is used to provide an efficient and scalable", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 681, + 144, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 144, + 694 + ], + "score": 1.0, + "content": "solution.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 593, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "The best success on embedding building tasks has been achieved by deep metric learning methods", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "(Hoffer & Ailon, 2015; Schroff et al., 2015; Song et al., 2016a; Sohn, 2016; Kumar et al., 2017),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "which make use of deep neural networks. Such approaches may indiscriminately pull samples of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "the same class together, regardless of whether the two samples were already within well defined", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "local clusters of like samples. These methods aim to form a single cluster per class. In contrast,", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "our approach pushes a feature around the embedding space based only on the local neighbourhood", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "of that feature. This means that the current structure of the space is considered, allowing multiple", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "clusters to form for a single class, if that is appropriate. Our radial basis function solver is able to", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "learn embeddings that result in samples of similar semantic meaning being located near one another.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "Our experiments show that the RBF solver is able to do this better than existing deep metric learning", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 145, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 145, + 171 + ], + "score": 1.0, + "content": "methods.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "the same class together, regardless of whether the two samples were already within well defined", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "local clusters of like samples. These methods aim to form a single cluster per class. In contrast,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "our approach pushes a feature around the embedding space based only on the local neighbourhood", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "of that feature. This means that the current structure of the space is considered, allowing multiple", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "clusters to form for a single class, if that is appropriate. Our radial basis function solver is able to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "learn embeddings that result in samples of similar semantic meaning being located near one another.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "Our experiments show that the RBF solver is able to do this better than existing deep metric learning", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 145, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 145, + 171 + ], + "score": 1.0, + "content": "methods.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "Softmax solvers have been a mainstay of the standard classification problem (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "2012; Simonyan & Zisserman, 2014; Szegedy et al., 2015; He et al., 2016). Such an approach is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "inefficient as classes must be axis-aligned and the number of classes is baked into the network. Our", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "RBF approach is free to position clusters such that the intrinsic structure of the data can be better", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "represented. This may involve multiple clusters forming for a single class. The nearest neighbour", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "RBF solver outperforms conventional softmax solvers in our experiments and provides additional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "adaptability and flexibility, as new classes can be added to the problem with no updates to the network", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "weights required to obtain reasonable results. This performance improvement is obtained despite", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "smaller model capacity. The RBF solver by its very nature is a classifier, but learns the classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 426, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 426, + 287 + ], + "score": 1.0, + "content": "problem in the exact same way it learns the embedding space building problem.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "The main advantages of our novel radial basis function solver for neural networks can be summarised", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 153, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 153, + 315 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 132, + 324, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 133, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 133, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "• Our solver can be directly applied to two previously separate problems; classification and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 334, + 251, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 251, + 348 + ], + "score": 1.0, + "content": "embedding space learning.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 131, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 131, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "• End-to-end learning can be made scalable by leveraging fast approximate nearest neighbour", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 361, + 268, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 268, + 373 + ], + "score": 1.0, + "content": "search (as seen in Section 3.2).", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 140, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 140, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "Our approach outperforms current state-of-the-art deep metric learning algorithms on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 387, + 428, + 399 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 428, + 399 + ], + "score": 1.0, + "content": "Stanford Cars196 and CUB-200-2011 datasets (as seen in Section 4.1).", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 137, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 137, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "Finally, our radial basis function classifier outperforms a conventional softmax classifier", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 414, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 414, + 505, + 424 + ], + "score": 1.0, + "content": "on the fine-grained classification datasets CUB-200-2011, Stanford Cars196, Oxford 102", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 424, + 330, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 424, + 330, + 436 + ], + "score": 1.0, + "content": "Flowers and Leafsnap (as seen in Section 4.2).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 452, + 211, + 465 + ], + "lines": [ + { + "bbox": [ + 104, + 451, + 213, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 213, + 468 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "Radial Basis Functions in Neural Networks Radial basis function networks were introduced by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "Broomhead & Lowe (1988). The networks formulate activation functions as RBFs, resulting in an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "output that is a sum of radial basis function values between the input and network parameters. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "contrast to these radial basis function networks, our approach uses RBFs in the solver of a deep", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 522, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 533 + ], + "score": 1.0, + "content": "convolutional neural network and our radial basis function centres are coupled to high dimensional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "score": 1.0, + "content": "embeddings of training samples, rather than being network parameters. Radial basis functions have", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "been used as neural network solvers in the form of support vector machines. In one such formulation,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "a neural network is used as a fixed feature extractor and separate support vector machines are trained", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "to classify the features (Razavian et al., 2014; Donahue et al., 2014). No joint training occurs between", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "the solver (classifier) and network. Such an approach is often used for transfer learning, where the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "network is trained on vast amounts of data and the support vector machines are trained for problems", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "in which labelled training data is scarce. Tang (2013) replaces the typical softmax classifier with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "linear support vector machines. In this case, the solver and network are trained jointly, meaning the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 620, + 263, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 263, + 632 + ], + "score": 1.0, + "content": "loss that is minimised is margin based.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "Metric Learning Early methods in the domain of metric learning include those that use Siamese", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "networks (Bromley et al., 1993) and contrastive loss (Hadsell et al., 2006; Chopra et al., 2005).", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "The objective of these approaches is to pull pairwise samples of the same class together and push", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "pairwise samples of different classes apart. Such methods work on absolute distances, while triplet", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "networks with hinge loss (Weinberger et al., 2006) work on relative distance. Triplet loss approaches", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "take a trio of inputs; an anchor, a positive sample of the same class as the anchor and a negative", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "sample of a different class. Triplet loss aims to pull the positive sample closer to the anchor than the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "negative sample. Several deep metric learning approaches make use of, or generalise deep triplet", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 170 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 105, + 82, + 506, + 171 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "Softmax solvers have been a mainstay of the standard classification problem (Krizhevsky et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "2012; Simonyan & Zisserman, 2014; Szegedy et al., 2015; He et al., 2016). Such an approach is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 211 + ], + "score": 1.0, + "content": "inefficient as classes must be axis-aligned and the number of classes is baked into the network. Our", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "RBF approach is free to position clusters such that the intrinsic structure of the data can be better", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "represented. This may involve multiple clusters forming for a single class. The nearest neighbour", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "RBF solver outperforms conventional softmax solvers in our experiments and provides additional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 255 + ], + "score": 1.0, + "content": "adaptability and flexibility, as new classes can be added to the problem with no updates to the network", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "weights required to obtain reasonable results. This performance improvement is obtained despite", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "smaller model capacity. The RBF solver by its very nature is a classifier, but learns the classification", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 426, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 426, + 287 + ], + "score": 1.0, + "content": "problem in the exact same way it learns the embedding space building problem.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 175, + 506, + 287 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "The main advantages of our novel radial basis function solver for neural networks can be summarised", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 153, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 153, + 315 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 291, + 505, + 315 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 324, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 133, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 133, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "• Our solver can be directly applied to two previously separate problems; classification and", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 334, + 251, + 348 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 251, + 348 + ], + "score": 1.0, + "content": "embedding space learning.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 131, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "• End-to-end learning can be made scalable by leveraging fast approximate nearest neighbour", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 361, + 268, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 268, + 373 + ], + "score": 1.0, + "content": "search (as seen in Section 3.2).", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 140, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 140, + 376, + 505, + 389 + ], + "score": 1.0, + "content": "Our approach outperforms current state-of-the-art deep metric learning algorithms on the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 387, + 428, + 399 + ], + "spans": [ + { + "bbox": [ + 141, + 387, + 428, + 399 + ], + "score": 1.0, + "content": "Stanford Cars196 and CUB-200-2011 datasets (as seen in Section 4.1).", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 137, + 403, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 137, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "Finally, our radial basis function classifier outperforms a conventional softmax classifier", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 414, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 414, + 505, + 424 + ], + "score": 1.0, + "content": "on the fine-grained classification datasets CUB-200-2011, Stanford Cars196, Oxford 102", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 424, + 330, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 424, + 330, + 436 + ], + "score": 1.0, + "content": "Flowers and Leafsnap (as seen in Section 4.2).", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + } + ], + "index": 24, + "bbox_fs": [ + 131, + 324, + 505, + 436 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 452, + 211, + 465 + ], + "lines": [ + { + "bbox": [ + 104, + 451, + 213, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 213, + 468 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "Radial Basis Functions in Neural Networks Radial basis function networks were introduced by", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "Broomhead & Lowe (1988). The networks formulate activation functions as RBFs, resulting in an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "output that is a sum of radial basis function values between the input and network parameters. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "score": 1.0, + "content": "contrast to these radial basis function networks, our approach uses RBFs in the solver of a deep", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 522, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 533 + ], + "score": 1.0, + "content": "convolutional neural network and our radial basis function centres are coupled to high dimensional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 505, + 544 + ], + "score": 1.0, + "content": "embeddings of training samples, rather than being network parameters. Radial basis functions have", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 556 + ], + "score": 1.0, + "content": "been used as neural network solvers in the form of support vector machines. In one such formulation,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "a neural network is used as a fixed feature extractor and separate support vector machines are trained", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "to classify the features (Razavian et al., 2014; Donahue et al., 2014). No joint training occurs between", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "the solver (classifier) and network. Such an approach is often used for transfer learning, where the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "network is trained on vast amounts of data and the support vector machines are trained for problems", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "in which labelled training data is scarce. Tang (2013) replaces the typical softmax classifier with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "linear support vector machines. In this case, the solver and network are trained jointly, meaning the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 620, + 263, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 263, + 632 + ], + "score": 1.0, + "content": "loss that is minimised is margin based.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 476, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "Metric Learning Early methods in the domain of metric learning include those that use Siamese", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "networks (Bromley et al., 1993) and contrastive loss (Hadsell et al., 2006; Chopra et al., 2005).", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "The objective of these approaches is to pull pairwise samples of the same class together and push", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "pairwise samples of different classes apart. Such methods work on absolute distances, while triplet", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "networks with hinge loss (Weinberger et al., 2006) work on relative distance. Triplet loss approaches", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "take a trio of inputs; an anchor, a positive sample of the same class as the anchor and a negative", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "sample of a different class. Triplet loss aims to pull the positive sample closer to the anchor than the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "negative sample. Several deep metric learning approaches make use of, or generalise deep triplet", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "neural networks (Hoffer & Ailon, 2015; Wang et al., 2014; Schroff et al., 2015; Song et al., 2016a;", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "Sohn, 2016; Kumar et al., 2017). Schroff et al. (2015) perform semi-hard mining within a mini-batch,", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "while Song et al. (2016a) propose a lifted structured embedding with efficient computation of the", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "full distance matrix within a mini-batch. This allows comparisons between all positive and negative", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "pairs in the batch. Similarly, Sohn (2016) proposes an approach that allows multiple intra-batch", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "distance comparisons, but optimises a generalisation of triplet loss, named N-pair loss, rather than a", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "max-margin based objective, as in Song et al. (2016a). The global embedding structure is considered", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "in Song et al. (2016b) by directly minimising a global clustering metric, while a combination of", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "score": 1.0, + "content": "global and triplet loss is shown to be beneficial in Kumar et al. (2016). Finally, Kumar et al. (2017)", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "introduce a smart mining technique that mines for triplets over the entire dataset. A Fast Approximate", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "score": 1.0, + "content": "Nearest Neighbour Graph (FANNG) (Harwood & Drummond, 2016) is leveraged for computational", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "efficiently. Beyond triplet loss, Rippel et al. (2016) introduce a loss function that allows multiple", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "score": 1.0, + "content": "clusters to form per class. Rather than only penalising a single triplet at a time, the neighbourhood", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 385, + 365, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 365, + 397 + ], + "score": 1.0, + "content": "densities are considered and overlaps between classes penalised.", + "type": "text", + "cross_page": true + } + ], + "index": 17 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 644, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 79, + 504, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 79, + 504, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 203 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 203 + ], + "score": 0.97, + "type": "image", + "image_path": "73dfcbed79adccb1fa69d2669a2d68b8d5ca02240c86bd7a56aab148be320002.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 79, + 504, + 120.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 120.33333333333334, + 504, + 161.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 161.66666666666669, + 504, + 203.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 195, + 210, + 415, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 196, + 210, + 415, + 223 + ], + "spans": [ + { + "bbox": [ + 196, + 210, + 415, + 223 + ], + "score": 1.0, + "content": "Figure 1: Overview of our radial basis function solver.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "neural networks (Hoffer & Ailon, 2015; Wang et al., 2014; Schroff et al., 2015; Song et al., 2016a;", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "Sohn, 2016; Kumar et al., 2017). Schroff et al. (2015) perform semi-hard mining within a mini-batch,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "while Song et al. (2016a) propose a lifted structured embedding with efficient computation of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "full distance matrix within a mini-batch. This allows comparisons between all positive and negative", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "pairs in the batch. Similarly, Sohn (2016) proposes an approach that allows multiple intra-batch", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "distance comparisons, but optimises a generalisation of triplet loss, named N-pair loss, rather than a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "max-margin based objective, as in Song et al. (2016a). The global embedding structure is considered", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 332 + ], + "score": 1.0, + "content": "in Song et al. (2016b) by directly minimising a global clustering metric, while a combination of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "score": 1.0, + "content": "global and triplet loss is shown to be beneficial in Kumar et al. (2016). Finally, Kumar et al. (2017)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "introduce a smart mining technique that mines for triplets over the entire dataset. A Fast Approximate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 363 + ], + "score": 1.0, + "content": "Nearest Neighbour Graph (FANNG) (Harwood & Drummond, 2016) is leveraged for computational", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "efficiently. Beyond triplet loss, Rippel et al. (2016) introduce a loss function that allows multiple", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 386 + ], + "score": 1.0, + "content": "clusters to form per class. Rather than only penalising a single triplet at a time, the neighbourhood", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 385, + 365, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 365, + 397 + ], + "score": 1.0, + "content": "densities are considered and overlaps between classes penalised.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 411, + 310, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 311, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 311, + 426 + ], + "score": 1.0, + "content": "3 RADIAL BASIS FUNCTION SOLVERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 448 + ], + "score": 1.0, + "content": "A radial basis function returns a value that depends only on the distance between two points, one of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "which is commonly referred to as a centre. Although several radial basis functions exist, in this paper", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 459, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 469 + ], + "score": 1.0, + "content": "we use RBF to refer to a Gaussian radial basis function, which returns a value based on the Euclidean", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 469, + 485, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 207, + 481 + ], + "score": 1.0, + "content": "distance between a point", + "type": "text" + }, + { + "bbox": [ + 207, + 471, + 214, + 479 + ], + "score": 0.73, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 469, + 408, + 481 + ], + "score": 1.0, + "content": "and the RBF centre c. The radial basis function,", + "type": "text" + }, + { + "bbox": [ + 408, + 469, + 415, + 480 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 469, + 485, + 481 + ], + "score": 1.0, + "content": ", is calculated as:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 483, + 368, + 511 + ], + "lines": [ + { + "bbox": [ + 243, + 483, + 368, + 511 + ], + "spans": [ + { + "bbox": [ + 243, + 483, + 368, + 511 + ], + "score": 0.95, + "content": "f ( \\mathbf { x } , \\mathbf { c } ) = \\exp \\left( \\frac { - \\| \\mathbf { x } - \\mathbf { c } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "0b9dec16d20b8f7d28f3b2653f10a9acd994feafcdb638316cb0f5a5693741e3.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 483, + 368, + 497.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 243, + 497.0, + 368, + 511.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 513, + 506, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 132, + 525 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 515, + 140, + 523 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "is standard deviation that controls the width of the Gaussian curve, that is, the region around", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 523, + 286, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 286, + 537 + ], + "score": 1.0, + "content": "the RBF centre deemed to be of importance.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 555 + ], + "score": 1.0, + "content": "In the context of our neural network solver, we define the deep feature embeddings of each training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "set sample as radial basis function centres. Specifically, we take the layer in a network immediately", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 561, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 576 + ], + "score": 1.0, + "content": "before the solver as the embedding layer. For example, in a VGG architecture, this may be FC7 (fully", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 588 + ], + "score": 1.0, + "content": "connected layer 7), forming a 4096 dimension embedding. In general, however, the embedding may", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 366, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 366, + 598 + ], + "score": 1.0, + "content": "be of any size. An overview of this approach is seen in Figure 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 609, + 276, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 278, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 278, + 623 + ], + "score": 1.0, + "content": "3.1 CLASSIFIER AND LOSS FUNCTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 629, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "A radial basis function classifier can be formed by the weighted sum of the RBF distance calculations", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "between a sample feature embedding and the centres. Classification of a sample is achieved by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "passing the input through the network, resulting in a feature embedding in the same space as the RBF", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "centres. A probability distribution over class labels is found by summing the influence of each centre", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 672, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 687 + ], + "score": 1.0, + "content": "and normalising. A centre contributes only to the probability of the ground truth label of the training", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 459, + 697 + ], + "score": 1.0, + "content": "sample coupled to that centre. For example, the probability that the feature embedding", + "type": "text" + }, + { + "bbox": [ + 459, + 687, + 466, + 695 + ], + "score": 0.61, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "has class", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 694, + 151, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 128, + 708 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 129, + 696, + 137, + 707 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 694, + 151, + 708 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 704, + 384, + 736 + ], + "lines": [ + { + "bbox": [ + 225, + 704, + 384, + 736 + ], + "spans": [ + { + "bbox": [ + 225, + 704, + 384, + 736 + ], + "score": 0.95, + "content": "P r ( \\mathbf { x } \\in \\operatorname { c l a s s } Q ) = \\frac { \\sum _ { i \\in Q } w _ { i } f ( \\mathbf { x } , \\mathbf { c _ { i } } ) } { \\sum _ { j = 1 } ^ { m } w _ { j } f ( \\mathbf { x } , \\mathbf { c _ { j } } ) } ,", + "type": "interline_equation", + "image_path": "c99b5f94e1bec4588b5d8120c9f4f6a0833844fafd8a9e96c24ba09352dbd282.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 704, + 384, + 720.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 225, + 720.0, + 384, + 736.0 + ], + "spans": [], + "index": 41 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 79, + 504, + 203 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 79, + 504, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 203 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 203 + ], + "score": 0.97, + "type": "image", + "image_path": "73dfcbed79adccb1fa69d2669a2d68b8d5ca02240c86bd7a56aab148be320002.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 79, + 504, + 120.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 120.33333333333334, + 504, + 161.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 161.66666666666669, + 504, + 203.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 195, + 210, + 415, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 196, + 210, + 415, + 223 + ], + "spans": [ + { + "bbox": [ + 196, + 210, + 415, + 223 + ], + "score": 1.0, + "content": "Figure 1: Overview of our radial basis function solver.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 505, + 396 + ], + "lines": [], + "index": 10.5, + "bbox_fs": [ + 105, + 241, + 506, + 397 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 411, + 310, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 311, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 311, + 426 + ], + "score": 1.0, + "content": "3 RADIAL BASIS FUNCTION SOLVERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 448 + ], + "score": 1.0, + "content": "A radial basis function returns a value that depends only on the distance between two points, one of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "which is commonly referred to as a centre. Although several radial basis functions exist, in this paper", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 459, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 469 + ], + "score": 1.0, + "content": "we use RBF to refer to a Gaussian radial basis function, which returns a value based on the Euclidean", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 469, + 485, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 207, + 481 + ], + "score": 1.0, + "content": "distance between a point", + "type": "text" + }, + { + "bbox": [ + 207, + 471, + 214, + 479 + ], + "score": 0.73, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 469, + 408, + 481 + ], + "score": 1.0, + "content": "and the RBF centre c. The radial basis function,", + "type": "text" + }, + { + "bbox": [ + 408, + 469, + 415, + 480 + ], + "score": 0.83, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 469, + 485, + 481 + ], + "score": 1.0, + "content": ", is calculated as:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 436, + 506, + 481 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 483, + 368, + 511 + ], + "lines": [ + { + "bbox": [ + 243, + 483, + 368, + 511 + ], + "spans": [ + { + "bbox": [ + 243, + 483, + 368, + 511 + ], + "score": 0.95, + "content": "f ( \\mathbf { x } , \\mathbf { c } ) = \\exp \\left( \\frac { - \\| \\mathbf { x } - \\mathbf { c } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "0b9dec16d20b8f7d28f3b2653f10a9acd994feafcdb638316cb0f5a5693741e3.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 243, + 483, + 368, + 497.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 243, + 497.0, + 368, + 511.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 513, + 506, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 132, + 525 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 515, + 140, + 523 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "is standard deviation that controls the width of the Gaussian curve, that is, the region around", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 523, + 286, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 286, + 537 + ], + "score": 1.0, + "content": "the RBF centre deemed to be of importance.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 512, + 505, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 541, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 555 + ], + "score": 1.0, + "content": "In the context of our neural network solver, we define the deep feature embeddings of each training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 564 + ], + "score": 1.0, + "content": "set sample as radial basis function centres. Specifically, we take the layer in a network immediately", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 561, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 576 + ], + "score": 1.0, + "content": "before the solver as the embedding layer. For example, in a VGG architecture, this may be FC7 (fully", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 572, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 588 + ], + "score": 1.0, + "content": "connected layer 7), forming a 4096 dimension embedding. In general, however, the embedding may", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 584, + 366, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 366, + 598 + ], + "score": 1.0, + "content": "be of any size. An overview of this approach is seen in Figure 1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 538, + 506, + 598 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 609, + 276, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 278, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 278, + 623 + ], + "score": 1.0, + "content": "3.1 CLASSIFIER AND LOSS FUNCTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 629, + 505, + 706 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "A radial basis function classifier can be formed by the weighted sum of the RBF distance calculations", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "between a sample feature embedding and the centres. Classification of a sample is achieved by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "passing the input through the network, resulting in a feature embedding in the same space as the RBF", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "centres. A probability distribution over class labels is found by summing the influence of each centre", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 672, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 505, + 687 + ], + "score": 1.0, + "content": "and normalising. A centre contributes only to the probability of the ground truth label of the training", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 685, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 459, + 697 + ], + "score": 1.0, + "content": "sample coupled to that centre. For example, the probability that the feature embedding", + "type": "text" + }, + { + "bbox": [ + 459, + 687, + 466, + 695 + ], + "score": 0.61, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 685, + 505, + 697 + ], + "score": 1.0, + "content": "has class", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 694, + 151, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 128, + 708 + ], + "score": 1.0, + "content": "label", + "type": "text" + }, + { + "bbox": [ + 129, + 696, + 137, + 707 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 694, + 151, + 708 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 630, + 506, + 708 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 704, + 384, + 736 + ], + "lines": [ + { + "bbox": [ + 225, + 704, + 384, + 736 + ], + "spans": [ + { + "bbox": [ + 225, + 704, + 384, + 736 + ], + "score": 0.95, + "content": "P r ( \\mathbf { x } \\in \\operatorname { c l a s s } Q ) = \\frac { \\sum _ { i \\in Q } w _ { i } f ( \\mathbf { x } , \\mathbf { c _ { i } } ) } { \\sum _ { j = 1 } ^ { m } w _ { j } f ( \\mathbf { x } , \\mathbf { c _ { j } } ) } ,", + "type": "interline_equation", + "image_path": "c99b5f94e1bec4588b5d8120c9f4f6a0833844fafd8a9e96c24ba09352dbd282.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 704, + 384, + 720.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 225, + 720.0, + 384, + 736.0 + ], + "spans": [], + "index": 41 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 133, + 95 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 83, + 141, + 94 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 83, + 190, + 95 + ], + "score": 1.0, + "content": "is the RBF,", + "type": "text" + }, + { + "bbox": [ + 191, + 83, + 217, + 94 + ], + "score": 0.91, + "content": "i \\in Q", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 83, + 323, + 95 + ], + "score": 1.0, + "content": "are the centres with label", + "type": "text" + }, + { + "bbox": [ + 324, + 83, + 333, + 94 + ], + "score": 0.77, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 83, + 336, + 95 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 337, + 84, + 347, + 93 + ], + "score": 0.6, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is the number of training samples and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 95, + 118, + 105 + ], + "score": 0.83, + "content": "w _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 93, + 273, + 106 + ], + "score": 1.0, + "content": "is a learnable weight for RBF centre", + "type": "text" + }, + { + "bbox": [ + 273, + 95, + 278, + 104 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ". Of course, if a sample is in the training set and has a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "corresponding RBF centre, the distance calculation to itself is omitted during the computation of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 359, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 359, + 127 + ], + "score": 1.0, + "content": "classification distribution, the loss function and the derivatives.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "The loss function used for optimisation is simply the summed negative logarithm of the probabilities", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 465, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 288, + 155 + ], + "score": 1.0, + "content": "of the true class labels. For example, the loss", + "type": "text" + }, + { + "bbox": [ + 288, + 144, + 296, + 153 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 144, + 342, + 155 + ], + "score": 1.0, + "content": "for sample", + "type": "text" + }, + { + "bbox": [ + 342, + 145, + 349, + 153 + ], + "score": 0.51, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 144, + 443, + 155 + ], + "score": 1.0, + "content": "with ground truth label", + "type": "text" + }, + { + "bbox": [ + 444, + 144, + 453, + 153 + ], + "score": 0.83, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 144, + 465, + 155 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 157, + 373, + 171 + ], + "lines": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "spans": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "score": 0.93, + "content": "L ( \\mathbf { x } ) = - \\ln \\left( P r ( \\mathbf { x } \\in \\operatorname { c l a s s } R ) \\right) .", + "type": "interline_equation", + "image_path": "9bb32f330f211af7618a01c37cd98921b95b2bf14d564756505ef2e151c55f82.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "The same loss function is used regardless of whether the network is being trained for classification,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "as above, or for embedding space building (distance metric learning). This is possible since the RBF", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 208 + ], + "score": 1.0, + "content": "classifier is directly computed from distances between features in the embedding space. This means", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "that a network trained for classification will result in features of the same class being located near", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "one another, and similarly a network trained for metric learning will result in an embedding space in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 306, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 306, + 240 + ], + "score": 1.0, + "content": "which features can be well classified using RBFs.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 287, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 288, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 288, + 264 + ], + "score": 1.0, + "content": "3.2 NEAREST NEIGHBOUR RBF SOLVER", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "In Equation 2, the distribution is calculated by summing over all RBF centres. However, since these", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "centres are attached to training samples, of which there could be any large number, computing that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "sum is both intractable and unnecessary. The majority of RBF values for a given feature embedding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 306, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 504, + 317 + ], + "score": 1.0, + "content": "will be effectively zero, as the sample feature will lie only within a subset of the RBF centres’", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "score": 1.0, + "content": "Gaussian windows. As such, only the local neighbourhood around a feature embedding should be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 328, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 339 + ], + "score": 1.0, + "content": "considered. Operating on the set of the nearest RBF centres to a feature ensures that most of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 488, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 488, + 351 + ], + "score": 1.0, + "content": "distance values computed are pertinent to the loss calculation. The classifier equation becomes:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 351, + 390, + 382 + ], + "lines": [ + { + "bbox": [ + 218, + 351, + 390, + 382 + ], + "spans": [ + { + "bbox": [ + 218, + 351, + 390, + 382 + ], + "score": 0.95, + "content": "P r ( \\mathbf x \\in \\mathrm { c l a s s } Q ) = \\frac { \\sum _ { i \\in Q \\cap \\mathcal { N } } w _ { i } f ( \\mathbf x , \\mathbf c _ { \\mathbf i } ) } { \\sum _ { j \\in \\mathcal { N } } w _ { j } f ( \\mathbf x , \\mathbf c _ { \\mathbf j } ) } ,", + "type": "interline_equation", + "image_path": "325b18d1e53eff7c6d216b7383e0c9df86986896d30805f7d46d60dbc51063fc.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 351, + 390, + 366.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 366.5, + 390, + 382.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 133, + 396 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 384, + 144, + 394 + ], + "score": 0.81, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 383, + 370, + 396 + ], + "score": 1.0, + "content": "is the set of approximate nearest neighbours for sample", + "type": "text" + }, + { + "bbox": [ + 371, + 386, + 378, + 394 + ], + "score": 0.73, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 383, + 434, + 396 + ], + "score": 1.0, + "content": "and therefore", + "type": "text" + }, + { + "bbox": [ + 434, + 384, + 480, + 395 + ], + "score": 0.92, + "content": "i \\in Q \\cap \\mathcal N", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 325, + 408 + ], + "score": 1.0, + "content": "set of approximate nearest neighbours that have label", + "type": "text" + }, + { + "bbox": [ + 326, + 395, + 335, + 406 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 394, + 505, + 408 + ], + "score": 1.0, + "content": ". Again, we note that training set samples", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 406, + 361, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 361, + 418 + ], + "score": 1.0, + "content": "exclude their own RBF centre from their nearest neighbour list.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "In the interest of providing a scalable solution, we use approximate nearest neighbour search to obtain", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "candidate nearest neighbour lists. This allows for a trade off between precision and computational", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "efficiency. Specifically, we use a Fast Approximate Nearest Neighbour Graph (FANNG) (Harwood &", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "Drummond, 2016), as it provides the most efficiency when needing a high probability of finding the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "true nearest neighbours of a query point. Importantly, FANNG provides scalability in terms of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 477, + 343, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 343, + 490 + ], + "score": 1.0, + "content": "number of dimensions and the number of training samples.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 107, + 502, + 236, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 237, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 237, + 514 + ], + "score": 1.0, + "content": "3.3 END-TO-END LEARNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "The network and solver weights are learned end-to-end. As the weights are constantly being updated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 533, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 545 + ], + "score": 1.0, + "content": "during training, the locations of the RBF centres are changing. This leads to complications in the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "computation of the derivatives of the loss with respect to the embeddings. This calculation requires", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "dimension by dimension differences between the training embeddings and the RBF centres. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "centres are moving as the network is being updated, but computing the current RBF centre locations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "online is intractable. For example, if considering 100 nearest neighbours, 101 samples would need to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "be forward propagated through the network for each training sample. However, we find that is is not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 600, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 611 + ], + "score": 1.0, + "content": "necessary for the RBF centres to be up to date at all times in order for the model to converge. A bank", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 609, + 345, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 345, + 622 + ], + "score": 1.0, + "content": "of the RBF centres is stored and updated at a fixed interval.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "A further consequence of the RBF centres moving during training is that the nearest neighbours also", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "change. It is intractable to find to correct nearest neighbours each time the weights are updated. This", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "is simply remedied by considering a larger number of nearest neighbours than would be required if", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "all centres and neighbour lists were up-to-date at all times. The embedding space changes slowly", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "enough that it is highly likely many of the previously neighbouring RBF centres will remain relevant.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 682, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 694 + ], + "score": 1.0, + "content": "Since the Gaussian RBF decays to zero as the distance between the points becomes large, it does not", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 694, + 491, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 491, + 704 + ], + "score": 1.0, + "content": "matter if an RBF centre that is no longer near the sample remains a candidate nearest neighbour.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We call the frequency at which the RBF centres are updated and the nearest neighbours found the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "update interval. During training, at a fixed number of epochs we forward pass the entire training set", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 133, + 95 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 83, + 141, + 94 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 83, + 190, + 95 + ], + "score": 1.0, + "content": "is the RBF,", + "type": "text" + }, + { + "bbox": [ + 191, + 83, + 217, + 94 + ], + "score": 0.91, + "content": "i \\in Q", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 83, + 323, + 95 + ], + "score": 1.0, + "content": "are the centres with label", + "type": "text" + }, + { + "bbox": [ + 324, + 83, + 333, + 94 + ], + "score": 0.77, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 83, + 336, + 95 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 337, + 84, + 347, + 93 + ], + "score": 0.6, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is the number of training samples and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 95, + 118, + 105 + ], + "score": 0.83, + "content": "w _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 93, + 273, + 106 + ], + "score": 1.0, + "content": "is a learnable weight for RBF centre", + "type": "text" + }, + { + "bbox": [ + 273, + 95, + 278, + 104 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ". Of course, if a sample is in the training set and has a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "corresponding RBF centre, the distance calculation to itself is omitted during the computation of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 359, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 359, + 127 + ], + "score": 1.0, + "content": "classification distribution, the loss function and the derivatives.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 83, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 132, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "The loss function used for optimisation is simply the summed negative logarithm of the probabilities", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 144, + 465, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 288, + 155 + ], + "score": 1.0, + "content": "of the true class labels. For example, the loss", + "type": "text" + }, + { + "bbox": [ + 288, + 144, + 296, + 153 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 144, + 342, + 155 + ], + "score": 1.0, + "content": "for sample", + "type": "text" + }, + { + "bbox": [ + 342, + 145, + 349, + 153 + ], + "score": 0.51, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 144, + 443, + 155 + ], + "score": 1.0, + "content": "with ground truth label", + "type": "text" + }, + { + "bbox": [ + 444, + 144, + 453, + 153 + ], + "score": 0.83, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 144, + 465, + 155 + ], + "score": 1.0, + "content": "is:", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 131, + 506, + 155 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 157, + 373, + 171 + ], + "lines": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "spans": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "score": 0.93, + "content": "L ( \\mathbf { x } ) = - \\ln \\left( P r ( \\mathbf { x } \\in \\operatorname { c l a s s } R ) \\right) .", + "type": "interline_equation", + "image_path": "9bb32f330f211af7618a01c37cd98921b95b2bf14d564756505ef2e151c55f82.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 237, + 157, + 373, + 171 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "The same loss function is used regardless of whether the network is being trained for classification,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "as above, or for embedding space building (distance metric learning). This is possible since the RBF", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 194, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 208 + ], + "score": 1.0, + "content": "classifier is directly computed from distances between features in the embedding space. This means", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 218 + ], + "score": 1.0, + "content": "that a network trained for classification will result in features of the same class being located near", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "score": 1.0, + "content": "one another, and similarly a network trained for metric learning will result in an embedding space in", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 306, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 306, + 240 + ], + "score": 1.0, + "content": "which features can be well classified using RBFs.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 172, + 506, + 240 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 287, + 263 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 288, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 288, + 264 + ], + "score": 1.0, + "content": "3.2 NEAREST NEIGHBOUR RBF SOLVER", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "In Equation 2, the distribution is calculated by summing over all RBF centres. However, since these", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "centres are attached to training samples, of which there could be any large number, computing that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 293, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 293, + 506, + 308 + ], + "score": 1.0, + "content": "sum is both intractable and unnecessary. The majority of RBF values for a given feature embedding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 306, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 504, + 317 + ], + "score": 1.0, + "content": "will be effectively zero, as the sample feature will lie only within a subset of the RBF centres’", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 328 + ], + "score": 1.0, + "content": "Gaussian windows. As such, only the local neighbourhood around a feature embedding should be", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 328, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 505, + 339 + ], + "score": 1.0, + "content": "considered. Operating on the set of the nearest RBF centres to a feature ensures that most of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 488, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 488, + 351 + ], + "score": 1.0, + "content": "distance values computed are pertinent to the loss calculation. The classifier equation becomes:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 272, + 506, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 351, + 390, + 382 + ], + "lines": [ + { + "bbox": [ + 218, + 351, + 390, + 382 + ], + "spans": [ + { + "bbox": [ + 218, + 351, + 390, + 382 + ], + "score": 0.95, + "content": "P r ( \\mathbf x \\in \\mathrm { c l a s s } Q ) = \\frac { \\sum _ { i \\in Q \\cap \\mathcal { N } } w _ { i } f ( \\mathbf x , \\mathbf c _ { \\mathbf i } ) } { \\sum _ { j \\in \\mathcal { N } } w _ { j } f ( \\mathbf x , \\mathbf c _ { \\mathbf j } ) } ,", + "type": "interline_equation", + "image_path": "325b18d1e53eff7c6d216b7383e0c9df86986896d30805f7d46d60dbc51063fc.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 351, + 390, + 366.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 366.5, + 390, + 382.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 133, + 396 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 384, + 144, + 394 + ], + "score": 0.81, + "content": "\\mathcal { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 383, + 370, + 396 + ], + "score": 1.0, + "content": "is the set of approximate nearest neighbours for sample", + "type": "text" + }, + { + "bbox": [ + 371, + 386, + 378, + 394 + ], + "score": 0.73, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 383, + 434, + 396 + ], + "score": 1.0, + "content": "and therefore", + "type": "text" + }, + { + "bbox": [ + 434, + 384, + 480, + 395 + ], + "score": 0.92, + "content": "i \\in Q \\cap \\mathcal N", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 325, + 408 + ], + "score": 1.0, + "content": "set of approximate nearest neighbours that have label", + "type": "text" + }, + { + "bbox": [ + 326, + 395, + 335, + 406 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 394, + 505, + 408 + ], + "score": 1.0, + "content": ". Again, we note that training set samples", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 406, + 361, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 361, + 418 + ], + "score": 1.0, + "content": "exclude their own RBF centre from their nearest neighbour list.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 383, + 505, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "In the interest of providing a scalable solution, we use approximate nearest neighbour search to obtain", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "candidate nearest neighbour lists. This allows for a trade off between precision and computational", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "efficiency. Specifically, we use a Fast Approximate Nearest Neighbour Graph (FANNG) (Harwood &", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "Drummond, 2016), as it provides the most efficiency when needing a high probability of finding the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "true nearest neighbours of a query point. Importantly, FANNG provides scalability in terms of the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 477, + 343, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 343, + 490 + ], + "score": 1.0, + "content": "number of dimensions and the number of training samples.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 423, + 506, + 490 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 502, + 236, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 237, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 237, + 514 + ], + "score": 1.0, + "content": "3.3 END-TO-END LEARNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "The network and solver weights are learned end-to-end. As the weights are constantly being updated", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 533, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 504, + 545 + ], + "score": 1.0, + "content": "during training, the locations of the RBF centres are changing. This leads to complications in the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "computation of the derivatives of the loss with respect to the embeddings. This calculation requires", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "dimension by dimension differences between the training embeddings and the RBF centres. The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 506, + 579 + ], + "score": 1.0, + "content": "centres are moving as the network is being updated, but computing the current RBF centre locations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "online is intractable. For example, if considering 100 nearest neighbours, 101 samples would need to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "be forward propagated through the network for each training sample. However, we find that is is not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 600, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 611 + ], + "score": 1.0, + "content": "necessary for the RBF centres to be up to date at all times in order for the model to converge. A bank", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 609, + 345, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 345, + 622 + ], + "score": 1.0, + "content": "of the RBF centres is stored and updated at a fixed interval.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 523, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "A further consequence of the RBF centres moving during training is that the nearest neighbours also", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "change. It is intractable to find to correct nearest neighbours each time the weights are updated. This", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "is simply remedied by considering a larger number of nearest neighbours than would be required if", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "all centres and neighbour lists were up-to-date at all times. The embedding space changes slowly", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "enough that it is highly likely many of the previously neighbouring RBF centres will remain relevant.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 682, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 506, + 694 + ], + "score": 1.0, + "content": "Since the Gaussian RBF decays to zero as the distance between the points becomes large, it does not", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 694, + 491, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 491, + 704 + ], + "score": 1.0, + "content": "matter if an RBF centre that is no longer near the sample remains a candidate nearest neighbour.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45, + "bbox_fs": [ + 104, + 626, + 506, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We call the frequency at which the RBF centres are updated and the nearest neighbours found the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "update interval. During training, at a fixed number of epochs we forward pass the entire training set", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "through the network, storing the new RBF centres. The up-to-date nearest neighbours can now be", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "found. If FANNG is used, a rebuild of the graph is required. Note that the stored RBF centres do not", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "have dropout (Srivastava et al., 2014) applied, but the current training embeddings may. The effect of", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 497, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 497, + 127 + ], + "score": 1.0, + "content": "the number of nearest neighbours considered and the update interval are discussed in Section 4.2.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 49.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "through the network, storing the new RBF centres. The up-to-date nearest neighbours can now be", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "found. If FANNG is used, a rebuild of the graph is required. Note that the stored RBF centres do not", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "have dropout (Srivastava et al., 2014) applied, but the current training embeddings may. The effect of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 497, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 497, + 127 + ], + "score": 1.0, + "content": "the number of nearest neighbours considered and the update interval are discussed in Section 4.2.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 420, + 152 + ], + "score": 1.0, + "content": "Radial Basis Function Parameters A global standard deviation parameter", + "type": "text" + }, + { + "bbox": [ + 421, + 142, + 428, + 149 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "is shared amongst", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 163 + ], + "score": 1.0, + "content": "the RBFs. This ensures that the assumption made about samples only being influenced by their", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "nearest RBF centres holds. Although the parameter is learnable, we find that fixing the standard", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "deviation value before training is a suitable approach. We treat the standard deviation as an additional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "score": 1.0, + "content": "hyperparameter to tune, however it can also be learned independently before full network training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 207 + ], + "score": 1.0, + "content": "commences. As seen in Equation 4, each RBF centre has a weight, which is learned end-to-end with", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "score": 1.0, + "content": "the network weights. These weights are initialised at values of one. Note that in our experiments we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 502, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 502, + 228 + ], + "score": 1.0, + "content": "only tune the RBF weights for the classification task; they remain fixed for metric learning problems.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 108, + 244, + 200, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 201, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 201, + 259 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 269, + 495, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 496, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 496, + 282 + ], + "score": 1.0, + "content": "We detail our experimental results in two tasks; distance metric learning and image classification.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 261, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 263, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 263, + 307 + ], + "score": 1.0, + "content": "4.1 DISTANCE METRIC LEARNING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "Experimental Set-up We evaluate our approach on two datasets; Stanford Cars196 (Krause et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "2013) and CUB-200-2011 (Birds200) (Welinder et al., 2010). Cars196 consists of 16,185 images", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "of 196 different car makes and models, while Birds200 consists of 11,788 images of 200 different", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "bird species. In this problem, the network is trained and evaluated on different sets of classes. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "score": 1.0, + "content": "follow the experimental set-up used in Song et al. (2016a); Sohn (2016); Song et al. (2016b); Kumar", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "et al. (2017). For the Cars196 dataset, we train the network on the first 98 classes and evaluate on the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "remaining 98. For the Birds200 dataset we train on the first 100 classes and evaluate on the remaining", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "100. Stochastic gradient descent optimisation is used. All images are first resized to be 256x256 and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "data is augmented by random cropping and horizontal mirroring. Note that we do not crop the images", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 251, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 251, + 428 + ], + "score": 1.0, + "content": "using the provided bounding boxes.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 445 + ], + "score": 1.0, + "content": "Our method is compared to state-of-the-art approaches on the considered datasets; semi-hard mining", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "for triplet networks (Schroff et al., 2015), lifted structured feature embedding (Song et al., 2016a),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "score": 1.0, + "content": "N-pair loss (Sohn, 2016), clustering (Song et al., 2016b), global loss with triplet networks (Kumar", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "et al., 2016) and smart mining for triplet networks (Kumar et al., 2017). For fair comparison to these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "score": 1.0, + "content": "methods, we use the same base architecture for our experiments; GoogLeNet (Szegedy et al., 2015).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "Network weights are initialised from ImageNet (Russakovsky et al., 2015) pre-trained weights. We", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "use 100 nearest neighbours and an update interval of 10 epochs. RBF weights are fixed at a value of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 520 + ], + "score": 1.0, + "content": "one for this task. We train for 50 epochs on Cars196 and 30 epochs on Birds200. A batch size of 20,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "base learning of 0.00001 and weight decay of 0.0002 are used. The RBF standard deviation used", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "depends on size of the embedding dimension. We find values between 10 and 30 work well for this", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 541, + 128, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 128, + 553 + ], + "score": 1.0, + "content": "task.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "score": 1.0, + "content": "Evaluation Metrics Following Song et al. (2016a), we evaluate the embedding space using two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 443, + 588 + ], + "score": 1.0, + "content": "metrics; Normalised Mutual Information (NMI) (Manning et al., 2008) and Recall", + "type": "text" + }, + { + "bbox": [ + 443, + 576, + 460, + 586 + ], + "score": 0.71, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 576, + 506, + 588 + ], + "score": 1.0, + "content": ". The NMI", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "score is the ratio of mutual information and average entropy of a set of clusters and labels. It evaluates", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "only for the number of clusters equal to the number of classes. As discussed in Section 1, a good", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "embedding space does not necessarily have only one cluster per class, but may have multiple well", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "formed clusters in the space. This means that our mutual information may be higher than reported", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "score": 1.0, + "content": "with this metric. Nevertheless, we present results on the NMI score in the interest of comparing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 349, + 654 + ], + "score": 1.0, + "content": "to existing methods that evaluate on this metric. The Recall", + "type": "text" + }, + { + "bbox": [ + 349, + 642, + 367, + 652 + ], + "score": 0.62, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 642, + 399, + 653 + ], + "score": 0.73, + "content": "( \\mathbb { R } ^ { \\ @ \\mathbb { K } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "metric is better suited for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 653, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 665 + ], + "score": 1.0, + "content": "evaluating an embedding space. A true positive is defined as a sample that has at least one of its true", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 664, + 405, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 405, + 676 + ], + "score": 1.0, + "content": "nearest K neighbours in the embedding space with the same class as itself.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Embedding Space Dimension We investigate the importance of the embedding dimension. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "similar study in Song et al. (2016a) suggests that the number of dimensions is not important for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "triplet networks, in fact, increasing the number of dimensions can be detrimental to performance.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "We compare our method with increasing dimension size against triplet loss (Weinberger et al., 2006;", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 83, + 506, + 127 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 420, + 152 + ], + "score": 1.0, + "content": "Radial Basis Function Parameters A global standard deviation parameter", + "type": "text" + }, + { + "bbox": [ + 421, + 142, + 428, + 149 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "is shared amongst", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 151, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 506, + 163 + ], + "score": 1.0, + "content": "the RBFs. This ensures that the assumption made about samples only being influenced by their", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 505, + 173 + ], + "score": 1.0, + "content": "nearest RBF centres holds. Although the parameter is learnable, we find that fixing the standard", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "deviation value before training is a suitable approach. We treat the standard deviation as an additional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 197 + ], + "score": 1.0, + "content": "hyperparameter to tune, however it can also be learned independently before full network training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 195, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 505, + 207 + ], + "score": 1.0, + "content": "commences. As seen in Equation 4, each RBF centre has a weight, which is learned end-to-end with", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "score": 1.0, + "content": "the network weights. These weights are initialised at values of one. Note that in our experiments we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 216, + 502, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 502, + 228 + ], + "score": 1.0, + "content": "only tune the RBF weights for the classification task; they remain fixed for metric learning problems.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 138, + 506, + 228 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 244, + 200, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 201, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 201, + 259 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 269, + 495, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 496, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 496, + 282 + ], + "score": 1.0, + "content": "We detail our experimental results in two tasks; distance metric learning and image classification.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 268, + 496, + 282 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 261, + 306 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 263, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 263, + 307 + ], + "score": 1.0, + "content": "4.1 DISTANCE METRIC LEARNING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 328 + ], + "score": 1.0, + "content": "Experimental Set-up We evaluate our approach on two datasets; Stanford Cars196 (Krause et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "2013) and CUB-200-2011 (Birds200) (Welinder et al., 2010). Cars196 consists of 16,185 images", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "of 196 different car makes and models, while Birds200 consists of 11,788 images of 200 different", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "bird species. In this problem, the network is trained and evaluated on different sets of classes. We", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "score": 1.0, + "content": "follow the experimental set-up used in Song et al. (2016a); Sohn (2016); Song et al. (2016b); Kumar", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "et al. (2017). For the Cars196 dataset, we train the network on the first 98 classes and evaluate on the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "remaining 98. For the Birds200 dataset we train on the first 100 classes and evaluate on the remaining", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "100. Stochastic gradient descent optimisation is used. All images are first resized to be 256x256 and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "score": 1.0, + "content": "data is augmented by random cropping and horizontal mirroring. Note that we do not crop the images", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 415, + 251, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 251, + 428 + ], + "score": 1.0, + "content": "using the provided bounding boxes.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 315, + 506, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 445 + ], + "score": 1.0, + "content": "Our method is compared to state-of-the-art approaches on the considered datasets; semi-hard mining", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "for triplet networks (Schroff et al., 2015), lifted structured feature embedding (Song et al., 2016a),", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "score": 1.0, + "content": "N-pair loss (Sohn, 2016), clustering (Song et al., 2016b), global loss with triplet networks (Kumar", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "et al., 2016) and smart mining for triplet networks (Kumar et al., 2017). For fair comparison to these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 487 + ], + "score": 1.0, + "content": "methods, we use the same base architecture for our experiments; GoogLeNet (Szegedy et al., 2015).", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "Network weights are initialised from ImageNet (Russakovsky et al., 2015) pre-trained weights. We", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "use 100 nearest neighbours and an update interval of 10 epochs. RBF weights are fixed at a value of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 509, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 506, + 520 + ], + "score": 1.0, + "content": "one for this task. We train for 50 epochs on Cars196 and 30 epochs on Birds200. A batch size of 20,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "base learning of 0.00001 and weight decay of 0.0002 are used. The RBF standard deviation used", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "depends on size of the embedding dimension. We find values between 10 and 30 work well for this", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 541, + 128, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 128, + 553 + ], + "score": 1.0, + "content": "task.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 430, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 577 + ], + "score": 1.0, + "content": "Evaluation Metrics Following Song et al. (2016a), we evaluate the embedding space using two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 443, + 588 + ], + "score": 1.0, + "content": "metrics; Normalised Mutual Information (NMI) (Manning et al., 2008) and Recall", + "type": "text" + }, + { + "bbox": [ + 443, + 576, + 460, + 586 + ], + "score": 0.71, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 576, + 506, + 588 + ], + "score": 1.0, + "content": ". The NMI", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "score is the ratio of mutual information and average entropy of a set of clusters and labels. It evaluates", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "only for the number of clusters equal to the number of classes. As discussed in Section 1, a good", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "embedding space does not necessarily have only one cluster per class, but may have multiple well", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 505, + 632 + ], + "score": 1.0, + "content": "formed clusters in the space. This means that our mutual information may be higher than reported", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 645 + ], + "score": 1.0, + "content": "with this metric. Nevertheless, we present results on the NMI score in the interest of comparing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 349, + 654 + ], + "score": 1.0, + "content": "to existing methods that evaluate on this metric. The Recall", + "type": "text" + }, + { + "bbox": [ + 349, + 642, + 367, + 652 + ], + "score": 0.62, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 642, + 399, + 653 + ], + "score": 0.73, + "content": "( \\mathbb { R } ^ { \\ @ \\mathbb { K } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "metric is better suited for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 653, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 665 + ], + "score": 1.0, + "content": "evaluating an embedding space. A true positive is defined as a sample that has at least one of its true", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 664, + 405, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 405, + 676 + ], + "score": 1.0, + "content": "nearest K neighbours in the embedding space with the same class as itself.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 565, + 506, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "Embedding Space Dimension We investigate the importance of the embedding dimension. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "similar study in Song et al. (2016a) suggests that the number of dimensions is not important for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "triplet networks, in fact, increasing the number of dimensions can be detrimental to performance.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "We compare our method with increasing dimension size against triplet loss (Weinberger et al., 2006;", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 688, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 78, + 504, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 78, + 504, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 78, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 504, + 230 + ], + "score": 0.966, + "type": "image", + "image_path": "c12dcaaee4263341e5a94a15e639afe7c1aabf716e1c6bfa48752a0b28b68e8c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 78, + 504, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 128.66666666666666, + 504, + 179.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 179.33333333333331, + 504, + 229.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 237, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "Figure 2: Effect of embedding size on NMI score on the test set of Cars196 (left) and Birds200", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "(right). The NMI of our RBF approach improves with increasing embedding size, while performance", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "degrades or oscillates for triplet (Weinberger et al., 2006; Schroff et al., 2015) and lifted structured", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 271, + 237, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 237, + 284 + ], + "score": 1.0, + "content": "embedding (Song et al., 2016a).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 106, + 303, + 505, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 303, + 505, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 455 + ], + "score": 0.968, + "type": "image", + "image_path": "6ee4762a10f3fa17ca4f97739f1a0d53a7d49d6330e5cecafd50aaa8f77d629c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 303, + 505, + 353.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 353.6666666666667, + 505, + 404.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 404.33333333333337, + 505, + 455.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 463, + 506, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "Figure 3: Recall of our RBF solver at 1, 2, 4 and 8 nearest neighbours on the test set of Cars196 (left)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 475, + 465, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 465, + 486 + ], + "score": 1.0, + "content": "and Birds200 (right). Recall performance of our approach increases with embedding size.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Schroff et al., 2015) and lifted structured embedding (Song et al., 2016a), both taken from the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "study in Song et al. (2016a). Figure 2 shows the effect of the embedding size on NMI score. It’s", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "clear that while increasing the number of dimensions does not necessarily improve performance for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "triplet-based networks, the dimensionality is important for our RBF approach. The NMI score for our", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 563, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 507, + 576 + ], + "score": 1.0, + "content": "approach improves with increasing numbers of dimensions. Similar behaviour is seen in Figure 3,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 200, + 587 + ], + "score": 1.0, + "content": "which shows the Recall", + "type": "text" + }, + { + "bbox": [ + 200, + 574, + 217, + 584 + ], + "score": 0.73, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "metric for our RBF method with varying numbers of dimensions. Again,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 585, + 403, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 403, + 598 + ], + "score": 1.0, + "content": "this shows that the dimensionality is an important factor for our approach.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Comparison of Results Our approach is compared to the state-of-the-art in Table 1, with the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "compared results taken from Song et al. (2016b) and Kumar et al. (2017). Since, as discussed above,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "the number of embedding dimensions does not have much impact on the other approaches, all results", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "in Song et al. (2016b) and Kumar et al. (2017) are reported using 64 dimensions. For fair comparison,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "we report our results at 64 dimensions, but also at the better performing higher dimensions. Our", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 377, + 690 + ], + "score": 1.0, + "content": "approach outperforms the other methods in both the NMI and Recall", + "type": "text" + }, + { + "bbox": [ + 378, + 677, + 394, + 687 + ], + "score": 0.68, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "measures, at all embedding", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "sizes presented. Our approach is able to produce better compact embeddings than existing methods,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "but can also take advantage of a larger embedding space. Figure 4 shows a t-SNE (van der Maaten &", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Hinton, 2008) visualisation of the Birds200 test set embedding space. Despite the test classes being", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 721, + 333, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 333, + 732 + ], + "score": 1.0, + "content": "withheld during training, bird species are well clustered.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 78, + 504, + 230 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 78, + 504, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 78, + 504, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 504, + 230 + ], + "score": 0.966, + "type": "image", + "image_path": "c12dcaaee4263341e5a94a15e639afe7c1aabf716e1c6bfa48752a0b28b68e8c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 78, + 504, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 128.66666666666666, + 504, + 179.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 179.33333333333331, + 504, + 229.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 237, + 505, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 238, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 250 + ], + "score": 1.0, + "content": "Figure 2: Effect of embedding size on NMI score on the test set of Cars196 (left) and Birds200", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "(right). The NMI of our RBF approach improves with increasing embedding size, while performance", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "degrades or oscillates for triplet (Weinberger et al., 2006; Schroff et al., 2015) and lifted structured", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 271, + 237, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 237, + 284 + ], + "score": 1.0, + "content": "embedding (Song et al., 2016a).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "image", + "bbox": [ + 106, + 303, + 505, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 303, + 505, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 455 + ], + "score": 0.968, + "type": "image", + "image_path": "6ee4762a10f3fa17ca4f97739f1a0d53a7d49d6330e5cecafd50aaa8f77d629c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 303, + 505, + 353.6666666666667 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 353.6666666666667, + 505, + 404.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 404.33333333333337, + 505, + 455.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 463, + 506, + 486 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "Figure 3: Recall of our RBF solver at 1, 2, 4 and 8 nearest neighbours on the test set of Cars196 (left)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 475, + 465, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 465, + 486 + ], + "score": 1.0, + "content": "and Birds200 (right). Recall performance of our approach increases with embedding size.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Schroff et al., 2015) and lifted structured embedding (Song et al., 2016a), both taken from the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "study in Song et al. (2016a). Figure 2 shows the effect of the embedding size on NMI score. It’s", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "clear that while increasing the number of dimensions does not necessarily improve performance for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "triplet-based networks, the dimensionality is important for our RBF approach. The NMI score for our", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 563, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 507, + 576 + ], + "score": 1.0, + "content": "approach improves with increasing numbers of dimensions. Similar behaviour is seen in Figure 3,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 200, + 587 + ], + "score": 1.0, + "content": "which shows the Recall", + "type": "text" + }, + { + "bbox": [ + 200, + 574, + 217, + 584 + ], + "score": 0.73, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "metric for our RBF method with varying numbers of dimensions. Again,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 585, + 403, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 403, + 598 + ], + "score": 1.0, + "content": "this shows that the dimensionality is an important factor for our approach.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 518, + 507, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "Comparison of Results Our approach is compared to the state-of-the-art in Table 1, with the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "compared results taken from Song et al. (2016b) and Kumar et al. (2017). Since, as discussed above,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "the number of embedding dimensions does not have much impact on the other approaches, all results", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "in Song et al. (2016b) and Kumar et al. (2017) are reported using 64 dimensions. For fair comparison,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "we report our results at 64 dimensions, but also at the better performing higher dimensions. Our", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 377, + 690 + ], + "score": 1.0, + "content": "approach outperforms the other methods in both the NMI and Recall", + "type": "text" + }, + { + "bbox": [ + 378, + 677, + 394, + 687 + ], + "score": 0.68, + "content": "@ \\mathrm { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "measures, at all embedding", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 688, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 699 + ], + "score": 1.0, + "content": "sizes presented. Our approach is able to produce better compact embeddings than existing methods,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "but can also take advantage of a larger embedding space. Figure 4 shows a t-SNE (van der Maaten &", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "Hinton, 2008) visualisation of the Birds200 test set embedding space. Despite the test classes being", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 721, + 333, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 333, + 732 + ], + "score": 1.0, + "content": "withheld during training, bird species are well clustered.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 621, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 123, + 505, + 611 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 123, + 505, + 611 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 123, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 107, + 123, + 505, + 611 + ], + "score": 0.766, + "type": "image", + "image_path": "9ad95d5dfa4f101642116b32c7576560527f37481ecf02e7b0a2c6153c559e48.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 123, + 505, + 285.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 285.66666666666663, + 505, + 448.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 448.33333333333326, + 505, + 610.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 610, + 506, + 643 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Figure 4: Visualisation of the Birds200 test set embedding space, using the t-SNE algorithm (van der", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Maaten & Hinton, 2008). Despite not being trained on the test classes, bird species are well clustered.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 632, + 312, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 312, + 644 + ], + "score": 1.0, + "content": "Best viewed in colour and zoomed in on a monitor.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 666, + 235, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 236, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 236, + 679 + ], + "score": 1.0, + "content": "4.2 IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "Experimental Set-up We evaluate our solver in the domain of image classification, comparing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 451, + 711 + ], + "score": 1.0, + "content": "performance with conventional softmax loss. For all experiments, images are resized to", + "type": "text" + }, + { + "bbox": [ + 452, + 699, + 488, + 709 + ], + "score": 0.38, + "content": "2 5 6 \\mathbf { x } 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "random cropping and horizontal mirroring is used for data augmentation. Unlike in Section 4.1, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "crop Birds200 and Cars196 images using the provided bounding boxes before resizing. The same", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 123, + 505, + 611 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 123, + 505, + 611 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 123, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 107, + 123, + 505, + 611 + ], + "score": 0.766, + "type": "image", + "image_path": "9ad95d5dfa4f101642116b32c7576560527f37481ecf02e7b0a2c6153c559e48.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 123, + 505, + 285.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 285.66666666666663, + 505, + 448.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 448.33333333333326, + 505, + 610.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 610, + 506, + 643 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Figure 4: Visualisation of the Birds200 test set embedding space, using the t-SNE algorithm (van der", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "Maaten & Hinton, 2008). Despite not being trained on the test classes, bird species are well clustered.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 632, + 312, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 312, + 644 + ], + "score": 1.0, + "content": "Best viewed in colour and zoomed in on a monitor.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 666, + 235, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 236, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 236, + 679 + ], + "score": 1.0, + "content": "4.2 IMAGE CLASSIFICATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "Experimental Set-up We evaluate our solver in the domain of image classification, comparing", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 451, + 711 + ], + "score": 1.0, + "content": "performance with conventional softmax loss. For all experiments, images are resized to", + "type": "text" + }, + { + "bbox": [ + 452, + 699, + 488, + 709 + ], + "score": 0.38, + "content": "2 5 6 \\mathbf { x } 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "random cropping and horizontal mirroring is used for data augmentation. Unlike in Section 4.1, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "crop Birds200 and Cars196 images using the provided bounding boxes before resizing. The same", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "classes are used for training and testing. All datasets are split in to training, validation and test sets.", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "We select softmax and RBF hyperparameters that minimise the validation loss. The FC7 layer (4096", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "dimensions), with dropout and without a ReLU, is used as the embedding layer for our RBF solver", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 460, + 507, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 507, + 473 + ], + "score": 1.0, + "content": "when using a VGG (Simonyan & Zisserman, 2014) or AlexNet (Krizhevsky et al., 2012) architecture.", + "type": "text", + "cross_page": true + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "For a ResNet architecture (He et al., 2016), we use the final pooling layer (2048 dimensions). We find", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "that following the ResNet embedding layer with a dropout layer results in a small performance gain", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "for both RBF and softmax solvers. A batch size of 20 is used and an update interval of 10 epochs,", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "unless otherwise noted. We use stochastic gradient descent optimisation. In general, we find a base", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "learning rate of 0.00001 to be appropriate for our approach. A standard deviation of around 100 for", + "type": "text", + "cross_page": true + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "the RBFs is found to be suitable for the 4096 dimension VGG16 embeddings on Birds200. Networks", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 537, + 415, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 415, + 550 + ], + "score": 1.0, + "content": "are initialised with ImageNet (Russakovsky et al., 2015) pre-trained weights.", + "type": "text", + "cross_page": true + } + ], + "index": 32 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 687, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 194, + 88, + 403, + 258 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 194, + 88, + 403, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 88, + 403, + 258 + ], + "spans": [ + { + "bbox": [ + 194, + 88, + 403, + 258 + ], + "score": 0.968, + "type": "image", + "image_path": "b82bff4ec4bcfa40985140153ccd5b9e8ccc7a88ed46ec80451369726237ca81.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 194, + 88, + 403, + 101.07692307692308 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 194, + 101.07692307692308, + 403, + 114.15384615384616 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 194, + 114.15384615384616, + 403, + 127.23076923076924 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 194, + 127.23076923076924, + 403, + 140.30769230769232 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 194, + 140.30769230769232, + 403, + 153.3846153846154 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 194, + 153.3846153846154, + 403, + 166.46153846153845 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 194, + 166.46153846153845, + 403, + 179.53846153846152 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 194, + 179.53846153846152, + 403, + 192.61538461538458 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 192.61538461538458, + 403, + 205.69230769230765 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 205.69230769230765, + 403, + 218.76923076923072 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 218.76923076923072, + 403, + 231.84615384615378 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 231.84615384615378, + 403, + 244.92307692307685 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 244.92307692307685, + 403, + 257.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 267, + 506, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Figure 5: Effect of the number of training samples per class on the test set accuracy of Birds200,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "using a VGG16 architecture. Note that the final data point in the plot refers to the entire training set;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 289, + 403, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 403, + 301 + ], + "score": 1.0, + "content": "while most classes have 24 training samples per class, some have only 23.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 10.0 + }, + { + "type": "table", + "bbox": [ + 205, + 332, + 402, + 408 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 312, + 376, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 233, + 311, + 378, + 326 + ], + "spans": [ + { + "bbox": [ + 233, + 311, + 378, + 326 + ], + "score": 1.0, + "content": "Table 2: Birds200 test set accuracy.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table_body", + "bbox": [ + 205, + 332, + 402, + 408 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 205, + 332, + 402, + 408 + ], + "spans": [ + { + "bbox": [ + 205, + 332, + 402, + 408 + ], + "score": 0.976, + "html": "
Base NetworkSolver
SoftmaxRBF (Ours)
AlexNet62.4166.95
VGG1675.3778.63
ResNet5078.0578.98
", + "type": "table", + "image_path": "dda7b3a083cd96dd0fa18c6ac34446fd185bc66592fe00f371081e2cb4c84e88.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 205, + 332, + 402, + 347.2 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 205, + 347.2, + 402, + 362.4 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 205, + 362.4, + 402, + 377.59999999999997 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 205, + 377.59999999999997, + 402, + 392.79999999999995 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 205, + 392.79999999999995, + 402, + 407.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 427, + 506, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "classes are used for training and testing. All datasets are split in to training, validation and test sets.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "We select softmax and RBF hyperparameters that minimise the validation loss. The FC7 layer (4096", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "dimensions), with dropout and without a ReLU, is used as the embedding layer for our RBF solver", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 460, + 507, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 507, + 473 + ], + "score": 1.0, + "content": "when using a VGG (Simonyan & Zisserman, 2014) or AlexNet (Krizhevsky et al., 2012) architecture.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "For a ResNet architecture (He et al., 2016), we use the final pooling layer (2048 dimensions). We find", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "that following the ResNet embedding layer with a dropout layer results in a small performance gain", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "for both RBF and softmax solvers. A batch size of 20 is used and an update interval of 10 epochs,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 517 + ], + "score": 1.0, + "content": "unless otherwise noted. We use stochastic gradient descent optimisation. In general, we find a base", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "learning rate of 0.00001 to be appropriate for our approach. A standard deviation of around 100 for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "the RBFs is found to be suitable for the 4096 dimension VGG16 embeddings on Birds200. Networks", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 537, + 415, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 415, + 550 + ], + "score": 1.0, + "content": "are initialised with ImageNet (Russakovsky et al., 2015) pre-trained weights.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "Evaluation on Birds200 We carry out detailed evaluation of our approach on the Birds200 dataset.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 357, + 584 + ], + "score": 1.0, + "content": "Since there is no standard validation set for this dataset, we take", + "type": "text" + }, + { + "bbox": [ + 357, + 572, + 376, + 583 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "of the training data as validation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "data. In Table 2, we evaluate with three network architectures; AlexNet (Krizhevsky et al., 2012),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "VGG16 (Simonyan & Zisserman, 2014) and ResNet50 (He et al., 2016). Our approach outperforms", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "the softmax counterpart for each network. The performance gain over softmax is larger for AlexNet", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "and VGG than for ResNet. This is likely because ResNet has significantly more non-linear activation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "function layers, meaning there is less improvement seen when using the highly non-linear RBF solver.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "The effect of the number of training samples per class is shown in Figure 5. Our RBF approach", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "outperforms softmax loss at all numbers of training images, with a particularly large gain when", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 660, + 199, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 199, + 673 + ], + "score": 1.0, + "content": "training data is scarce.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "Results from ablation experiments on our RBF approach are shown in Table 3. The importance of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 444, + 700 + ], + "score": 1.0, + "content": "the following components of learning are shown; tuning the RBF standard deviation", + "type": "text" + }, + { + "bbox": [ + 444, + 690, + 451, + 698 + ], + "score": 0.67, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", learning the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "RBF weights and fine-tuning the network weights. Figure 6a shows the impact of the number of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "nearest neighbours used for each sample during training. There is a clear lower bound required for", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "good performance. As discussed in Section 3.3, this is because the network weights are constantly", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 194, + 88, + 403, + 258 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 194, + 88, + 403, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 88, + 403, + 258 + ], + "spans": [ + { + "bbox": [ + 194, + 88, + 403, + 258 + ], + "score": 0.968, + "type": "image", + "image_path": "b82bff4ec4bcfa40985140153ccd5b9e8ccc7a88ed46ec80451369726237ca81.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 194, + 88, + 403, + 101.07692307692308 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 194, + 101.07692307692308, + 403, + 114.15384615384616 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 194, + 114.15384615384616, + 403, + 127.23076923076924 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 194, + 127.23076923076924, + 403, + 140.30769230769232 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 194, + 140.30769230769232, + 403, + 153.3846153846154 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 194, + 153.3846153846154, + 403, + 166.46153846153845 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 194, + 166.46153846153845, + 403, + 179.53846153846152 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 194, + 179.53846153846152, + 403, + 192.61538461538458 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 192.61538461538458, + 403, + 205.69230769230765 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 205.69230769230765, + 403, + 218.76923076923072 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 218.76923076923072, + 403, + 231.84615384615378 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 231.84615384615378, + 403, + 244.92307692307685 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 244.92307692307685, + 403, + 257.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 267, + 506, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Figure 5: Effect of the number of training samples per class on the test set accuracy of Birds200,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 506, + 291 + ], + "score": 1.0, + "content": "using a VGG16 architecture. Note that the final data point in the plot refers to the entire training set;", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 289, + 403, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 403, + 301 + ], + "score": 1.0, + "content": "while most classes have 24 training samples per class, some have only 23.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 10.0 + }, + { + "type": "table", + "bbox": [ + 205, + 332, + 402, + 408 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 312, + 376, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 233, + 311, + 378, + 326 + ], + "spans": [ + { + "bbox": [ + 233, + 311, + 378, + 326 + ], + "score": 1.0, + "content": "Table 2: Birds200 test set accuracy.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "table_body", + "bbox": [ + 205, + 332, + 402, + 408 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 205, + 332, + 402, + 408 + ], + "spans": [ + { + "bbox": [ + 205, + 332, + 402, + 408 + ], + "score": 0.976, + "html": "
Base NetworkSolver
SoftmaxRBF (Ours)
AlexNet62.4166.95
VGG1675.3778.63
ResNet5078.0578.98
", + "type": "table", + "image_path": "dda7b3a083cd96dd0fa18c6ac34446fd185bc66592fe00f371081e2cb4c84e88.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 205, + 332, + 402, + 347.2 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 205, + 347.2, + 402, + 362.4 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 205, + 362.4, + 402, + 377.59999999999997 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 205, + 377.59999999999997, + 402, + 392.79999999999995 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 205, + 392.79999999999995, + 402, + 407.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 427, + 506, + 548 + ], + "lines": [], + "index": 27, + "bbox_fs": [ + 105, + 428, + 507, + 550 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "Evaluation on Birds200 We carry out detailed evaluation of our approach on the Birds200 dataset.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 357, + 584 + ], + "score": 1.0, + "content": "Since there is no standard validation set for this dataset, we take", + "type": "text" + }, + { + "bbox": [ + 357, + 572, + 376, + 583 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "of the training data as validation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "data. In Table 2, we evaluate with three network architectures; AlexNet (Krizhevsky et al., 2012),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "VGG16 (Simonyan & Zisserman, 2014) and ResNet50 (He et al., 2016). Our approach outperforms", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "the softmax counterpart for each network. The performance gain over softmax is larger for AlexNet", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "and VGG than for ResNet. This is likely because ResNet has significantly more non-linear activation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "function layers, meaning there is less improvement seen when using the highly non-linear RBF solver.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "The effect of the number of training samples per class is shown in Figure 5. Our RBF approach", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "outperforms softmax loss at all numbers of training images, with a particularly large gain when", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 660, + 199, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 199, + 673 + ], + "score": 1.0, + "content": "training data is scarce.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 560, + 507, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "Results from ablation experiments on our RBF approach are shown in Table 3. The importance of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 444, + 700 + ], + "score": 1.0, + "content": "the following components of learning are shown; tuning the RBF standard deviation", + "type": "text" + }, + { + "bbox": [ + 444, + 690, + 451, + 698 + ], + "score": 0.67, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 687, + 505, + 700 + ], + "score": 1.0, + "content": ", learning the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "RBF weights and fine-tuning the network weights. Figure 6a shows the impact of the number of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "nearest neighbours used for each sample during training. There is a clear lower bound required for", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "good performance. As discussed in Section 3.3, this is because the network weights are constantly", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "being updated, but the stored RBF centres are not. As such, we need to consider a larger number of", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 408, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 504, + 421 + ], + "score": 1.0, + "content": "neighbours than if the centres were always up-to-date. Figure 6b shows the average distance from", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "each training sample to its nearest RBF centres at different points during training. Similarly, Figure", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "6c shows the average radial basis function values between training samples and their nearest centres.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 441, + 292, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 292, + 455 + ], + "score": 1.0, + "content": "These experiments use a VGG16 architecture.", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 167, + 100, + 442, + 203 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 230, + 80, + 380, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 230, + 80, + 380, + 93 + ], + "spans": [ + { + "bbox": [ + 230, + 80, + 380, + 93 + ], + "score": 1.0, + "content": "Table 3: Ablation study on Birds200.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 167, + 100, + 442, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 100, + 442, + 203 + ], + "spans": [ + { + "bbox": [ + 167, + 100, + 442, + 203 + ], + "score": 0.974, + "html": "
Initial Network WeightsTune σLearn RBF WeightsFine-tune Network WeightsTest Accuracy
RandomYesNoNo1.35
ImageNetYesNoNo47.32
ImageNetYesYesNo49.22
ImageNetYesNoYes77.94
ImageNetYesYesYes78.63
", + "type": "table", + "image_path": "58475954d1a3dfc4e6587bfbbe68e7f922e085c3912341d6e8b6b09781e1ca13.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 167, + 100, + 442, + 134.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 134.33333333333334, + 442, + 168.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 168.66666666666669, + 442, + 203.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 108, + 217, + 495, + 331 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 217, + 495, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 217, + 495, + 331 + ], + "spans": [ + { + "bbox": [ + 108, + 217, + 495, + 331 + ], + "score": 0.971, + "type": "image", + "image_path": "b4f1926e93fd86b15012674b1408c4e84caeaf5b21bca4425d0de792ca91fecc.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 108, + 217, + 495, + 255.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 255.0, + 495, + 293.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 293.0, + 495, + 331.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 340, + 504, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "Figure 6: (a) The effect of the number of nearest neighbours considered during training. (b) The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "average distance from training samples to their nearest RBF centres. (c) The average RBF value", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 362, + 334, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 334, + 375 + ], + "score": 1.0, + "content": "between training samples and their nearest RBF centres.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 410 + ], + "score": 1.0, + "content": "being updated, but the stored RBF centres are not. As such, we need to consider a larger number of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 408, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 504, + 421 + ], + "score": 1.0, + "content": "neighbours than if the centres were always up-to-date. Figure 6b shows the average distance from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "each training sample to its nearest RBF centres at different points during training. Similarly, Figure", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "6c shows the average radial basis function values between training samples and their nearest centres.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 441, + 292, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 292, + 455 + ], + "score": 1.0, + "content": "These experiments use a VGG16 architecture.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 459, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 470 + ], + "score": 1.0, + "content": "When training with softmax loss on a VGG16 architecture, validation loss plateaus at around 7000", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 467, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 484 + ], + "score": 1.0, + "content": "iterations. For our RBF solver, the number of iterations taken for validation loss to stop improving", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "depends on the update interval, that is, the interval at which the RBF centres are updated and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 488, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 506, + 506 + ], + "score": 1.0, + "content": "nearest neighbours computed. For update intervals of 1, 5 and 10, validation loss stops improving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "at around 8500, 12000 and 15000 iterations, respectively. Since nearest neighbour search becomes", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "the bottleneck as the dataset size increases, a less frequent update interval should be used for large", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "datasets, allowing for a faster overall training time. The softmax solver is able to converge in fewer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 534, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 507, + 548 + ], + "score": 1.0, + "content": "iterations than our approach. This is likely due to the RBF centres not being up-to-date at all times,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "leading to weight updates that are less effective than in the ideal scenario. However, as discussed in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 557, + 405, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 405, + 569 + ], + "score": 1.0, + "content": "Section 3.3, keeping the RBF centres up-to-date at all times in intractable.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "Our RBF approach allows clusters to position themselves freely in the embedding space, such that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "the intrinsic structure of the data can be represented. As a result, we expect the embeddings to be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "co-located based not only in terms of class, but also in terms of more fine-grained information, such", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 607, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 618 + ], + "score": 1.0, + "content": "as attributes. We use the 312 binary attributes of Birds200 to confirm this expectation. For each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "4096 dimension VGG16 test set embedding, we propagate attributes by computing the density of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "each attribute label present in the neighbouring test embeddings. This is done using Gaussian radial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "basis functions, treating each attribute as a binary classification problem. We find the best Gaussian", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "standard deviation for softmax and our RBF learned embeddings separately. A precision and recall", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "score": 1.0, + "content": "curve, shown in Figure 7, is generated by sweeping the classification discrimination threshold from", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "zero to one. We find that for a given precision, the RBF solver results in an embedding space with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 683, + 499, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 499, + 696 + ], + "score": 1.0, + "content": "better attribute recall than softmax. Note that we do not train the models using the attribute labels.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "Other Datasets We further evaluate our approach on three other fine-grained classification datasets;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Oxford 102 Flowers (Nilsback & Zisserman, 2008), Stanford Cars196 (Krause et al., 2013) and", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 167, + 100, + 442, + 203 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 230, + 80, + 380, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 230, + 80, + 380, + 93 + ], + "spans": [ + { + "bbox": [ + 230, + 80, + 380, + 93 + ], + "score": 1.0, + "content": "Table 3: Ablation study on Birds200.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 167, + 100, + 442, + 203 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 100, + 442, + 203 + ], + "spans": [ + { + "bbox": [ + 167, + 100, + 442, + 203 + ], + "score": 0.974, + "html": "
Initial Network WeightsTune σLearn RBF WeightsFine-tune Network WeightsTest Accuracy
RandomYesNoNo1.35
ImageNetYesNoNo47.32
ImageNetYesYesNo49.22
ImageNetYesNoYes77.94
ImageNetYesYesYes78.63
", + "type": "table", + "image_path": "58475954d1a3dfc4e6587bfbbe68e7f922e085c3912341d6e8b6b09781e1ca13.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 167, + 100, + 442, + 134.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 134.33333333333334, + 442, + 168.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 168.66666666666669, + 442, + 203.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 108, + 217, + 495, + 331 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 217, + 495, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 217, + 495, + 331 + ], + "spans": [ + { + "bbox": [ + 108, + 217, + 495, + 331 + ], + "score": 0.971, + "type": "image", + "image_path": "b4f1926e93fd86b15012674b1408c4e84caeaf5b21bca4425d0de792ca91fecc.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 108, + 217, + 495, + 255.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 255.0, + 495, + 293.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 293.0, + 495, + 331.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 340, + 504, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "Figure 6: (a) The effect of the number of nearest neighbours considered during training. (b) The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "average distance from training samples to their nearest RBF centres. (c) The average RBF value", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 362, + 334, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 334, + 375 + ], + "score": 1.0, + "content": "between training samples and their nearest RBF centres.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 505, + 452 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 398, + 506, + 455 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 459, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 505, + 470 + ], + "score": 1.0, + "content": "When training with softmax loss on a VGG16 architecture, validation loss plateaus at around 7000", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 467, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 484 + ], + "score": 1.0, + "content": "iterations. For our RBF solver, the number of iterations taken for validation loss to stop improving", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "depends on the update interval, that is, the interval at which the RBF centres are updated and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 488, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 488, + 506, + 506 + ], + "score": 1.0, + "content": "nearest neighbours computed. For update intervals of 1, 5 and 10, validation loss stops improving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "at around 8500, 12000 and 15000 iterations, respectively. Since nearest neighbour search becomes", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "the bottleneck as the dataset size increases, a less frequent update interval should be used for large", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "datasets, allowing for a faster overall training time. The softmax solver is able to converge in fewer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 534, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 507, + 548 + ], + "score": 1.0, + "content": "iterations than our approach. This is likely due to the RBF centres not being up-to-date at all times,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "leading to weight updates that are less effective than in the ideal scenario. However, as discussed in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 557, + 405, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 405, + 569 + ], + "score": 1.0, + "content": "Section 3.3, keeping the RBF centres up-to-date at all times in intractable.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 459, + 507, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "Our RBF approach allows clusters to position themselves freely in the embedding space, such that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "the intrinsic structure of the data can be represented. As a result, we expect the embeddings to be", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "co-located based not only in terms of class, but also in terms of more fine-grained information, such", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 607, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 618 + ], + "score": 1.0, + "content": "as attributes. We use the 312 binary attributes of Birds200 to confirm this expectation. For each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "4096 dimension VGG16 test set embedding, we propagate attributes by computing the density of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "each attribute label present in the neighbouring test embeddings. This is done using Gaussian radial", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "basis functions, treating each attribute as a binary classification problem. We find the best Gaussian", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "standard deviation for softmax and our RBF learned embeddings separately. A precision and recall", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 675 + ], + "score": 1.0, + "content": "curve, shown in Figure 7, is generated by sweeping the classification discrimination threshold from", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 685 + ], + "score": 1.0, + "content": "zero to one. We find that for a given precision, the RBF solver results in an embedding space with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 683, + 499, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 499, + 696 + ], + "score": 1.0, + "content": "better attribute recall than softmax. Note that we do not train the models using the attribute labels.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 573, + 506, + 696 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "Other Datasets We further evaluate our approach on three other fine-grained classification datasets;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Oxford 102 Flowers (Nilsback & Zisserman, 2008), Stanford Cars196 (Krause et al., 2013) and", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 708, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 191, + 90, + 403, + 258 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 191, + 90, + 403, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 191, + 90, + 403, + 258 + ], + "spans": [ + { + "bbox": [ + 191, + 90, + 403, + 258 + ], + "score": 0.97, + "type": "image", + "image_path": "da213ab32b744bcc91a0ebcedb139e9d3e3f2409ebcc52d565034950822f1a9c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 191, + 90, + 403, + 102.92307692307692 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 191, + 102.92307692307692, + 403, + 115.84615384615384 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 191, + 115.84615384615384, + 403, + 128.76923076923077 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 191, + 128.76923076923077, + 403, + 141.6923076923077 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 191, + 141.6923076923077, + 403, + 154.61538461538464 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 191, + 154.61538461538464, + 403, + 167.53846153846158 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 191, + 167.53846153846158, + 403, + 180.4615384615385 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 180.4615384615385, + 403, + 193.38461538461544 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 191, + 193.38461538461544, + 403, + 206.30769230769238 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 191, + 206.30769230769238, + 403, + 219.2307692307693 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 191, + 219.2307692307693, + 403, + 232.15384615384625 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 191, + 232.15384615384625, + 403, + 245.07692307692318 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 191, + 245.07692307692318, + 403, + 258.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 267, + 506, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "Figure 7: Attribute precision and recall on the 312 binary attributes of Birds200. The attributes", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "are propagated from neighbouring test embeddings and the curves are generated by sweeping the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 290, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 300 + ], + "score": 1.0, + "content": "classification discrimination threshold. The ideal standard deviation is found for the RBF and softmax", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 402, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 402, + 312 + ], + "score": 1.0, + "content": "approaches separately. No training was carried out on the attribute labels.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 10.25 + }, + { + "type": "table", + "bbox": [ + 185, + 343, + 423, + 402 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 181, + 322, + 427, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 182, + 322, + 428, + 335 + ], + "spans": [ + { + "bbox": [ + 182, + 322, + 428, + 335 + ], + "score": 1.0, + "content": "Table 4: Test accuracy on fine-grained classification datasets.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "table_body", + "bbox": [ + 185, + 343, + 423, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 343, + 423, + 402 + ], + "spans": [ + { + "bbox": [ + 185, + 343, + 423, + 402 + ], + "score": 0.978, + "html": "
DatasetSoftmaxRBF (Ours)
Oxford 102 Flowers82.7986.26
Stanford Cars19685.6786.52
Leafsnap Field73.8075.96
", + "type": "table", + "image_path": "363bd419a5669c40976f6328e56b3952870f2458087f76b315aebde1beea313c.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 343, + 423, + 357.75 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 185, + 357.75, + 423, + 372.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 372.5, + 423, + 387.25 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 387.25, + 423, + 402.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.25 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 506, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "Leafsnap (Kumar et al., 2012). We use the standard training, validation and test splits for Oxford", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 287, + 444 + ], + "score": 1.0, + "content": "102 Flowers. For Stanford Cars196, we take", + "type": "text" + }, + { + "bbox": [ + 288, + 432, + 307, + 443 + ], + "score": 0.87, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "of the training set as validation data. We use the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "challenging field images from Leafsnap, which are taken in uncontrolled conditions. The dataset", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 366, + 468 + ], + "score": 1.0, + "content": "contains 185 classes of leaf species and we split the data into", + "type": "text" + }, + { + "bbox": [ + 367, + 454, + 387, + 465 + ], + "score": 0.85, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 453, + 391, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 392, + 454, + 412, + 465 + ], + "score": 0.85, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 453, + 432, + 468 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 454, + 452, + 465 + ], + "score": 0.86, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "for training,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "validation and testing, respectively. Again, hyperparameters are selected based on validation loss and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 349, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 349, + 487 + ], + "score": 1.0, + "content": "a VGG16 architecture is used. Results are shown in Table 4.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 109, + 503, + 287, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 289, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 289, + 519 + ], + "score": 1.0, + "content": "5 DISCUSSION AND CONCLUSION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Our approach is designed to address two problems; metric space learning and classification. The use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "of RBFs arises very naturally in the context of the first problem because metric spaces are defined", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "and measured in terms of Euclidean distance. It is perhaps more surprising that the classification", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "problem also benefits from using a metric space kernel density approach, rather than softmax. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "appears to hold independently of the base network architecture (Table 2) and the improvement is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 439, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 439, + 596 + ], + "score": 1.0, + "content": "particularly strong when limited quantities of training data are available (Figure 5).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 507, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 507, + 613 + ], + "score": 1.0, + "content": "Metric learning inherently pulls samples together into high density regions of the embedding space,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "whereas softmax is content to allow samples to fill a very large region of space, provided that the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "logit dimension corresponding to the correct class is larger than the others. This suggests that metric", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "learning is able to provide some regularisation, because classification is driven by multiple nearby", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "samples, whereas samples may be well separated in logit space for softmax. In turn, this leads to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "increased robustness for the metric space approach, particularly when training data is impoverished.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "Additionally, softmax is constrained to push samples into regions of space determined by the locations", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "of the logit axes, whereas our metric learning approach is free to position clusters in a way that may", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "more naturally reflect the intrinsic structure of the data. Finally, our approach is also free to create", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "multiple clusters for each class, if this is appropriate. As a result of these factors, our RBF solver", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "is able to outperform state-of-the-art approaches in the metric learning problem, as well as provide", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "score": 1.0, + "content": "benefit over softmax in the classification problem.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 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 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 191, + 90, + 403, + 258 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 191, + 90, + 403, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 191, + 90, + 403, + 258 + ], + "spans": [ + { + "bbox": [ + 191, + 90, + 403, + 258 + ], + "score": 0.97, + "type": "image", + "image_path": "da213ab32b744bcc91a0ebcedb139e9d3e3f2409ebcc52d565034950822f1a9c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 191, + 90, + 403, + 102.92307692307692 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 191, + 102.92307692307692, + 403, + 115.84615384615384 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 191, + 115.84615384615384, + 403, + 128.76923076923077 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 191, + 128.76923076923077, + 403, + 141.6923076923077 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 191, + 141.6923076923077, + 403, + 154.61538461538464 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 191, + 154.61538461538464, + 403, + 167.53846153846158 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 191, + 167.53846153846158, + 403, + 180.4615384615385 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 191, + 180.4615384615385, + 403, + 193.38461538461544 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 191, + 193.38461538461544, + 403, + 206.30769230769238 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 191, + 206.30769230769238, + 403, + 219.2307692307693 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 191, + 219.2307692307693, + 403, + 232.15384615384625 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 191, + 232.15384615384625, + 403, + 245.07692307692318 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 191, + 245.07692307692318, + 403, + 258.0000000000001 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 267, + 506, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "Figure 7: Attribute precision and recall on the 312 binary attributes of Birds200. The attributes", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "are propagated from neighbouring test embeddings and the curves are generated by sweeping the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 290, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 300 + ], + "score": 1.0, + "content": "classification discrimination threshold. The ideal standard deviation is found for the RBF and softmax", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 300, + 402, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 402, + 312 + ], + "score": 1.0, + "content": "approaches separately. No training was carried out on the attribute labels.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "index": 10.25 + }, + { + "type": "table", + "bbox": [ + 185, + 343, + 423, + 402 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 181, + 322, + 427, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 182, + 322, + 428, + 335 + ], + "spans": [ + { + "bbox": [ + 182, + 322, + 428, + 335 + ], + "score": 1.0, + "content": "Table 4: Test accuracy on fine-grained classification datasets.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "table_body", + "bbox": [ + 185, + 343, + 423, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 185, + 343, + 423, + 402 + ], + "spans": [ + { + "bbox": [ + 185, + 343, + 423, + 402 + ], + "score": 0.978, + "html": "
DatasetSoftmaxRBF (Ours)
Oxford 102 Flowers82.7986.26
Stanford Cars19685.6786.52
Leafsnap Field73.8075.96
", + "type": "table", + "image_path": "363bd419a5669c40976f6328e56b3952870f2458087f76b315aebde1beea313c.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 343, + 423, + 357.75 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 185, + 357.75, + 423, + 372.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 185, + 372.5, + 423, + 387.25 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 185, + 387.25, + 423, + 402.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.25 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 506, + 487 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "Leafsnap (Kumar et al., 2012). We use the standard training, validation and test splits for Oxford", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 287, + 444 + ], + "score": 1.0, + "content": "102 Flowers. For Stanford Cars196, we take", + "type": "text" + }, + { + "bbox": [ + 288, + 432, + 307, + 443 + ], + "score": 0.87, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "of the training set as validation data. We use the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "challenging field images from Leafsnap, which are taken in uncontrolled conditions. The dataset", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 366, + 468 + ], + "score": 1.0, + "content": "contains 185 classes of leaf species and we split the data into", + "type": "text" + }, + { + "bbox": [ + 367, + 454, + 387, + 465 + ], + "score": 0.85, + "content": "50 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 453, + 391, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 392, + 454, + 412, + 465 + ], + "score": 0.85, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 453, + 432, + 468 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 432, + 454, + 452, + 465 + ], + "score": 0.86, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "for training,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 477 + ], + "score": 1.0, + "content": "validation and testing, respectively. Again, hyperparameters are selected based on validation loss and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 349, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 349, + 487 + ], + "score": 1.0, + "content": "a VGG16 architecture is used. Results are shown in Table 4.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 421, + 506, + 487 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 503, + 287, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 289, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 289, + 519 + ], + "score": 1.0, + "content": "5 DISCUSSION AND CONCLUSION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Our approach is designed to address two problems; metric space learning and classification. The use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "of RBFs arises very naturally in the context of the first problem because metric spaces are defined", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "and measured in terms of Euclidean distance. It is perhaps more surprising that the classification", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "problem also benefits from using a metric space kernel density approach, rather than softmax. This", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "appears to hold independently of the base network architecture (Table 2) and the improvement is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 439, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 439, + 596 + ], + "score": 1.0, + "content": "particularly strong when limited quantities of training data are available (Figure 5).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 528, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 599, + 507, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 507, + 613 + ], + "score": 1.0, + "content": "Metric learning inherently pulls samples together into high density regions of the embedding space,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "whereas softmax is content to allow samples to fill a very large region of space, provided that the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "logit dimension corresponding to the correct class is larger than the others. This suggests that metric", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "learning is able to provide some regularisation, because classification is driven by multiple nearby", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "samples, whereas samples may be well separated in logit space for softmax. In turn, this leads to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "increased robustness for the metric space approach, particularly when training data is impoverished.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "Additionally, softmax is constrained to push samples into regions of space determined by the locations", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "of the logit axes, whereas our metric learning approach is free to position clusters in a way that may", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "more naturally reflect the intrinsic structure of the data. Finally, our approach is also free to create", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "multiple clusters for each class, if this is appropriate. As a result of these factors, our RBF solver", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "is able to outperform state-of-the-art approaches in the metric learning problem, as well as provide", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "score": 1.0, + "content": "benefit over softmax in the classification problem.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 599, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Jane Bromley, I Guyon, Yann Lecun, Eduard Sackinger, and R Shah. Signature verification using a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Siamese time delay neural network. In Advances in neural information processing systems (NIPS", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 170, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 170, + 135 + ], + "score": 1.0, + "content": "1993), 1993.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 104, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "David S Broomhead and David Lowe. Radial basis functions, multi-variable functional interpolation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 378, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 378, + 165 + ], + "score": 1.0, + "content": "and adaptive networks. Technical report, DTIC Document, 1988.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 173, + 503, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "score": 1.0, + "content": "S Chopra, R Hadsell, and Y LeCun. Learning a similarity metric discriminatively, with application to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "face verification. In 2005 IEEE Computer Society Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 196, + 338, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 338, + 208 + ], + "score": 1.0, + "content": "Recognition (CVPR’05), volume 1, pp. 539–546, 2005.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 506, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "score": 1.0, + "content": "Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "Darrell. DeCAF: A Deep Convolutional Activation Feature for Generic Visual Recognition. In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 238, + 266, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 266, + 250 + ], + "score": 1.0, + "content": "Icml, volume 32, pp. 647–655, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "R Hadsell, S Chopra, and Y LeCun. Dimensionality Reduction by Learning an Invariant Mapping. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "2006 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR’06),", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 280, + 248, + 293 + ], + "spans": [ + { + "bbox": [ + 116, + 280, + 248, + 293 + ], + "score": 1.0, + "content": "volume 2, pp. 1735–1742, 2006.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "score": 1.0, + "content": "B Harwood and T Drummond. FANNG: Fast Approximate Nearest Neighbour Graphs. In 2016", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 311, + 496, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 496, + 324 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5713–5722, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "K He, X Zhang, S Ren, and J Sun. Deep Residual Learning for Image Recognition. In 2016 IEEE", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 343, + 462, + 355 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 462, + 355 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "Elad Hoffer and Nir Ailon. Deep metric learning using triplet network. In International Workshop on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 373, + 340, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 340, + 385 + ], + "score": 1.0, + "content": "Similarity-Based Pattern Recognition, pp. 84–92, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 506, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "Jonathan Krause, Michael Stark, Jia Deng, and Li Fei-Fei. 3d object representations for fine-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 115, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "grained categorization. In Proceedings of the IEEE International Conference on Computer Vision", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 416, + 244, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 244, + 428 + ], + "score": 1.0, + "content": "Workshops, pp. 554–561, 2013.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet Classification with Deep", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "Convolutional Neural Networks. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 458, + 191, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 191, + 469 + ], + "score": 1.0, + "content": "1097–1105. 2012.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Neeraj Kumar, Peter N Belhumeur, Arijit Biswas, David W Jacobs, W John Kress, Ida Lopez, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 489, + 507, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 507, + 502 + ], + "score": 1.0, + "content": "João V B Soares. Leafsnap: A Computer Vision System for Automatic Plant Species Identification.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 501, + 398, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 398, + 513 + ], + "score": 1.0, + "content": "In The 12th European Conference on Computer Vision (ECCV), 2012.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 504, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "Vijay B G Kumar, G Carneiro, and I Reid. Learning Local Image Descriptors with Deep Siamese and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "Triplet Convolutional Networks by Minimizing Global Loss Functions. In 2016 IEEE Conference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 542, + 425, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 425, + 555 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition (CVPR), pp. 5385–5394, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "score": 1.0, + "content": "Vijay B G Kumar, Ben Harwood, Gustavo Carneiro, Ian Reid, and Tom Drummond. Smart Mining", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 573, + 388, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 573, + 388, + 587 + ], + "score": 1.0, + "content": "for Deep Metric Learning. arXiv preprint arXiv:1704.01285, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "Christopher D Manning, Prabhakar Raghavan, and Hinrich Schütze. Introduction to information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 604, + 385, + 617 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 385, + 617 + ], + "score": 1.0, + "content": "retrieval, volume 1. Cambridge university press Cambridge, 2008.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 624, + 506, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "M-E. Nilsback and A Zisserman. Automated Flower Classification over a Large Number of Classes.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 635, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 635, + 507, + 650 + ], + "score": 1.0, + "content": "In Proceedings of the Indian Conference on Computer Vision, Graphics and Image Processing,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 645, + 143, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 645, + 143, + 660 + ], + "score": 1.0, + "content": "2008.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Ali Sharif Razavian, Hossein Azizpour, Josephine Sullivan, and Stefan Carlsson. CNN Features Off-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "the-Shelf: An Astounding Baseline for Recognition. In Proceedings of the 2014 IEEE Conference", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 690, + 426, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 426, + 702 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition Workshops, pp. 512–519, 2014.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Oren Rippel, Manohar Paluri, Piotr Dollar, and Lubomir Bourdev. Metric learning with adaptive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "density discrimination. International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 94 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 506, + 114 + ], + "score": 1.0, + "content": "Jane Bromley, I Guyon, Yann Lecun, Eduard Sackinger, and R Shah. Signature verification using a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Siamese time delay neural network. In Advances in neural information processing systems (NIPS", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 170, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 170, + 135 + ], + "score": 1.0, + "content": "1993), 1993.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 99, + 506, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "David S Broomhead and David Lowe. Radial basis functions, multi-variable functional interpolation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 378, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 378, + 165 + ], + "score": 1.0, + "content": "and adaptive networks. Technical report, DTIC Document, 1988.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 142, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 173, + 503, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "score": 1.0, + "content": "S Chopra, R Hadsell, and Y LeCun. Learning a similarity metric discriminatively, with application to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "face verification. In 2005 IEEE Computer Society Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 196, + 338, + 208 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 338, + 208 + ], + "score": 1.0, + "content": "Recognition (CVPR’05), volume 1, pp. 539–546, 2005.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 173, + 505, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 506, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "score": 1.0, + "content": "Jeff Donahue, Yangqing Jia, Oriol Vinyals, Judy Hoffman, Ning Zhang, Eric Tzeng, and Trevor", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "Darrell. DeCAF: A Deep Convolutional Activation Feature for Generic Visual Recognition. In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 238, + 266, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 266, + 250 + ], + "score": 1.0, + "content": "Icml, volume 32, pp. 647–655, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 215, + 505, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 258, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "R Hadsell, S Chopra, and Y LeCun. Dimensionality Reduction by Learning an Invariant Mapping. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 506, + 283 + ], + "score": 1.0, + "content": "2006 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR’06),", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 280, + 248, + 293 + ], + "spans": [ + { + "bbox": [ + 116, + 280, + 248, + 293 + ], + "score": 1.0, + "content": "volume 2, pp. 1735–1742, 2006.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 258, + 506, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 300, + 505, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 313 + ], + "score": 1.0, + "content": "B Harwood and T Drummond. FANNG: Fast Approximate Nearest Neighbour Graphs. In 2016", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 311, + 496, + 324 + ], + "spans": [ + { + "bbox": [ + 115, + 311, + 496, + 324 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5713–5722, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 299, + 506, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "K He, X Zhang, S Ren, and J Sun. Deep Residual Learning for Image Recognition. In 2016 IEEE", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 343, + 462, + 355 + ], + "spans": [ + { + "bbox": [ + 116, + 343, + 462, + 355 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 331, + 505, + 355 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 504, + 386 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "Elad Hoffer and Nir Ailon. Deep metric learning using triplet network. In International Workshop on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 373, + 340, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 340, + 385 + ], + "score": 1.0, + "content": "Similarity-Based Pattern Recognition, pp. 84–92, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 362, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 506, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 506, + 407 + ], + "score": 1.0, + "content": "Jonathan Krause, Michael Stark, Jia Deng, and Li Fei-Fei. 3d object representations for fine-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 115, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "grained categorization. In Proceedings of the IEEE International Conference on Computer Vision", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 416, + 244, + 428 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 244, + 428 + ], + "score": 1.0, + "content": "Workshops, pp. 554–561, 2013.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 393, + 506, + 428 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 504, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 450 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet Classification with Deep", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 446, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 446, + 506, + 461 + ], + "score": 1.0, + "content": "Convolutional Neural Networks. In Advances in Neural Information Processing Systems, pp.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 458, + 191, + 469 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 191, + 469 + ], + "score": 1.0, + "content": "1097–1105. 2012.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 434, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "Neeraj Kumar, Peter N Belhumeur, Arijit Biswas, David W Jacobs, W John Kress, Ida Lopez, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 489, + 507, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 507, + 502 + ], + "score": 1.0, + "content": "João V B Soares. Leafsnap: A Computer Vision System for Automatic Plant Species Identification.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 501, + 398, + 513 + ], + "spans": [ + { + "bbox": [ + 116, + 501, + 398, + 513 + ], + "score": 1.0, + "content": "In The 12th European Conference on Computer Vision (ECCV), 2012.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 478, + 507, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 504, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "Vijay B G Kumar, G Carneiro, and I Reid. Learning Local Image Descriptors with Deep Siamese and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "Triplet Convolutional Networks by Minimizing Global Loss Functions. In 2016 IEEE Conference", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 542, + 425, + 555 + ], + "spans": [ + { + "bbox": [ + 115, + 542, + 425, + 555 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition (CVPR), pp. 5385–5394, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 520, + 506, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 504, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "score": 1.0, + "content": "Vijay B G Kumar, Ben Harwood, Gustavo Carneiro, Ian Reid, and Tom Drummond. Smart Mining", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 573, + 388, + 587 + ], + "spans": [ + { + "bbox": [ + 116, + 573, + 388, + 587 + ], + "score": 1.0, + "content": "for Deep Metric Learning. arXiv preprint arXiv:1704.01285, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 561, + 505, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "Christopher D Manning, Prabhakar Raghavan, and Hinrich Schütze. Introduction to information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 604, + 385, + 617 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 385, + 617 + ], + "score": 1.0, + "content": "retrieval, volume 1. Cambridge university press Cambridge, 2008.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 594, + 505, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 624, + 506, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "M-E. Nilsback and A Zisserman. Automated Flower Classification over a Large Number of Classes.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 635, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 635, + 507, + 650 + ], + "score": 1.0, + "content": "In Proceedings of the Indian Conference on Computer Vision, Graphics and Image Processing,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 645, + 143, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 645, + 143, + 660 + ], + "score": 1.0, + "content": "2008.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 624, + 507, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Ali Sharif Razavian, Hossein Azizpour, Josephine Sullivan, and Stefan Carlsson. CNN Features Off-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "the-Shelf: An Astounding Baseline for Recognition. In Proceedings of the 2014 IEEE Conference", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 690, + 426, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 690, + 426, + 702 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition Workshops, pp. 512–519, 2014.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 667, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Oren Rippel, Manohar Paluri, Piotr Dollar, and Lubomir Bourdev. Metric learning with adaptive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 460, + 733 + ], + "score": 1.0, + "content": "density discrimination. International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei. Imagenet", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 507, + 118 + ], + "score": 1.0, + "content": "large scale visual recognition challenge. International Journal of Computer Vision, 115(3):211–252,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 504, + 168 + ], + "lines": [ + { + "bbox": [ + 104, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "F Schroff, D Kalenichenko, and J Philbin. FaceNet: A unified embedding for face recognition and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 143, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 114, + 143, + 506, + 160 + ], + "score": 1.0, + "content": "clustering. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 156, + 181, + 168 + ], + "spans": [ + { + "bbox": [ + 116, + 156, + 181, + 168 + ], + "score": 1.0, + "content": "815–823, 2015.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 503, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 189 + ], + "score": 1.0, + "content": "K Simonyan and A Zisserman. Very Deep Convolutional Networks for Large-Scale Image Recogni-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 296, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 296, + 198 + ], + "score": 1.0, + "content": "tion. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Kihyuk Sohn. Improved Deep Metric Learning with Multi-class N-pair Loss Objective. In Advances", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 392, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 392, + 228 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems 29, pp. 1857–1865. 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 108, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "score": 1.0, + "content": "H O Song, Y Xiang, S Jegelka, and S Savarese. Deep Metric Learning via Lifted Structured Feature", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 506, + 260 + ], + "score": 1.0, + "content": "Embedding. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 257, + 195, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 257, + 195, + 268 + ], + "score": 1.0, + "content": "4004–4012, 2016a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Hyun Oh Song, Stefanie Jegelka, Vivek Rathod, and Kevin Murphy. Learnable Structured Clustering", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 287, + 440, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 287, + 440, + 299 + ], + "score": 1.0, + "content": "Framework for Deep Metric Learning. arXiv preprint arXiv:1612.01213, 2016b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 305, + 504, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. Journal of Machine Learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 328, + 257, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 257, + 339 + ], + "score": 1.0, + "content": "Research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 345, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "C Szegedy, Wei Liu, Yangqing Jia, P Sermanet, S Reed, D Anguelov, D Erhan, V Vanhoucke, and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "A Rabinovich. Going deeper with convolutions. In 2015 IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 368, + 312, + 381 + ], + "spans": [ + { + "bbox": [ + 115, + 368, + 312, + 381 + ], + "score": 1.0, + "content": "and Pattern Recognition (CVPR), pp. 1–9, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 401 + ], + "score": 1.0, + "content": "Yichuan Tang. Deep learning using linear support vector machines. arXiv preprint arXiv:1306.0239,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 397, + 143, + 411 + ], + "spans": [ + { + "bbox": [ + 114, + 397, + 143, + 411 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 104, + 416, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-SNE. Journal of Machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 303, + 441 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 303, + 441 + ], + "score": 1.0, + "content": "Learning Research, 9(Nov):2579–2605, 2008.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 108, + 447, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "J Wang, Y Song, T Leung, C Rosenberg, J Wang, J Philbin, B Chen, and Y Wu. Learning Fine-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "Grained Image Similarity with Deep Ranking. In 2014 IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 469, + 290, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 290, + 482 + ], + "score": 1.0, + "content": "Pattern Recognition, pp. 1386–1393, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "Kilian Q Weinberger, John Blitzer, and Lawrence Saul. Distance metric learning for large margin", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 478, + 512 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 478, + 512 + ], + "score": 1.0, + "content": "nearest neighbor classification. Advances in neural information processing systems, 2006.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "P Welinder, S Branson, T Mita, C Wah, F Schroff, S Belongie, and P Perona. Caltech-UCSD Birds", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 455, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 455, + 541 + ], + "score": 1.0, + "content": "200. Technical Report CNS-TR-2010-001, California Institute of Technology, 2010.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2018", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 507, + 96 + ], + "score": 1.0, + "content": "Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Andrej Karpathy, Aditya Khosla, Michael Bernstein, Alexander C. Berg, and Li Fei-Fei. Imagenet", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 507, + 118 + ], + "score": 1.0, + "content": "large scale visual recognition challenge. International Journal of Computer Vision, 115(3):211–252,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 142, + 127 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 81, + 507, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 504, + 168 + ], + "lines": [ + { + "bbox": [ + 104, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "F Schroff, D Kalenichenko, and J Philbin. FaceNet: A unified embedding for face recognition and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 143, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 114, + 143, + 506, + 160 + ], + "score": 1.0, + "content": "clustering. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 156, + 181, + 168 + ], + "spans": [ + { + "bbox": [ + 116, + 156, + 181, + 168 + ], + "score": 1.0, + "content": "815–823, 2015.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 133, + 506, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 503, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 189 + ], + "score": 1.0, + "content": "K Simonyan and A Zisserman. Very Deep Convolutional Networks for Large-Scale Image Recogni-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 296, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 296, + 198 + ], + "score": 1.0, + "content": "tion. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 173, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Kihyuk Sohn. Improved Deep Metric Learning with Multi-class N-pair Loss Objective. In Advances", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 392, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 392, + 228 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems 29, pp. 1857–1865. 2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 204, + 505, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "score": 1.0, + "content": "H O Song, Y Xiang, S Jegelka, and S Savarese. Deep Metric Learning via Lifted Structured Feature", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 506, + 260 + ], + "score": 1.0, + "content": "Embedding. In 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 257, + 195, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 257, + 195, + 268 + ], + "score": 1.0, + "content": "4004–4012, 2016a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 234, + 506, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 503, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Hyun Oh Song, Stefanie Jegelka, Vivek Rathod, and Kevin Murphy. Learnable Structured Clustering", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 287, + 440, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 287, + 440, + 299 + ], + "score": 1.0, + "content": "Framework for Deep Metric Learning. arXiv preprint arXiv:1612.01213, 2016b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 275, + 505, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 305, + 504, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey E Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. Journal of Machine Learning", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 328, + 257, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 257, + 339 + ], + "score": 1.0, + "content": "Research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 304, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 345, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "C Szegedy, Wei Liu, Yangqing Jia, P Sermanet, S Reed, D Anguelov, D Erhan, V Vanhoucke, and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "A Rabinovich. Going deeper with convolutions. In 2015 IEEE Conference on Computer Vision", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 368, + 312, + 381 + ], + "spans": [ + { + "bbox": [ + 115, + 368, + 312, + 381 + ], + "score": 1.0, + "content": "and Pattern Recognition (CVPR), pp. 1–9, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 346, + 505, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 387, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 506, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 401 + ], + "score": 1.0, + "content": "Yichuan Tang. Deep learning using linear support vector machines. arXiv preprint arXiv:1306.0239,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 397, + 143, + 411 + ], + "spans": [ + { + "bbox": [ + 114, + 397, + 143, + 411 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 385, + 506, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 416, + 505, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Laurens van der Maaten and Geoffrey Hinton. Visualizing data using t-SNE. Journal of Machine", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 303, + 441 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 303, + 441 + ], + "score": 1.0, + "content": "Learning Research, 9(Nov):2579–2605, 2008.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 417, + 505, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 447, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "J Wang, Y Song, T Leung, C Rosenberg, J Wang, J Philbin, B Chen, and Y Wu. Learning Fine-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "Grained Image Similarity with Deep Ranking. In 2014 IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 469, + 290, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 290, + 482 + ], + "score": 1.0, + "content": "Pattern Recognition, pp. 1386–1393, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 447, + 506, + 482 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 487, + 504, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 501 + ], + "score": 1.0, + "content": "Kilian Q Weinberger, John Blitzer, and Lawrence Saul. Distance metric learning for large margin", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 478, + 512 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 478, + 512 + ], + "score": 1.0, + "content": "nearest neighbor classification. Advances in neural information processing systems, 2006.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 487, + 505, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 517, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "P Welinder, S Branson, T Mita, C Wah, F Schroff, S Belongie, and P Perona. Caltech-UCSD Birds", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 455, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 455, + 541 + ], + "score": 1.0, + "content": "200. Technical Report CNS-TR-2010-001, California Institute of Technology, 2010.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 518, + 505, + 541 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/SkeuexBtDr/images/039f0a11f7dacaa0eb1f715a3e3c625c1d25855dc739f00e4c5ff547d8ff16f6.jpg b/parse/train/SkeuexBtDr/images/039f0a11f7dacaa0eb1f715a3e3c625c1d25855dc739f00e4c5ff547d8ff16f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e4c2f92b6f53cfcb37246823b81158b7fb73c40d --- /dev/null +++ b/parse/train/SkeuexBtDr/images/039f0a11f7dacaa0eb1f715a3e3c625c1d25855dc739f00e4c5ff547d8ff16f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d476209136d40930dece760423f1649995119a4f56c4d00e5840f92ddfbe1ef3 +size 6351 diff --git a/parse/train/SkeuexBtDr/images/075d2acb4fc47eb48f0b197bccb49a5fbff8d7c012a8222a5cad2d31d2fb6f23.jpg b/parse/train/SkeuexBtDr/images/075d2acb4fc47eb48f0b197bccb49a5fbff8d7c012a8222a5cad2d31d2fb6f23.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8389bd9871d654d7299d24018c152b58607857c --- /dev/null +++ b/parse/train/SkeuexBtDr/images/075d2acb4fc47eb48f0b197bccb49a5fbff8d7c012a8222a5cad2d31d2fb6f23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5970a8251c4e002665ff7e10ee9a1423230c44da8bc9f10a121da8f75414e82f +size 4972 diff --git a/parse/train/SkeuexBtDr/images/0bee8fc66817c5ed63229aa315fa08f871023ca0eab2b008c26fdfa5dda008f1.jpg b/parse/train/SkeuexBtDr/images/0bee8fc66817c5ed63229aa315fa08f871023ca0eab2b008c26fdfa5dda008f1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac4d7fcd7bdc9fea1c2282db9221219a8780a241 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/0bee8fc66817c5ed63229aa315fa08f871023ca0eab2b008c26fdfa5dda008f1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f53b9e19ef6e0c36245d5e181837f1feba7f06e46e5878b9bcfd3840a3c1dd +size 9521 diff --git a/parse/train/SkeuexBtDr/images/10be50a4308efe7ab8235fd073df591f15c8640529856c7683b3a7d93e014c7f.jpg b/parse/train/SkeuexBtDr/images/10be50a4308efe7ab8235fd073df591f15c8640529856c7683b3a7d93e014c7f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a47f27d42d5786949507c0b0382922f311799568 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/10be50a4308efe7ab8235fd073df591f15c8640529856c7683b3a7d93e014c7f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a6f554d35c92ff121aa4c9f2d2fc9d76a747d3cb07f49e9a6292621c35103d +size 25151 diff --git a/parse/train/SkeuexBtDr/images/210a81a403053cb9c38e1c9c075c6248a0028d593b67524fcf4579d8e3f4e65c.jpg b/parse/train/SkeuexBtDr/images/210a81a403053cb9c38e1c9c075c6248a0028d593b67524fcf4579d8e3f4e65c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe107790ca10cb4a2947c1a67d9da5fca9228b29 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/210a81a403053cb9c38e1c9c075c6248a0028d593b67524fcf4579d8e3f4e65c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca4a15b1c6aef303d76c6b803380a436e30f64cc923d21023acb7cd99d1178e +size 12987 diff --git a/parse/train/SkeuexBtDr/images/2d8594afc026a22469d6831247499adad3bfa371511445c1e60ec5c004bfeecd.jpg b/parse/train/SkeuexBtDr/images/2d8594afc026a22469d6831247499adad3bfa371511445c1e60ec5c004bfeecd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87a652af740ee943d76681b46896d37a3f6e5146 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/2d8594afc026a22469d6831247499adad3bfa371511445c1e60ec5c004bfeecd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:296c0989275310a406444e8d2877dcd43e4c865f05f38442d98ab8b7f6c118cf +size 3062 diff --git a/parse/train/SkeuexBtDr/images/3c211b4c9a737ee9c7a0dc8849efe223b8ddb98485ed1b9ff24e4be9061c6328.jpg b/parse/train/SkeuexBtDr/images/3c211b4c9a737ee9c7a0dc8849efe223b8ddb98485ed1b9ff24e4be9061c6328.jpg new file mode 100644 index 0000000000000000000000000000000000000000..34c2135785606b301ded3bd529fe10485882ceb6 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/3c211b4c9a737ee9c7a0dc8849efe223b8ddb98485ed1b9ff24e4be9061c6328.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a486fd836ff822d82cadc012700f9b1e960365dd3bdaec3148b19e2c799c4a5 +size 103084 diff --git a/parse/train/SkeuexBtDr/images/3f1e340fd8166e65fd40a979252d5e211d4accc10c724844694cd5cd94c0ad48.jpg b/parse/train/SkeuexBtDr/images/3f1e340fd8166e65fd40a979252d5e211d4accc10c724844694cd5cd94c0ad48.jpg new file mode 100644 index 0000000000000000000000000000000000000000..451a1695e61028b3bb04a7caab6fab83de666335 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/3f1e340fd8166e65fd40a979252d5e211d4accc10c724844694cd5cd94c0ad48.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13281184f3a63ca48976096ccec17f49213b02fcb106030559d8599a3a26c150 +size 15374 diff --git a/parse/train/SkeuexBtDr/images/4240aa06125132441471af3cf6aa33734a794b5e1e8c83b8feda7e821e9ff529.jpg b/parse/train/SkeuexBtDr/images/4240aa06125132441471af3cf6aa33734a794b5e1e8c83b8feda7e821e9ff529.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92d907b299c78ef1a481bfb13a102888b8993acc --- /dev/null +++ b/parse/train/SkeuexBtDr/images/4240aa06125132441471af3cf6aa33734a794b5e1e8c83b8feda7e821e9ff529.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7f231ee4e0d23c591e7dbde3ef26c5a7d7ceff28c07a3888ebbc947c81fe28 +size 11989 diff --git a/parse/train/SkeuexBtDr/images/47f18978431093c350172c9117b5361469005376b43849059d326d0bb63012a0.jpg b/parse/train/SkeuexBtDr/images/47f18978431093c350172c9117b5361469005376b43849059d326d0bb63012a0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f9383a1648b6d86ccb3d65a5c56979ef41315e4 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/47f18978431093c350172c9117b5361469005376b43849059d326d0bb63012a0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae923e1bf3c023d0d12a80ea1bbcb7908295f09491133ae79dfeab6eb174d356 +size 12942 diff --git a/parse/train/SkeuexBtDr/images/4ec3ccfee323ba0d1504c9565c231d12b97cd5db4fbd1724f5f9bb5b8fa89d32.jpg b/parse/train/SkeuexBtDr/images/4ec3ccfee323ba0d1504c9565c231d12b97cd5db4fbd1724f5f9bb5b8fa89d32.jpg new file mode 100644 index 0000000000000000000000000000000000000000..71b88e809b621d7cbc22e0a62e33fe7d34812b38 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/4ec3ccfee323ba0d1504c9565c231d12b97cd5db4fbd1724f5f9bb5b8fa89d32.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36bacc39a16a5334c2a5c898821bddb1808722203e3b6d33b59b428b16b93587 +size 15187 diff --git a/parse/train/SkeuexBtDr/images/50736c09f3494c0266934a15c8d0110e6d0552df39c95db6de142f2be4c7f513.jpg b/parse/train/SkeuexBtDr/images/50736c09f3494c0266934a15c8d0110e6d0552df39c95db6de142f2be4c7f513.jpg new file mode 100644 index 0000000000000000000000000000000000000000..caa2136d8c22f9dee41e618ea7811f6cd39c1dfc --- /dev/null +++ b/parse/train/SkeuexBtDr/images/50736c09f3494c0266934a15c8d0110e6d0552df39c95db6de142f2be4c7f513.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce183feb660e3d4fe524d566fee2958ce4d38d0ce5628e0054a2a47fe2111bd +size 21791 diff --git a/parse/train/SkeuexBtDr/images/54986f02ff8bc10159d000d4b092dbbce7370ee045250bcc02bf1b9eda8678a1.jpg b/parse/train/SkeuexBtDr/images/54986f02ff8bc10159d000d4b092dbbce7370ee045250bcc02bf1b9eda8678a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6014e3ac96956803b91861bbb3103cada1f707b5 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/54986f02ff8bc10159d000d4b092dbbce7370ee045250bcc02bf1b9eda8678a1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0efac6053f133d766413b025e0e87a41cefa3cfaf122e4a4cdd8121c8f4c5b +size 7529 diff --git a/parse/train/SkeuexBtDr/images/584be36d8515583a6fe5000ca5c6590e2941ba6bb2216917976e35f60db8d76a.jpg b/parse/train/SkeuexBtDr/images/584be36d8515583a6fe5000ca5c6590e2941ba6bb2216917976e35f60db8d76a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85ed8cf7f3f81cc8a89848e499ccdd9761ed0f79 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/584be36d8515583a6fe5000ca5c6590e2941ba6bb2216917976e35f60db8d76a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e264323b1f10445e30231c763809809904c91d13205e1dab08b96a5bacd4b77 +size 19993 diff --git a/parse/train/SkeuexBtDr/images/5ffe1d2de626c980c233022be353b30409d39301029ba4b4f8f8ecc4be02e398.jpg b/parse/train/SkeuexBtDr/images/5ffe1d2de626c980c233022be353b30409d39301029ba4b4f8f8ecc4be02e398.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2cde4d2f8ff4dc3c975c2f458d9d1cc826885859 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/5ffe1d2de626c980c233022be353b30409d39301029ba4b4f8f8ecc4be02e398.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9d9e8581092aeba6de981052d450b16c7d544d52755b4f914f0e68cc947fcc +size 45689 diff --git a/parse/train/SkeuexBtDr/images/6c0f013a25ae1ab01c2f57e431442eaa902f3294589baadd9dddc384b5b06141.jpg b/parse/train/SkeuexBtDr/images/6c0f013a25ae1ab01c2f57e431442eaa902f3294589baadd9dddc384b5b06141.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1c06f68f6a42d6a82d1b374df176e8ff461bf65 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/6c0f013a25ae1ab01c2f57e431442eaa902f3294589baadd9dddc384b5b06141.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717e13041430df582edc506a5e433fa295174cf4a006059ed17ba626ec664681 +size 21061 diff --git a/parse/train/SkeuexBtDr/images/75fb92728b9171471cb39b6ee19ef15eafe0b3d1cedd1e95bd04966a77d92c16.jpg b/parse/train/SkeuexBtDr/images/75fb92728b9171471cb39b6ee19ef15eafe0b3d1cedd1e95bd04966a77d92c16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a868592b2152cb532b1d6533fe9e2fdc0f3d7114 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/75fb92728b9171471cb39b6ee19ef15eafe0b3d1cedd1e95bd04966a77d92c16.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1209563aa4b1d79bef63fd4716fead03ae0bc30607203fcf0b1507c8a2666f8 +size 10710 diff --git a/parse/train/SkeuexBtDr/images/776dde9eb3433ac9ca4327d61306f3c3efbea7c026033579c85dd7f6370b8e71.jpg b/parse/train/SkeuexBtDr/images/776dde9eb3433ac9ca4327d61306f3c3efbea7c026033579c85dd7f6370b8e71.jpg new file mode 100644 index 0000000000000000000000000000000000000000..98486f7de31f9cd6d3f0be1bfef3d81df51da58b --- /dev/null +++ b/parse/train/SkeuexBtDr/images/776dde9eb3433ac9ca4327d61306f3c3efbea7c026033579c85dd7f6370b8e71.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00e4fe85ceeedfba7b594993ef1ce9fbf0249b1d307b86ab2e14500840f97065 +size 6460 diff --git a/parse/train/SkeuexBtDr/images/7a441a90130db173c681615fda37d08c60d39a5099c9c7d384514126cbfa76f3.jpg b/parse/train/SkeuexBtDr/images/7a441a90130db173c681615fda37d08c60d39a5099c9c7d384514126cbfa76f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d878d9da6ce354525b179c2a370a5a3796d18bd5 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/7a441a90130db173c681615fda37d08c60d39a5099c9c7d384514126cbfa76f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002adbd8f60c032a66a26eec4fa3723327ccfb7d6c04e096fcfdd47794e41896 +size 18369 diff --git a/parse/train/SkeuexBtDr/images/9e396c308e09cc85b575f4e6438de76e70468b6049646af64489c3b0c8ec47c2.jpg b/parse/train/SkeuexBtDr/images/9e396c308e09cc85b575f4e6438de76e70468b6049646af64489c3b0c8ec47c2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad42818d329d94f9fa196b4baa2d5948d459c9c4 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/9e396c308e09cc85b575f4e6438de76e70468b6049646af64489c3b0c8ec47c2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a45ae23ddc9700320ed23affbe8518b5bd0d8b40767d4d9bc28e3d5e7e156a +size 88717 diff --git a/parse/train/SkeuexBtDr/images/a256e7dc5fa7ce9bcd5c814419c7851d8613000cd76ff68c93d4ea3bd2137ca5.jpg b/parse/train/SkeuexBtDr/images/a256e7dc5fa7ce9bcd5c814419c7851d8613000cd76ff68c93d4ea3bd2137ca5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..838825b58ef633e52e48b6ab324ef8847703fd29 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/a256e7dc5fa7ce9bcd5c814419c7851d8613000cd76ff68c93d4ea3bd2137ca5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c14acd7cfd180dd5d37f24bd3c4348817025bf1e8c98f755efa02c10a46a15 +size 226536 diff --git a/parse/train/SkeuexBtDr/images/b1c37850be6bf74033f4a184a0ed4788238bd95261759560d8ffc15812d56451.jpg b/parse/train/SkeuexBtDr/images/b1c37850be6bf74033f4a184a0ed4788238bd95261759560d8ffc15812d56451.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf8865e1055d5aa70f54d95897bcd92ef0464321 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/b1c37850be6bf74033f4a184a0ed4788238bd95261759560d8ffc15812d56451.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8438064c33c8a1818a0dbf9272c927861e5a3d1930e7cf88848e16c6de518b +size 10979 diff --git a/parse/train/SkeuexBtDr/images/b51aafb8f189e21b2060b860615d5d7ed5d0fdcb6253f1c6d6428bfe759e5d2f.jpg b/parse/train/SkeuexBtDr/images/b51aafb8f189e21b2060b860615d5d7ed5d0fdcb6253f1c6d6428bfe759e5d2f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9a58ac055bb36015532c16aca6fc844abe313a7 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/b51aafb8f189e21b2060b860615d5d7ed5d0fdcb6253f1c6d6428bfe759e5d2f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb9e46893a89ee7916b420b0b7c612773cab1b0e521a7fbaf47ed5792873d8f3 +size 132330 diff --git a/parse/train/SkeuexBtDr/images/baebb560fd31d55d3a43f02488c7276ac34b46ecdc11b2d14123b6985f5374b7.jpg b/parse/train/SkeuexBtDr/images/baebb560fd31d55d3a43f02488c7276ac34b46ecdc11b2d14123b6985f5374b7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ea1b3ba1ab9eac5dc665894d2982a86a46a9990 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/baebb560fd31d55d3a43f02488c7276ac34b46ecdc11b2d14123b6985f5374b7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd8e3cdb6ae67005a204a9764744231a4adfc91804a24bc5815f088c2c90ba3 +size 9376 diff --git a/parse/train/SkeuexBtDr/images/c309182c6c4773ff41f4f7d3ebf0f9cee49640b29f1cda1dfbba8b6cff161ae5.jpg b/parse/train/SkeuexBtDr/images/c309182c6c4773ff41f4f7d3ebf0f9cee49640b29f1cda1dfbba8b6cff161ae5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..66b86f727870feff5d6807dd328c0c57f381a71f --- /dev/null +++ b/parse/train/SkeuexBtDr/images/c309182c6c4773ff41f4f7d3ebf0f9cee49640b29f1cda1dfbba8b6cff161ae5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33917b544a41811c1b08c445cac705f909ee01b75fd076a4d7ec30f2a40ef0ee +size 3576 diff --git a/parse/train/SkeuexBtDr/images/c899027b67e3f0d768208b033ccf27adc14db55af6234db442507f219b8e41a8.jpg b/parse/train/SkeuexBtDr/images/c899027b67e3f0d768208b033ccf27adc14db55af6234db442507f219b8e41a8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b468e876fcafdebf2448441835767b5db5d7457 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/c899027b67e3f0d768208b033ccf27adc14db55af6234db442507f219b8e41a8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bdf371cab216e6aac17cac4ff48ab7a46ecb8c75e92b646644b8afcba155dd9 +size 78204 diff --git a/parse/train/SkeuexBtDr/images/d137b6960ada523b3ff058534112c651f9a7853fc603404675deabe3b6e316a4.jpg b/parse/train/SkeuexBtDr/images/d137b6960ada523b3ff058534112c651f9a7853fc603404675deabe3b6e316a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..09e33a59d9878e5acd1ca21347758af1659c1812 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/d137b6960ada523b3ff058534112c651f9a7853fc603404675deabe3b6e316a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040654d485bb228b3189f7e4b11c587edbc6941ae878251c4ae0cb4bf3a2b797 +size 57613 diff --git a/parse/train/SkeuexBtDr/images/da1a5dece64c4e83b16fa357d829fd719d9d97f91bf9d323ba38fc0ecdf4853c.jpg b/parse/train/SkeuexBtDr/images/da1a5dece64c4e83b16fa357d829fd719d9d97f91bf9d323ba38fc0ecdf4853c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27a67f2fbd45adef82974104ca43660112a6dc44 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/da1a5dece64c4e83b16fa357d829fd719d9d97f91bf9d323ba38fc0ecdf4853c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc82a9361ab37dd0b7833275597f10505fabd862b667e122434b75aa48aa6ed9 +size 6090 diff --git a/parse/train/SkeuexBtDr/images/dde470bae80d42dccf73a192f9c14e6d2cf91680e8074b411e57abd87a71ef97.jpg b/parse/train/SkeuexBtDr/images/dde470bae80d42dccf73a192f9c14e6d2cf91680e8074b411e57abd87a71ef97.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1955d2a7246c84212d2d1bea6a4d1f31cbe343c6 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/dde470bae80d42dccf73a192f9c14e6d2cf91680e8074b411e57abd87a71ef97.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d6a484dd73acca5f07efa7034e791a0db1d3797d1280807c8c0fd4d013e5aa8 +size 15274 diff --git a/parse/train/SkeuexBtDr/images/eb0cf6838e6deaf30bb7e38a64a7119d14cc01a2deee3e286d071d6dc5afc384.jpg b/parse/train/SkeuexBtDr/images/eb0cf6838e6deaf30bb7e38a64a7119d14cc01a2deee3e286d071d6dc5afc384.jpg new file mode 100644 index 0000000000000000000000000000000000000000..792a4666ab9040a7af8f8280446dc541d6819a3e --- /dev/null +++ b/parse/train/SkeuexBtDr/images/eb0cf6838e6deaf30bb7e38a64a7119d14cc01a2deee3e286d071d6dc5afc384.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7facc1e851c349d1d5c438c5e9d34299077352f9244cea0cd4b98268b50d7d +size 22616 diff --git a/parse/train/SkeuexBtDr/images/f667b32d099b4b5e46f61d0de6b92b132022c7439367e6fc7da2070451313f9d.jpg b/parse/train/SkeuexBtDr/images/f667b32d099b4b5e46f61d0de6b92b132022c7439367e6fc7da2070451313f9d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a5d6f364e8b0fe2ad8296d2c8764d075e770293 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/f667b32d099b4b5e46f61d0de6b92b132022c7439367e6fc7da2070451313f9d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054289d774e9673a28ac0558113db9ed8ee5eb81d594065f0ea18e209ad9f79d +size 11176 diff --git a/parse/train/SkeuexBtDr/images/fdb2f77b8c41df79208dd58df792a9fddf6abd688a5252add99399713ca435ec.jpg b/parse/train/SkeuexBtDr/images/fdb2f77b8c41df79208dd58df792a9fddf6abd688a5252add99399713ca435ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aeec6b624e2ab2cb04f512d02674ee1ba248c721 --- /dev/null +++ b/parse/train/SkeuexBtDr/images/fdb2f77b8c41df79208dd58df792a9fddf6abd688a5252add99399713ca435ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbffd3116ccbc456e71707cbdc5efa3f5c643ca54ded80f85e738d713c98117 +size 8653 diff --git a/parse/train/mEdwVCRJuX4/mEdwVCRJuX4.md b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4.md new file mode 100644 index 0000000000000000000000000000000000000000..f5a6ad9f6754f53c774bfaef4688c9807586b172 --- /dev/null +++ b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4.md @@ -0,0 +1,401 @@ +# HETEROSKEDASTIC AND IMBALANCED DEEP LEARNING WITH ADAPTIVE REGULARIZATION + +Kaidi $\mathbf { C a o ^ { 1 } }$ , Yining Chen1, Junwei $\mathbf { L } \mathbf { u } ^ { 2 }$ , Nikos Arechiga3, Adrien Gaidon3, Tengyu Ma1 1Stanford University, 2Harvard University, 3Toyota Research Institute {kaidicao,cynnjjs,tengyuma}@stanford.edu + +# ABSTRACT + +Real-world large-scale datasets are heteroskedastic and imbalanced – labels have varying levels of uncertainty and label distributions are long-tailed. Heteroskedasticity and imbalance challenge deep learning algorithms due to the difficulty of distinguishing among mislabeled, ambiguous, and rare examples. Addressing heteroskedasticity and imbalance simultaneously is under-explored. We propose a data-dependent regularization technique for heteroskedastic datasets that regularizes different regions of the input space differently. Inspired by the theoretical derivation of the optimal regularization strength in a one-dimensional nonparametric classification setting, our approach adaptively regularizes the data points in higher-uncertainty, lower-density regions more heavily. We test our method on several benchmark tasks, including a real-world heteroskedastic and imbalanced dataset, WebVision. Our experiments corroborate our theory and demonstrate a significant improvement over other methods in noise-robust deep learning. + +# 1 INTRODUCTION + +In real-world machine learning applications, even well-curated training datasets have various types of heterogeneity. Two main types of heterogeneity are: (1) data imbalance: the input or label distribution often has a long-tailed density, and (2) heteroskedasticity: the labels given inputs have varying levels of uncertainties across subsets of data stemming from various sources such as the intrinsic ambiguity of the data or annotation errors. Many deep learning algorithms have been proposed for imbalanced datasets (e.g., see (Wang et al., 2017; Cao et al., 2019; Cui et al., 2019; Liu et al., 2019) and the reference therein). However, heteroskedasticity, a classical notion studied extensively in the statistical community (Pintore et al., 2006; Wang et al., 2013; Tibshirani et al., 2014), has so far been under-explored in deep learning. This paper focuses on addressing heteroskedasticity and its interaction with data imbalance in deep learning. + +Heteroskedasticity is often studied in regression analysis and refers to the property that the distribution of the error varies across inputs. In this work, we mostly focus on classification, though the developed technique also applies to regression. Here, heteroskedasticity reflects how the uncertainty in the conditional distribution $y \mid x$ , or the entropy of $y \mid x$ , varies as a function of $x$ . Real-world datasets are often heteroskedastic. For example, Li et al. (2017) shows that the WebVision dataset has a varying number of ambiguous or true noisy examples across classes.2 + +Conversely, we consider a dataset to be homoscedastic if every example is mislabeled with a fixed probably $\epsilon$ , as assumed by many prior theoretical and empirical works on label corruption (Ghosh et al., 2017; Han et al., 2018; Jiang et al., 2018; Mirzasoleiman et al., 2020). We note that varying uncertainty in $y \mid x$ can come from at least two sources: the intrinsic semantic ambiguity of the input, and the (data-dependent) mislabeling introduced by the annotation process. Our approach can handle both types of noisy examples in a unified way, but for the sake of comparisons with past methods, we call them “ambiguous examples” and “mislabeled examples” respectively, and refer to both of them as “noisy examples”. + +![](images/b0aa3f523002d1c7bc925b084339bea809fac9e5918ef2d25e1e376f5cd78fab.jpg) +Figure 1: Histogram of the distributions of losses on an imbalanced and noisy CIFAR-10 dataset. Clean but rare examples tend to have larger losses, similar to the noisy examples in frequent classes. + +![](images/9499897cf2f9e6c9f97933d2b6e3c3eb440e25eb54680fc3ee92050128d75b8b.jpg) +Figure 2: Real-world datasets have various sources of heterogeneity and it could be hard to distinguish one from another. They require mutuallyexclusive reweighting strategy, but they all benefit from stronger regularization. + +Overparameterized deep learning models tend to overfit more to the noisy examples (Arpit et al., 2017; Frénay & Verleysen, 2013; Zhang et al., 2016). To address this issue, a common approach is to detect noisy examples by selecting those with large training losses, and then remove them from the (re-)training process. However, an input’s training loss can also be big because it is rare or ambiguous (Hacohen & Weinshall, 2019; Wang et al., 2019), as shown in Figure 1. Noise-cleaning methods could fail to distinguish mislabeled from rare/ambiguous examples (see Section 3.1 for empirical proofs). Though dropping the former is desirable, dropping the latter loses important information. Another popular approach is reweighting methods that reduce the contribution of noisy examples in optimization. However, failing to distinguish between mislabeled and rare/ambiguous examples makes the decision of the weights tricky – mislabeled examples require small weights, whereas rare / ambiguous examples benefit from larger weights (Cao et al., 2019; Shu et al., 2019). + +We propose a regularization method that deals with noisy and rare examples in a unified way. We observe that mislabeled, ambiguous, and rare examples all benefit from stronger regularization (Hu et al., 2020; Cao et al., 2019). We apply a Lipschitz regularizer (Wei & Ma, 2019a;b) with varying regularization strength depending on the particular data point. Through theoretical analysis in the one-dimensional setting, we derive the optimal regularization strength for each training example. The optimal strength is larger for rarer and noisier examples. Our proposed algorithm, heteroskedastic adaptive regularization (HAR), first estimates the noise level and density of each example, and then optimizes a Lipschitz-regularized objective with input-dependent regularization with strength provided by the theoretical formula. + +In summary, our main contributions are: (i) we propose to learn heteroskedastic imbalanced datasets under a unified framework, and theoretically study the optimal regularization strength on onedimensional data. (ii) we propose an algorithm, heteroskedastic adaptive regularization (HAR), which applies stronger regularization to data points with high uncertainty and low density. (iii) we experimentally show that HAR achieves significant improvements over other noise-robust deep learning methods on simulated vision and language datasets with controllable degrees of data noise and data imbalance, as well as a real-world heteroskedastic and imbalanced dataset, WebVision. + +# 2 ADAPTIVE REGULARIZATION FOR HETEROSKEDASTIC DATASETS + +# 2.1 BACKGROUNDS + +We first introduce general nonparametric tools that we use in our analysis, and review the dependency of optimal regularization strength on the sample size and noise level. + +Over-parameterized neural networks as nonparametric methods. We use nonparametric method as a surrogate for neural networks because they have been shown to be closely related. Recent work (Savarese et al., 2019) shows that the minimum norm two-layer ReLU network that fits + +![](images/9f6b9f919811d48d690fed50dff8093090a7d6a6528fc0487af6d4f5ee64ac11.jpg) +Figure 3: A one-dimensional example with a three-layer neural network in heteroskedastic and imbalanced regression setting. The curve in blue is the underlying ground truth and the dots are observations with heteroskedastic noise. This example shows that uniformly weak regularization overfits on noisy and rare data (on the right half), whereas uniformly strong regularization causes underfitting on the frequent and oscillating data (on the left half). The adaptive regularization does not underfit the oscillating data but still denoise the noisy data. We note that standard nonparametric methods such as cubic spline do not work here because they also use uniform regularization. + +the training data is in fact a linear spline interpolation. Parhi & Nowak (2019) extend this result to a broader family of neural networks with a broader family of activations. + +Given a training dataset $\{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ , nonparametric method with penalty works as follows. Let $\mathcal { F } : \mathbb { R } \mathbb { R }$ be a twice-differentiable model family. We aim to fit the data with smoothness penalty + +$$ +\operatorname* { m i n } _ { f } { \ } { \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } \ell ( f ( x _ { i } ) , y _ { i } ) + \lambda \int ( f ^ { \prime } ( x ) ) ^ { 2 } d x +$$ + +Lipschitz regularization for neural networks. Lipschitz regularization has been shown to be effective for deep neural networks as well. Wei & Ma (2019a) proves a generalization bound of neural networks dependent on the Lipschitzness of each layer with respect to all intermediate layers on the training data, and show that, empirically, regularizing the Lipschitzness improve the generalization. Sokolic et al. ´ (2017) shows similar results in data-limited settings. In Section 2.3, we extend the Lipschitz regularization technique to heteroskedastic setting. + +Regularization strength as a function of noise level and sample size. Finally, we briefly review existing theoretical insights on the optimal choice of regularization strength. Generally, the optimal regularization strength for a given model family increases with the label noise level and decreases in the sample size. As a simple example, consider linear ridge regression $\begin{array} { r } { \operatorname* { m i n } _ { \theta } \frac { 1 } { n } \sum _ { i = 1 } ^ { n } { ( x _ { i } ^ { \top } \theta - y _ { i } ) ^ { 2 } } + } \end{array}$ $\lambda \| \theta \| ^ { 2 }$ , where $x _ { i }$ , $\theta \in \mathbb { R } ^ { d }$ and $y _ { i } \in \mathbb { R }$ . We assume $y _ { i } = x _ { i } ^ { \top } \theta ^ { * } + \xi$ for some ground truth parameter $\theta ^ { * }$ , and $\Dot { \xi } \sim \mathcal { N } ( 0 , \sigma ^ { 2 } )$ . Then the optimal regularization strength $\lambda _ { o p t } = d \sigma ^ { 2 } / \bar { n } \| \theta ^ { * } \| _ { 2 } ^ { 2 }$ . Results of similar nature can also be found in nonparametric statistics (Wang et al., 2013; Tibshirani et al., 2014). + +# 2.2 HETEROSKEDASTIC NONPARAMETRIC CLASSIFICATION ON ONE-DIMENSIONAL DATA + +We consider a one-dimensional binary classification problem where $\mathcal { X } = [ 0 , 1 ] \subset \mathbb { R }$ and $\mathcal { V } = \{ - 1 , 1 \}$ We assume $Y$ given $X$ follows a logistic model with ground-truth function $f ^ { \star }$ , i.e. + +$$ +\operatorname* { P r } \left[ Y = y | X = x \right] = { \frac { 1 } { 1 + \exp ( - y f ^ { \star } ( x ) ) } } . +$$ + +The training objective is cross-entropy loss plus Lipschitz regularization, i.e. + +$$ +\widehat { f } = \mathrm { a r g m i n } _ { f } \widehat { L } ( f ) \triangleq \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \ell ( f ( x _ { i } ) , y _ { i } ) + \lambda \int _ { 0 } ^ { 1 } \rho ( x ) ( f ^ { \prime } ( x ) ) ^ { 2 } d x , +$$ + +where $\ell ( a , y ) = - \log ( 1 + \exp ( - y a ) )$ , and $\rho ( x )$ is a smoothing parameter as a function of the noise level and density of $x$ . Let $I ( x )$ be the fisher information matrix conditioned on the input, i.e. $I ( x ) \triangleq \mathbb { E } [ \nabla _ { a } ^ { 2 } \ell ( a , Y ) | _ { a = f ^ { \star } ( X ) } | X = x ]$ . When $( X , Y )$ follows the logistic model in equation 2, + +$$ +I ( x ) = { \frac { 1 } { ( 1 + \exp ( f ^ { \star } ( x ) ) ( 1 + \exp ( - f ^ { \star } ( x ) ) } } = \mathrm { V a r } ( Y | X = x ) . +$$ + +Therefore, $I ( x )$ captures the aleatoric uncertainty of $x$ . For example, when $Y$ is deterministic conditioned on $X = x$ , we have $I ( x ) = 0$ , indicating perfect certainty. + +Define the test metric as the mean-squared-error on the test set $\{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ , i.e.,1 + +$$ +\operatorname { M S E } ( \hat { f } ) \triangleq \operatorname * { \mathbb { E } } _ { \{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n } } \int _ { 0 } ^ { 1 } ( \hat { f } ( t ) - f ^ { \star } ( t ) ) ^ { 2 } d t +$$ + +Our main goal is to derive the optimal choice of $\rho ( x )$ that minimizes the MSE. We start with an analytical characterization of the test error. Let $W _ { 2 } ^ { 2 } = \{ f ^ { \prime }$ is absolute continuous and $f ^ { \prime \prime } \in L ^ { 2 } [ 0 , 1 ] \}$ . We denote the density of $X$ as $q ( x )$ . The following theorem analytically computes the MSE under the regularization strength $\rho ( \cdot )$ , building upon (Wang et al., 2013) for regression problems. The proof of the Theorem is deferred to Appendix A. + +Theorem 1. Assume that $f ^ { \star } , q , I \in W _ { 2 } ^ { 2 }$ . Let $r ( t ) = - 1 / ( q ( t ) I ( t ) )$ and $\begin{array} { r } { L _ { 0 } = \int _ { - \infty } ^ { \infty } \frac { 1 } { 4 } \exp ( - 2 | t | ) d t } \end{array}$ If we choose $\lambda = C _ { 0 } n ^ { - 2 / 5 }$ for some constant $C _ { 0 } > 0$ , the asymptotic mean squared error is + +$$ +\operatorname* { l i m } _ { n \to \infty } M S E ( \hat { f } ) = C _ { n } \int _ { 0 } ^ { 1 } \lambda ^ { 2 } r ^ { 2 } ( t ) \left[ \frac { d } { d t } ( \rho ( t ) ( f ^ { * } ) ^ { \prime } ( t ) ) \right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \rho ( t ) ^ { - 1 / 2 } d t +$$ + +in probability, where $C _ { n }$ is a scalar that only depends on $n$ + +Using the analytical formula of the test error above, we want to derive an approximately optimal choice of $\rho ( x )$ . A precise computation is infeasible, so we restrict ourselves to consider only $\rho ( x )$ that is constant within groups of examples. We introduce an additional structure – we assume the data can be divided into $k$ groups $[ a _ { 0 } , a _ { 1 } ) , \bar { [ } a _ { 1 } , a _ { 2 } ) , \cdot \cdot \cdot , [ a _ { k - 1 } , a _ { k } )$ . Each group $[ a _ { j } , a _ { j + 1 } )$ consists of an interval of data with approximately the same aleatoric uncertainty. We approximate $\rho ( t )$ is constant on each of the group $[ a _ { i } , a _ { i + 1 } )$ with value $\rho _ { i }$ . Plugging this piece-wise constant $\rho$ into the asymptotic MSE in Theorem 1, we obtain + +$$ +\underset { n \infty } { \operatorname* { l i m } } \mathrm { M S E } ( \hat { f } ) = \sum _ { j } [ \rho _ { j } ^ { 2 } \int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) [ \frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \star } ( t ) ] ^ { 2 } d t + \rho _ { j } ^ { - 1 / 2 } L _ { 0 } \int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 1 / 2 } ( t ) d t ] . +$$ + +Minimizing the above formula over $\rho _ { 1 } , \ldots , \rho _ { k }$ separately, we derive the optimal weights, $\rho _ { j } =$ $\left[ \frac { L _ { 0 } \int _ { a _ { j } } ^ { a _ { j + 1 } } r ( t ) ^ { 1 / 2 } d t } { 4 \int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) \left[ \frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \star } ( t ) \right] ^ { 2 } d t } \right] ^ { 2 / }$ 5 . In practice, we do not know $f ^ { \star }$ and $q ( x )$ , so we make the following simplifications. We assume that $q ( t )$ and $I ( t )$ are constant on each interval $[ a _ { j } , a _ { j + 1 } ]$ . In other words, we assume that $q ( t ) = q _ { j }$ and $I ( t ) = I _ { j }$ for all $t \in [ a _ { j } , a _ { j + 1 } ]$ . We further assume that $\textstyle { \frac { d ^ { 2 } } { d t ^ { 2 } } } f ^ { \star } ( t )$ is close to a constant on the entire space, because estimating the curvature in high dimension is difficult. This simplification yields $\rho _ { j } \propto \left[ \frac { q _ { j } ^ { - 1 / 2 } I _ { j } ^ { - 1 / 2 } } { q _ { j } ^ { - 2 } I _ { j } ^ { - 2 } } \right] ^ { 2 / 5 } = q _ { j } ^ { 3 / 5 } I _ { j } ^ { 3 / 5 }$ q3/5j I3/5j . We find the simplification works well in practice. + +Adaptive regularization with importance sampling. It is practically infeasible to implement the integration in equation 3 for high-dimensional data. We use importance sampling to approximate the integral: + +$$ +{ \mathrm { m i n i m i z e } } _ { f } L ( f ) \triangleq { \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } \ell ( f ( x _ { i } ) , y _ { i } ) + \lambda \sum _ { i = 1 } ^ { n } \tau _ { i } f ^ { \prime } ( x _ { i } ) ^ { 2 } +$$ + +Suppose $x _ { i } \in [ a _ { j } , a _ { j + 1 } )$ , we have that $\tau _ { i }$ should satisfy that $\tau _ { i } q _ { j } = \rho _ { j }$ so that the expectation of the regularization term in equation 5 is equal to that in equation 3. Hence, + +$$ +\tau _ { i } = I _ { j } ^ { 3 / 5 } q _ { j } ^ { - 2 / 5 } = I ( x _ { i } ) ^ { 3 / 5 } q ( x _ { i } ) ^ { - 2 / 5 } . +$$ + +Adaptive regularization for multi-class classification and regression. In fact, the proof of Theorem 1 is proved for general loss $\ell ( a , y )$ . Therefore, we can directly generalize it to multiclass classification and regression problems. For a regression problem, $\ell ( a , y )$ is the square loss: $\ell ( y , a ) = 0 . 5 ( y - a ) ^ { 2 }$ , the Fisher information $I ( x ) = 1$ . Therefore, for a regression problem, we can choose regularization weight $\tau _ { i } = q ( x _ { i } ) ^ { - 2 / 5 }$ . + +We heuristically extend the Lipschitz regularization technique discussed in Section 2.2 from nonparametric models to over-parameterized deep neural networks. Let $( x , y )$ be an example and $f _ { \theta }$ be an $r$ -layer neural network. We denote by $h ^ { ( j ) }$ the $j$ -th hidden layer of the network, by $\begin{array} { r } { \dot { J } ^ { ( j ) } ( x ) \triangleq \frac { \hat { \partial } } { \partial h ^ { ( j ) } } \mathcal { L } ( f ( x ) , y ) } \end{array}$ , i.e., the Jacobian of the loss w.r.t $h ^ { ( j ) }$ . We replace the regularization term $f ^ { \prime } ( x ) ^ { 2 }$ in equation 5 by $\begin{array} { r } { R ( x ) = { \left( \sum _ { j = 1 } ^ { r } | | J ^ { ( j ) } ( x ) | | _ { F } ^ { 2 } \right) } ^ { 1 / 2 } } \end{array}$ , which was proposed by (Wei & Ma, 2019a). As a proof of concept, we visualize the behavior of our algorithm in Figure 3, where we observe that the rare and noisy examples have significantly improved error due to stronger regularization. In contrast, a uniform regularization either overfits or underfits different subsets. + +Note that the differences from the 1-D case include the following three aspects. 1. The derivative is taken w.r.t to all the hidden layers for deep models, which has been shown to have superior generalization guarantees for neural networks by (Wei & Ma, 2019a;b). 2. An additional square root is taken in computing $R ( x )$ . This modified version may have milder curvature and be easier to tune. 3. We take the derivative of the loss instead of the derivative of the model, which outputs $k$ numbers for multi-class classification. This is because the derivative of the model requires $k$ times more time to compute. The regularized training objective is consequently + +$$ +\mathrm { m i n i m i z e } _ { f } L ( f ) \triangleq \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \left( \ell ( f ( x _ { i } ) , y _ { i } ) + \lambda \tau _ { i } R ( x _ { i } ) \right) , +$$ + +where $\tau _ { i }$ is chosen to be $\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }$ following the formula equation 5 in Section 2.2 and $\lambda$ is a hyperparameter to control the overall scale of the regularization strength. We note that we do not expect this choice of $\tau _ { i }$ to be optimal for the high-dimensional case with all the modifications above – the optimal choice does depend on the nuances. However, we also observe that the empirical performance is not sensitive to the form of $\tau$ as long as it’s increasing in $I ( x )$ and decreasing in $q ( x )$ . That is, the more uncertain or rare an example is, the stronger regularization should be applied. + +In order to estimate the relative regularization strength $\tau _ { i }$ , the key difficulty lies in the estimation of uncertainty $I ( x )$ . As in the 1-D setting, we divide the examples into $k$ groups $G _ { 1 } , \ldots , G _ { k }$ (e.g., each group can correspond to a class), and estimate the uncertainty on each group. In the binary setting, $I ( x ) = \mathrm { \mathrm { V a r } } ( { \bar { Y } } | X = x ) = \operatorname* { P r } [ Y = 1 \mid X ] \cdot \operatorname* { P r } [ Y = 0 \ { \bar { | } } \ X ]$ can be approximated by $\begin{array} { r } { \tilde { I } ( x ) = 1 - \operatorname* { m a x } _ { k \in \{ 0 , 1 \} } \operatorname* { P r } [ Y = k \mid X = x ] } \end{array}$ up to a factor of at most 2. We use the same formula for multi-class setting as the approximation of the uncertainty. (As a sanity check, when $Y$ is concentrated on a single outcome, the uncertainty is 0.) Note that $\tilde { I } ( \stackrel { \cdot } { x } )$ is essentially the minimum possible error of any deterministic prediction on the data point $x$ . Assume that we have a sufficiently accurate pre-trained model, we can use its validation error to estimate $\tilde { I } ( x )$ : + +Then for all $x \in G _ { j }$ , we estimate $q ( x )$ and $I ( x )$ by $\forall x \in G _ { j } , q ( x ) \propto | G _ { j } | , I$ $I ( x ) \propto$ average validation error of a pre-trained model $f _ { \tilde { \theta } }$ on $G _ { j }$ + +The whole training pipeline is summarized in Algorithm 1. + +# Algorithm 1 Heteroskedastic Adaptive Regularization (HAR) + +Require: Dataset $\mathcal { D } = \{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ . A parameterized model $f _ { \theta }$ +1: Split training set $\mathcal { D }$ into $\mathcal { D } _ { \mathrm { t r a i n } }$ and $\mathcal { D } _ { \mathrm { v a l } }$ +2: $f _ { \tilde { \theta } } \gets$ Standard SGD Training on $\mathcal { D } _ { \mathrm { t r a i n } }$ +3: Estimate $I ( x ) , q ( x )$ with equation 7 using $f _ { \tilde { \theta } }$ on $\mathcal { D } _ { \mathrm { v a l } }$ , and compute $\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }$ +4: +5: Initialize the model parameters $\theta$ randomly +6: $f _ { \boldsymbol { \theta } } \gets \mathsf { S G D }$ with the regularized objective as in equation 6 on the full dataset $\mathcal { D }$ + +# 3 EXPERIMENTS + +We experimentally show that our proposed algorithm HAR(Algorithm 1) improves the test performance of the noisier and rarer groups of examples (by stronger regularization) without negatively affecting the training and test performance of the other groups. We evaluate our algorithms on three vision datasets and one NLP dataset: CIFAR-10 and CIFAR-100 (Krizhevsky et al., 2009), IMDB-review (Maas et al., 2011) (see Appendix C.1), and WebVision (Li et al., 2017), a real-world heteroskedastic and imbalanced dataset. Please refer to Appendix B for low-level implementation details. + +Baselines. We compare our proposed HAR with the following baselines. The simplest one is (1) Empirical risk minimization (ERM): the vanilla cross-entropy loss with all examples having the same weights of losses. We select two representatives from the noise-cleaning line of approach. (2) Co-teaching (Han et al., 2018): two deep networks are trained simultaneously. Each network aims to identify clean data points that have small losses and use them to guide the training of the other network. (3) INCV (Chen et al., 2019): it extends Co-teacing to an interative version to estimate the noise ratio and select data. We consider three representatives from the reweighting-based methods, including two that learn the weighting using meta-learning. (4) MentorNet (Jiang et al., 2018): it pretrains a teacher network that outputs weights for examples that are used to train the student network with reweighting. (5) L2RW (Ren et al., 2018): it directly optimizes weights of each example in the training set by minimizing its corresponding loss on a small meta validation set. (6) MW-Net (Shu et al., 2019): it extends L2RW by explicitly defining a weighting function which depends only on the loss of the example. We also compare against two representatives from the robust loss function. (7) GCE (Zhang & Sabuncu, 2018): it generalizes mean average error and cross-entropy loss to obtain a new loss function. (8) DMI ( $\mathrm { X u }$ et al., 2019): it designs a new loss function based on generalized mutual information. In addition, as an essential ablation study, we consider vanilla uniform regularization. (9) Unif-reg: we apply the Jacobian regularizer on all examples with equal strength, and tune the strength to get the best possible validation accuracy. + +# 3.1 SIMULATING HETEROSKEDASTIC AND IMBALANCED DATASETS ON CIFAR + +Setting. Unlike previous works that test on uniform random or asymmetric noise, which is often not the case in reality, in this paper we test our method on more realistic noisy settings, as suggested by Patrini et al. (2017); Zhang & Sabuncu (2018). In order to simulate heteroskedasticity, we only corrupt semantically-similar classes. For CIFAR-10, we exchange $40 \%$ of the labels between classes ‘cat’ and ‘dog’, and between ‘truck’ and ‘automobile’. CIFAR-100 has 100 classes grouped into 20 super classes. For each class of the 5 classes under the super class ‘vehicles $_ { 1 } ,$ and ‘vehicles $_ { 2 } \cdot$ , we corrupt the labels with $40 \%$ probability uniformly randomly to the rest of four classes under the same super class. As a result, the 10 classes under super class ‘vehicle $_ { 1 } ,$ and ‘vehicle $_ { 2 } \cdot$ have high label noise level and the corruption are only within the same super class. Heteroskedasticity of the labels and imbalance of the inputs commonly coexist in the real world settings. HAR can take both of them into account. To understand the challenge imposed by the entanglements of heteroskedasticity and imbalance, and compare HAR with the aforementioned baselines, we inject data imbalance concurrently with the heteroskedastic noise. We remove samples from the corrupted classes to simulate the most difficult scenario — the rare and noisy groups overfit significantly. (A more benign interaction between the noises and imbalance is that the rare classes have lower noise level, we defer it to Appendix C.3.) We use the imbalance ratio to denote the frequency ratio between the frequent (and clean) classes to the rare (and corrupted) classes. We consider imbalance ratio to be 10 and 100. + +Result. Table 1 summarizes the results. Since examples from rare classes tend to have larger training and validation loss regardless of whether the labels are correct or not, noise-cleaning based methods might drop excessive examples with correct labels. We examined the noise ratio of dropped samples for INCV under the setting of imbalance ratio equals 10. Among all dropped examples, there is only $1 9 . 2 \%$ of true noise examples. In addition, the rare class examples selected still have $2 9 . 8 \%$ of label noise. This explains that the significant decrease of accuracies of Co-teaching and INCV on corrupted and rare classes. Reweighting-based methods tend to suffer from the loss of accuracy in other more frequent classes, which is aligned with the findings in Cao et al. (2019). While the aforementioned baselines struggle to deal with heteroskedasticity and imbalance together, HAR is able to put them under the same regularization framework and achieve significant improvements. Notably, HAR also shows improvement over uniform regularization with optimally tuned strength. This clearly demonstrates the importance of introducing adaptive regularization among all examples for a better trade-off. A more detailed ablation study on the trade-off between training accuracy and validation accuracy can be found in Section 3.3. + +Table 1: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and imbalanced CIFAR-10. HAR significantly improves noisy and rare classes, while keeping the accuracy on other classes almost unaffected. + +
Imbalance ratio Method10100
Noisy&Rare Cls.Clean Cls.Noisy&Rare Cls.Clean Cls.
ERM52.9 ±1.294.4 ± 0.118.9 ± 1.094.2 ± 0.1
Co-teaching30.2 ± 2.388.9± 0.315.4± 2.886.4± 0.7
INCV48.9 ± 1.794.0± 0.225.8 ± 1.893.8 ± 0.2
MentorNet54.1 ± 1.090.3 ± 0.528.3 ± 1.590.2 ±0.4
L2RW44.3 ± 2.090.1± 0.531.2 ± 1.989.7±0.7
MW-Net55.4 ± 1.191.7 ± 0.535.6 ± 1.692.3 ± 0.5
GCE48.2±0.691.6 ± 0.314.1 ± 2.091.7 ± 0.4
DMI44.7 ± 2.390.7 ±0.814.0 ± 2.191.8 ± 0.6
Unif-reg (optimal)53.9 ± 0.992.1± 0.236.7 ± 1.092.4± 0.3
Ours (HAR)63.5 ± 0.894.3 ± 0.242.4±0.794.0±0.2
+ +# 3.2 ABLATION STUDY ON CIFAR + +We disentangle the problem setting to show the effectiveness of our unified framework. + +Simulating heteroskedastic noise on CIFAR. We study the uncertainty part of HAR by testing under the setting with only heteroskedastic noise. The type of noise injection is the same as Section 3.1. + +We report the top-1 validation accuracy of various methods in Table 2. Aligned with our analysis in Section 4, we observe that both noise-cleaning and reweighting based methods don’t get a comparable accuracy on noisy classes with applying strong regularization $\lambda = 0 . 1$ ) under this heteroskedastic setting. We observe the behavior that too strong regularization impede the model from fitting informative samples, thus it could lead to a decrease on clean classes’ accuracy. On the contrary, too weak regularization leads to overfitting the noisy examples thus the accuracy on noisy classes do not reach the optimal. + +Interestingly, we find that even the well-studied CIFAR-100 dataset has intrinsic heteroskedasticity and HAR can improve over uniform regularization to some extent. Please refer to Appendix C.2 for the results on CIFAR-100 and Appendix C.1 for results on IMDB-review. + +Table 2: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10 and CIFAR-100 for the noisy classes and the clean classes. + +
Dataset MethodCIFAR-10CIFAR-100
Avg. Noisy Cls.Avg. Clean Cls.Avg. Noisy Cls.Avg. Clean Cls.
ERM68.6±0.293.6±0.265.3 ± 0.367.8 ± 0.2
Co-teaching64.7 ± 0.489.1± 0.359.8 ± 0.465.3± 0.3
INCV76.7 ± 0.693.0±0.266.2±0.368.6 ±0.2
MentorNet71.1 ± 0.493.7± 0.265.9 ± 0.367.5 ± 0.3
L2RW70.1± 0.392.5 ± 0.365.1± 0.567.0± 0.3
MW-Net75.0± 0.394.4± 0.265.7 ± 0.369.1± 0.2
GCE62.6 ±1.190.2±0.261.2 ±0.666.9 ±0.2
DMI73.2 ± 0.790.8 ± 0.264.8 ± 0.567.1 ± 0.2
Unif-reg (入= 0.1)77.5 ± 0.692.3± 0.269.3 ± 0.566.6 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1±0.268.5 ± 0.368.6 ±0.2
Ours (HAR)80.7 ± 0.394.5 ± 0.274.2 ± 0.369.3±0.2
+ +Simulating data imbalance on CIFAR. We study the density part of HAR by testing under the setting with only data imbalance. We follow the same setting as Cao et al. (2019) to create imbalanced CIFAR. Long-tailed imbalance follows an exponential decay in sample sizes across different classes. For step imbalance setting, all rare classes have the same sample size, as do all frequent classes. Our approach achieves better results than LDAM-DRW and is comparable to recent state-of-the-art methods under the imbalanced setting. + +Table 3: Top-1 validation errors of ResNet-32 on imbalanced CIFAR-10 and CIFAR-100. + +
DatasetImbalanced CIFAR-10Imbalanced CIFAR-100
Imbalance Typelong-tailedsteplong-tailedstep
Imbalance Ratio10010100101001010010
ERM29.6413.6136.7017.5061.6844.3061.4545.37
Focal29.6213.3436.0916.3661.5944.2261.4346.54
CB Focal25.4312.9039.7316.5463.9842.0180.2449.98
LDAM-DRW22.9711.8423.0812.1957.9641.2954.6440.54
BBN (Zhou et al., 2020)20.1811.6821.6411.9957.4440.8857.4440.36
HAR-DRW20.4610.6220.2711.5855.3538.9851.7337.54
+ +Table 4: Validation accuracy of ResNet-50 when tuning the regularization strength on mini WebVision. HAR stands out of the trade-off constraint of fitting and generalization. + +
Train AccVal Acc
Reg StrengthTop1Top5Top1Top 5
069.0188.6459.4080.84
Unif-reg (入= 0.01)68.9688.5464.3286.11
Unif-reg (λ= 0.02)67.0287.5164.4085.92
Unif-reg (入= 0.05)65.1186.3365.8086.84
Unif-reg (λ = 0.1)63.3584.9865.0486.56
Adaptive (HAR)69.1288.4169.2088.96
+ +# 3.3 EVALUATION ON WEBVISION WITH REAL-WORLD HETEROGENEITY + +WebVision (Li et al., 2017) contains 2.4 million images crawled from Google and Flickr using 1,000 labels shared with the ImageNet dataset. Its training set is both heteroskedastic and imbalanced (detailed statistics can be found in (Li et al., 2017)), and it is considered as a popular benchmark for noise robust learning. As the full dataset is very large, we follow (Jiang et al., 2018) to use a mini version, which contains the first 50 classes of the Google subset of the data. Following the standard protocol (Jiang et al., 2018), we test the trained model on the WebVision validation set and the ImageNet validation set. We use ResNet-50 for ablation study and InceptionResNet-v2 for a fair comparison with the baselines. We report results comparing against other state-of-the-art approaches in Table 5. Strikingly, HAR achieves significant improvement. + +Ablation study. We demonstrate the trade-off between training accuracy and validation accuracy on mini WebVision with various uniform regularization strength and HAR in Table 4. It’s evident that when we gradually increase the overall uniform regularization strength, the training accuracy continues to decrease, and the validation accuracy reaches its peak at 5e-2. While a strong regularization could improve generalization, it reduces deep networks’ capacity to fit the training data. However, with our proposed HAR, we only enforce strong regularization on a subset so that we improve the generalization on noisier groups while maintaining the overall training accuracy not affected. + +# 4 RELATED WORK + +Our work is closely related to the following methods and directions. + +Noise-cleaning. The key idea of noise-cleaning is to identify and remove (or re-label) examples with wrong annotations. The general procedure for identifying mislabeled instances has a long history (Brodley & Friedl, 1999; Wilson & Martinez, 1997; Zhao & Nishida, 1995). Some recent works tailored this idea for deep neural networks. Veit et al. (2017) trains a label cleaning network on a small set of data with clean labels, and uses this model to identify noises in large datasets. To circumvent the requirement of a clean subset, Malach & Shalev-Shwartz (2017) train two networks simultaneously and perform update steps only in case of disagreement. Similarly, in co-teaching (Han et al., 2018), each network selects a certain number of small-loss samples and feeds them to its peer network. Chen et al. (2019) further extends the co-training strategy and comes up with an iterative version that performs even better empirically. Recently Song et al. (2020) discovers that it is not necessary to maintain two networks. Removing examples whose training loss exceeds a certain threshold before learning rate decay can also get robust performance. + +Table 5: Validation accuracy of InceptionResNet-v2 on WebVision and ImageNet validation sets. HAR demonstrates significant improvements over the previous state-of-the-arts. + +
Train Test Methodmini WebVisionfull WebVision
WebVisionImageNetWebVisionImageNet
Top 1Top5Top 1Top 5Top 1Top 5Top 1Top 5
ERM62.580.858.581.869.787.062.983.6
Co-teaching63.685.261.584.71-11
INCV65.285.361.685.0--1-
MentorNet63.081.457.879.970.888.062.583.0
Ours (HAR)75.590.770.390.075.090.667.186.7
+ +Reweighting. Reweighting training data has shown its effectiveness on noisy data (Liu & Tao, 2015). Its challenge lies in the difficulty of weights estimation. Ren et al. (2018) proposes a meta-learning algorithm to assign weights to training examples based on its gradient direction with the one on a clean validation set. Recently, Shu et al. (2019) proposes to learn an explicit loss-weight function to mitigate the optimizing issue of (Ren et al., 2018). Another line of work resorts to curriculum learning by either designing an easy-to-hard strategy of training (Guo et al., 2018) or introducing an extra network (Jiang et al., 2018) to assign weights. + +Noise-cleaning and reweighting methods usually rely on the empirical loss to determine if a sample is noisy. However, when the dataset is heteroskedastic, each example’s training/validation loss no longer correlates well with its noise level. In such cases, we argue that changing the strength of regularization is a more conservative adaption and suffers less from uncertain estimation, compared to changing the weights of losses (Please refer to Section C.4 for empirical justifications). + +Robust loss function. Another line of works has attempted to design robust loss functions (Ghosh et al., 2017; Xu et al., 2019; Zhang & Sabuncu, 2018; Patrini et al., 2017; Cheng et al., 2017; Menon et al., 2016). They usually rely on prior assumption about latent transition matrix that might not hold in practice. On the contrary, we focus on more realistic settings. + +Regularization. Regularization based techniques have also been explored to combat label noise. Li et al. (2019) proves that SGD with early stopping is robust to label noise. Hu et al. (2020) provides theoretical analysis of two additional regularization methods. While these methods consider a uniform regularization on all training examples, our work emphasizes on adjusting the weights of regularizers in search of a better generalization than uniform assignment. + +# 5 CONCLUSION + +We propose a unified framework (HAR) for training on heteroskedastic and imbalanced datasets. Our method achieves significant improvements over the previous state-of-the-arts on a variety of benchmark vision and language tasks. We provide theoretical results as well as empirical justifications by showing that ambiguous, mislabeled, and rare examples all benefit from stronger regularization. We further provide the formula for optimal weighting of regularization. Heteroskedasticity of datasets is a fascinating direction worth exploring, and it is an important step towards a better understanding of real-world scenarios in the wild. + +# ACKNOWLEDGEMENTS + +Toyota Research Institute ("TRI") provided funds and computational resources to assist the authors with their research but this article solely reflects the opinions and conclusions of its authors and not TRI or any other Toyota entity. YC is supported by Stanford Graduate Fellowship. TM acknowledges support of Google Faculty Award. The work is also partially supported by SDSI and SAIL at Stanford. + +# REFERENCES + +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. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 233–242. JMLR. org, 2017. + +Carla E Brodley and Mark A Friedl. Identifying mislabeled training data. Journal of artificial intelligence research, 11:131–167, 1999. + +Kaidi Cao, Colin Wei, Adrien Gaidon, Nikos Arechiga, and Tengyu Ma. Learning imbalanced datasets with label-distribution-aware margin loss. In Advances in Neural Information Processing Systems, pp. 1565–1576, 2019. + +Pengfei Chen, Ben Ben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing deep neural networks trained with noisy labels. In International Conference on Machine Learning, pp. 1062–1070, 2019. + +Jiacheng Cheng, Tongliang Liu, Kotagiri Ramamohanarao, and Dacheng Tao. Learning with bounded instance-and label-dependent label noise. arXiv preprint arXiv:1709.03768, 2017. + +Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on effective number of samples. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 9268–9277, 2019. + +Benoît Frénay and Michel Verleysen. Classification in the presence of label noise: a survey. IEEE transactions on neural networks and learning systems, 25(5):845–869, 2013. + +Aritra Ghosh, Himanshu Kumar, and PS Sastry. Robust loss functions under label noise for deep neural networks. In Thirty-First AAAI Conference on Artificial Intelligence, 2017. + +Sheng Guo, Weilin Huang, Haozhi Zhang, Chenfan Zhuang, Dengke Dong, Matthew R Scott, and Dinglong Huang. Curriculumnet: Weakly supervised learning from large-scale web images. In Proceedings of the European Conference on Computer Vision (ECCV), pp. 135–150, 2018. + +Guy Hacohen and Daphna Weinshall. On the power of curriculum learning in training deep networks. In International Conference on Machine Learning, pp. 2535–2544, 2019. + +Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor Tsang, and Masashi Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In Advances in neural information processing systems, pp. 8527–8537, 2018. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. + +W Hu, Z Li, and D Yu. Simple and effective regularization methods for training on noisily labeled data with generalization guarantee. In International Conference on Learning Representations, 2020. + +Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv preprint arXiv:1508.01991, 2015. + +Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning datadriven curriculum for very deep neural networks on corrupted labels. In International Conference on Machine Learning, pp. 2304–2313, 2018. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009. + +Mingchen Li, Mahdi Soltanolkotabi, and Samet Oymak. Gradient descent with early stopping is provably robust to label noise for overparameterized neural networks. arXiv preprint arXiv:1903.11680, 2019. + +Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual learning and understanding from web data. arXiv preprint arXiv:1708.02862, 2017. + +Tongliang Liu and Dacheng Tao. Classification with noisy labels by importance reweighting. IEEE Transactions on pattern analysis and machine intelligence, 38(3):447–461, 2015. + +Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X Yu. Large-scale long-tailed recognition in an open world. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2537–2546, 2019. + +Andrew L Maas, Raymond E Daly, Peter T Pham, Dan Huang, Andrew Y Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the 49th annual meeting of the association for computational linguistics: Human language technologies-volume 1, pp. 142–150. Association for Computational Linguistics, 2011. + +Eran Malach and Shai Shalev-Shwartz. Decoupling" when to update" from" how to update". In Advances in Neural Information Processing Systems, pp. 960–970, 2017. + +Aditya Krishna Menon, Brendan Van Rooyen, and Nagarajan Natarajan. Learning from binary labels with instance-dependent corruption. arXiv preprint arXiv:1605.00751, 2016. + +Baharan Mirzasoleiman, Kaidi Cao, and Jure Leskovec. Coresets for robust training of neural networks against noisy labels. Advances in Neural Information Processing Systems, 33, 2020. + +Rahul Parhi and Robert D Nowak. Minimum" norm" neural networks are splines. arXiv preprint arXiv:1910.02333, 2019. + +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. 2017. + +Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making deep neural networks robust to label noise: A loss correction approach. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1944–1952, 2017. + +Alexandre Pintore, Paul Speckman, and Chris C Holmes. Spatially adaptive smoothing splines. Biometrika, 93(1):113–125, 2006. + +Mengye Ren, Wenyuan Zeng, Bin Yang, and Raquel Urtasun. Learning to reweight examples for robust deep learning. In International Conference on Machine Learning, pp. 4334–4343, 2018. + +Pedro H. P. Savarese, Itay Evron, Daniel Soudry, and Nathan Srebro. How do infinite width bounded norm networks look in function space? In COLT, 2019. + +Zuofeng Shang, Guang Cheng, et al. Local and global asymptotic inference in smoothing spline models. The Annals of Statistics, 41(5):2608–2638, 2013. + +Jun Shu, Qi Xie, Lixuan Yi, Qian Zhao, Sanping Zhou, Zongben Xu, and Deyu Meng. Meta-weightnet: Learning an explicit mapping for sample weighting. In Advances in Neural Information Processing Systems, pp. 1917–1928, 2019. + +J. Sokolic, R. Giryes, G. Sapiro, and M. R. D. Rodrigues. Robust large margin deep neural networks. ´ IEEE Transactions on Signal Processing, 65(16):4265–4280, 2017. + +Jiaming Song, Lunjia Hu, Yann Dauphin, Michael Auli, and Tengyu Ma. Robust and on-the-fly dataset denoising for image classification. arXiv preprint arXiv:2003.10647, 2020. + +Ryan J Tibshirani et al. Adaptive piecewise polynomial estimation via trend filtering. The Annals of Statistics, 42(1):285–323, 2014. + +Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge Belongie. Learning from noisy large-scale datasets with minimal supervision. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 839–847, 2017. + +Xiao Wang, Pang Du, and Jinglai Shen. Smoothing splines with varying smoothing parameter. Biometrika, 100(4):955–970, 2013. +Yiru Wang, Weihao Gan, Jie Yang, Wei Wu, and Junjie Yan. Dynamic curriculum learning for imbalanced data classification. In Proceedings of the IEEE International Conference on Computer Vision, pp. 5017–5026, 2019. +Yu-Xiong Wang, Deva Ramanan, and Martial Hebert. Learning to model the tail. In Advances in Neural Information Processing Systems, pp. 7029–7039, 2017. +Colin Wei and Tengyu Ma. Data-dependent sample complexity of deep neural networks via lipschitz augmentation. In Advances in Neural Information Processing Systems, pp. 9722–9733, 2019a. +Colin Wei and Tengyu Ma. Improved sample complexities for deep networks and robust classification via an all-layer margin. arXiv preprint arXiv:1910.04284, 2019b. +D Randall Wilson and Tony R Martinez. Instance pruning techniques. In ICML, volume 97, pp. 400–411, 1997. +Yilun Xu, Peng Cao, Yuqing Kong, and Yizhou Wang. L_dmi: A novel information-theoretic loss function for training deep nets robust to label noise. In Advances in Neural Information Processing Systems, pp. 6222–6233, 2019. +Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016. +Zhilu Zhang and Mert Sabuncu. Generalized cross entropy loss for training deep neural networks with noisy labels. In Advances in neural information processing systems, pp. 8778–8788, 2018. +Qi Zhao and Toyoaki Nishida. Using qualitative hypotheses to identify inaccurate data. Journal of Artificial Intelligence Research, 3:119–145, 1995. +Boyan Zhou, Quan Cui, Xiu-Shen Wei, and Zhao-Min Chen. Bbn: Bilateral-branch network with cumulative learning for long-tailed visual recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 9719–9728, 2020. + +# A PROOFS OF THEOREM 1 + +We prove a general theorem here. In particular, we have the general theorem below. + +Theorem 2. Assume that $f ^ { \star } , q , I \in W _ { 2 } ^ { 2 }$ . Suppose (1) $\ell ( a , y )$ is convex and three times continously differentiable with respect to $a$ , (2) there exist constants $0 < c < C < \infty$ such that $c \leq I ( X ) \leq \bar { C }$ almost surely, and $\epsilon \triangleq \nabla _ { a } \ell ( f ^ { \star } ( X ) , Y )$ satisfies $\mathbb { E } [ \epsilon | X ] = 0 \mathrm { \it \Omega }$ , $\mathbb { E } [ \epsilon ^ { 2 } | X ] = I ( X )$ and $\mathbb { E } [ \epsilon ^ { 4 } | X ] < \infty$ almost surely. Let $r ( t ) = - 1 / ( q ( t ) I ( t ) )$ and $\begin{array} { r } { L _ { 0 } = \int _ { - \infty } ^ { \infty } \frac { 1 } { 4 } \exp ( - 2 | t | ) d t . } \end{array}$ . If we choose $\lambda = C _ { 0 } n ^ { - 2 / 5 }$ for some constant $C _ { 0 } > 0$ , the asymptotic mean squared error of $\hat { f }$ by equation 4 is + +$$ +\operatorname* { l i m } _ { n \to \infty } M S E ( \hat { f } ) = C _ { n } \int _ { 0 } ^ { 1 } \lambda ^ { 2 } r ^ { 2 } ( t ) \left[ \frac { d } { d t } ( \rho ( t ) ( f ^ { * } ) ^ { \prime } ( t ) ) \right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \rho ( t ) ^ { - 1 / 2 } d t +$$ + +in probability, where $C _ { n }$ is a scalar that only depends on $n$ . + +It is easy to check that the logistic loss satisfies the condition of the theorem. + +The proof strategy of Theorem 2 is adopted from the proof of Theorem 2 of (Wang et al., 2013) by generalizing it from the least square loss to logistic loss. + +The high level idea is to reformulate $\hat { f }$ as solutions to ordinary differential equations. Let $( \gamma _ { v } , h _ { v } )$ be the (normalized) solution of the following equation + +$$ +\begin{array} { r l } & { - \rho ( t ) h _ { v } ^ { \prime \prime } ( t ) = \gamma _ { v } I ( t ) q ( t ) h _ { v } ( t ) , } \\ & { h _ { v } ^ { ' } ( 0 ) = h _ { v } ^ { ' } ( 1 ) = 0 , \mathrm { ~ a n d ~ } h _ { v } ^ { ' \prime } ( 0 ) = h _ { v } ^ { ' \prime } ( 1 ) = 0 . } \end{array} +$$ + +We define the the leading term of $\hat { f } - f ^ { \star }$ as $S _ { n , \lambda } ( f ^ { \star } )$ as + +$$ +S _ { n , \lambda } ( f ^ { \star } ) = { \frac { 1 } { n } } \epsilon _ { i } K _ { X _ { i } } - W _ { \lambda } f ^ { \star } , +$$ + +$$ +K _ { t } ( \cdot ) = \sum _ { v } \frac { h _ { v } ( t ) } { 1 + \lambda \gamma _ { v } } h _ { v } ( \cdot ) \mathrm { a n d } W _ { \lambda } h _ { v } ( \cdot ) = \frac { \lambda \gamma _ { v } } { 1 + \lambda \gamma _ { v } } h _ { v } ( \cdot ) . +$$ + +By Proposition 2.1 and Theorem 3.4 of Shang et al. (2013), we have + +$$ +\operatorname* { s u p } _ { x } | \hat { f } ( x ) - f ^ { \star } ( x ) - S _ { n , \lambda } ( f ^ { \star } ) ( x ) | = o _ { P } ( n ^ { - 1 / 3 } ) . +$$ + +Following the same proof of Theorem 2 of (Wang et al., 2013), we can simplify the definition of $K _ { t }$ and $W ^ { \lambda }$ as + +$$ +K _ { t } ( x ) = \frac { I ( t ) } { q ( t ) } J ( t , x ) \mathrm { a n d } W _ { \lambda } f ^ { \star } ( t ) = \lambda r ( t ) \left[ \frac { d } { d t } ( \rho ( t ) ( f ^ { \ast } ) ^ { \prime } ( t ) ) \right] , +$$ + +where $J ( t , s ) ~ = ~ \beta \rho ( s ) Q _ { \beta } ^ { \prime } ( s ) L _ { 0 } ( \beta | Q _ { \beta } ( t ) - Q _ { \beta } ( s ) | )$ and $\begin{array} { r } { Q _ { \beta } ( t , s ) = \int _ { 0 } ^ { t } ( r ( s ) \rho ( s ) ) ^ { - 1 / 2 } ( 1 + } \end{array}$ $O ( \beta ^ { - 1 } ) ) d s$ and $\beta = 1 / \sqrt { \lambda }$ . Plugging equation 11 into equation 10, we then have + +$$ +\operatorname* { l i m } _ { n \to \infty } \mathrm { M S E } ( \hat { f } ) = C _ { n } \int _ { 0 } ^ { 1 } \lambda ^ { 2 } r ^ { 2 } ( t ) \left[ \frac { d } { d t } ( \rho ( t ) ( f ^ { \ast } ) ^ { \prime } ( t ) ) \right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \rho ( t ) ^ { - 1 / 2 } d t +$$ + +# B IMPLEMENTATION DETAILS + +We develop our core algorithm in PyTorch (Paszke et al., 2017). + +Implementation details for CIFAR. We follow the simple data augmentation used in (He et al., 2016) with only random crop and horizontal flip. We use ResNet-32 as our base network and repeat all experiments for 3 runs. We use standard SGD with momentum of 0.9, weight decay of $1 \times \bar { 1 0 } ^ { - 4 }$ for training. The model is trained with a batch size of 128 for 120 epochs. We anneal the learning rate by a factor of 10 at 80 and 100 epochs. We group the data by class labels, and by default we split $\mathcal { D }$ equally and randomly into $\mathcal { D } _ { \mathrm { t r a i n } }$ and $\mathcal { D } _ { \mathrm { v a l } }$ . As for the Jacobian regularizer, we sum over the frobenius norm of the gradients of all normalization layers’ (BN by default) activations with respect to the classification loss. For experiments of HAR, we tune $\lambda$ so that the largest enforced regularization strength $( \lambda \tau _ { i } )$ is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti. + +Implementation details for IMDB-review. We train a two-layer bidirectional LSTM (Huang et al., 2015) with 256 units followed with 0.5 dropout before the linear classifier. The network is trained for 20 epochs with Adam optimizer (Kingma & Ba, 2014). For HAR, we tune $\lambda$ so that the largest enforced regularization strength $( \lambda \tau _ { i } )$ is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti. + +Implementation details for WebVision. We use the standard data augmentation same as (He et al., 2016) including random crop and horizontal flip. For mini WebVision, We train the network for 90 epochs using standard SGD with a batch size of 128. The initial learning rate is 0.1 and is annealed by a factor of 10 at epoch 60 and 90. For full WebVision, We train the network for 50 epochs using standard SGD with a batch size of 256. The initial learning rate is 0.1 and is annealed by a factor of 10 at epoch 30 and 40. For experiments of HAR, we tune $\lambda$ so that the largest enforced regularization strength $( \lambda \tau _ { i } )$ is 0.1. We train each model with 8 NVIDIA Tesla V100 GPUs. + +Runtime analysis. Because the pre-trained model only trains on half of the training data and is only done once, the run-time of HAR is at most twice of the time for ERM. Many baselines in our paper use sophisticated pipelines and are slower than HAR. For example, INCV trains 2 models simultaneously for 4 times from random initialization to get a clean training set. MW-Net has a very slow convergence rate, which is a common issue for meta-learning. + +# C ADDITIONAL RESULTS + +# C.1 SIMULATING HETEROSKEDASTIC NOISE ON IMDB-REVIEW. + +IMDB-review dataset has a total of 50,000 (25,000 positive and 25,000 negative reviews) movie reviews for binary sentiment classification (Maas et al., 2011). To simulate heteroskedastic noise for this binary classification problem, we project $5 \%$ of the labels of negative reviews to positive, and $40 \%$ in the reverse direction. Table 6 summarizes the results. The proposed HAR outperforms the ERM baseline with various strength of uniform regularization. + +Table 6: Top-1 validation accuracy (averaged over 3 runs) on heteroskedastic IMDB-review dataset. + +
Reg StrengthAcc. of neg. reviewsAcc. of pos. reviewsMean Acc
091.9 ± 2.050.9 ±1.871.4± 0.5
Unif-reg (入= 0.01)94.3 ±1.851.9 ± 2.073.1± 0.3
Unif-reg (入= 0.1)91.5 ±1.964.3 ±1.677.9 ± 0.4
Ours (HAR)93.1 ± 1.572.8±1.783.0 ± 0.3
+ +C.2 EVALUATION ON CIFAR-100 WITH REAL-WORLD HETEROSKEDASTICITY + +It is acknowledged that CIFAR-100 training set contains noisy examples. For instance, some “tiger” examples are labeled as “leopard” (“tiger” is a defined class as well). There are also noisy examples that contain multiple objects, or are more ambiguous in terms of indentity (Song et al., 2020). We find that HAR can improve over uniform regularization on the well-studied CIFAR-100 due to its heteroskedasticity and the results are reported in Table 7. + +Table 7: Top-1 validation accuracy (average over 3 runs) of ResNet-32 on the original CIFAR-100. + +
Reg StrengthTrain AccVal Acc
096.0±0.169.8± 0.2
Unif-reg (入= 0.001)96.4± 0.170.0± 0.2
Unif-reg (入= 0.01)95.7 ± 0.170.6 ±0.1
Unif-reg (入= 0.1)88.8±0.170.5 ± 0.1
Adaptive (HAR)96.2 ± 0.171.4±0.1
+ +As mentioned in Section 3.1, we consider another variant of heteroskedastic and imbalanced dataset such that the rare classes have low noise level. To simulate this setting, we make the clean classes have fewer labels than the corrupted classes on the heteroskedastic CIFAR-10 we created in Section ??. + +Table 8 summarizes the results. For the setting of imbalance ratio equals 10, INCV automatically drops $34 . 1 \%$ of examples from the clean and rare classes, which results in a decrease of mean accuracy on the rare and clean classes. HAR is able to achieve improvements on both noisy classes and rare classes by enforcing the optimal regularization. + +Table 8: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and imbalanced CIFAR-10. + +
Imbalance ratio Method10100
Noisy Cls.Rare Cls.Noisy Cls.Rare Cls.
ERM59.9 ± 1.165.2 ± 0.760.4± 0.97.9 ± 1.3
Co-teaching63.1 ± 2.359.4 ± 1.453.8 ± 1.94.4±1.8
INCV74.5 ± 1.263.7 ± 0.868.3 ± 1.82.1 ±1.3
MentorNet67.3 ± 1.665.5 ± 1.263.3 ± 1.510.8 ±1.9
L2RW65.8 ±1.466.3 ± 1.262.4 ± 2.111.3 ± 2.9
MW-Net71.4± 0.667.7 ± 0.665.0± 1.613.5 ± 2.4
GCE64.6 ± 1.160.2 ± 1.371.2 ± 1.92.6±1.4
DMI72.3 ± 1.563.3 ±1.270.8 ±1.76.2 ±1.9
Ours (HAR)76.1 ± 0.872.1 ± 1.073.0 ± 1.626.1±0.8
+ +# C.4 COMPARING THE EFFECT OF WEIGHTS ON LOSSES AND REGULARIZERS + +As discussed in Section 4, we train several classifiers with alternative weights selection scheme which are not optimal. We consider the following two alternatives. (1) random: we draw the weights from a uniform distribution with the same mean as the weights of MW-Net and HAR. (2) inverse: we take the inverse of the weights learned by MW-Net and HAR and then normalize them to ensure the average reweighting/regularization strength remains the same. + +We conducted experiments on the heteroskedastic CIFAR-10 introduced in Section ?? and the results are summarized in Table 9. We could conclude that changing the weights of the regularizer is a more conservative adaption and less susceptible to uncertain estimation than reweighting. + +Table 9: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10 by changing the weighting scheme. + +
MethodAvg. Noisy Cls.Avg. . Clean Cls.
ERM68.6±0.293.6 ± 0.2
Reweight (MW-Net)75.0 ± 0.394.4± 0.2
Reweight (random)62.1±0.592.9 ± 0.5
Reweight (inverse)13.1 ± 0.990.9 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1± 0.2
Adap-reg (HAR)80.7±0.394.5 ±0.2
Adap-reg (random)74.8 ± 0.494.2±0.2
Adap-reg (inverse)73.2 ± 0.594.0± 0.2
+ +# C.5 VISUALIZATION + +In order to better understand how the proposed HAR works on real-world heteroskedastic datasets, we plot the per-class key statistics used by HAR and validation errors in Figure 4. We observe that HAR outperforms the tuned uniform regularization baseline on the majority of the classes. + +![](images/c076753ebcd5b8f3da8f361db87212d171eb3c37ef46afdae950c98d61c3d805.jpg) +Figure 4: Visualizations of per-class top-1 error and regularization strength of HAR on mini WebVision dataset. The classes are sorted in the ascending order of applied regularization strength. \ No newline at end of file diff --git a/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_content_list.json b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..a635a32732af04c37084d356d1c77f41082e781f --- /dev/null +++ b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_content_list.json @@ -0,0 +1,1966 @@ +[ + { + "type": "text", + "text": "HETEROSKEDASTIC AND IMBALANCED DEEP LEARNING WITH ADAPTIVE REGULARIZATION ", + "text_level": 1, + "bbox": [ + 176, + 99, + 826, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Kaidi $\\mathbf { C a o ^ { 1 } }$ , Yining Chen1, Junwei $\\mathbf { L } \\mathbf { u } ^ { 2 }$ , Nikos Arechiga3, Adrien Gaidon3, Tengyu Ma1 1Stanford University, 2Harvard University, 3Toyota Research Institute {kaidicao,cynnjjs,tengyuma}@stanford.edu ", + "bbox": [ + 186, + 167, + 789, + 213 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Real-world large-scale datasets are heteroskedastic and imbalanced – labels have varying levels of uncertainty and label distributions are long-tailed. Heteroskedasticity and imbalance challenge deep learning algorithms due to the difficulty of distinguishing among mislabeled, ambiguous, and rare examples. Addressing heteroskedasticity and imbalance simultaneously is under-explored. We propose a data-dependent regularization technique for heteroskedastic datasets that regularizes different regions of the input space differently. Inspired by the theoretical derivation of the optimal regularization strength in a one-dimensional nonparametric classification setting, our approach adaptively regularizes the data points in higher-uncertainty, lower-density regions more heavily. We test our method on several benchmark tasks, including a real-world heteroskedastic and imbalanced dataset, WebVision. Our experiments corroborate our theory and demonstrate a significant improvement over other methods in noise-robust deep learning. ", + "bbox": [ + 233, + 282, + 766, + 463 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 178, + 489, + 336, + 505 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In real-world machine learning applications, even well-curated training datasets have various types of heterogeneity. Two main types of heterogeneity are: (1) data imbalance: the input or label distribution often has a long-tailed density, and (2) heteroskedasticity: the labels given inputs have varying levels of uncertainties across subsets of data stemming from various sources such as the intrinsic ambiguity of the data or annotation errors. Many deep learning algorithms have been proposed for imbalanced datasets (e.g., see (Wang et al., 2017; Cao et al., 2019; Cui et al., 2019; Liu et al., 2019) and the reference therein). However, heteroskedasticity, a classical notion studied extensively in the statistical community (Pintore et al., 2006; Wang et al., 2013; Tibshirani et al., 2014), has so far been under-explored in deep learning. This paper focuses on addressing heteroskedasticity and its interaction with data imbalance in deep learning. ", + "bbox": [ + 174, + 521, + 825, + 660 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Heteroskedasticity is often studied in regression analysis and refers to the property that the distribution of the error varies across inputs. In this work, we mostly focus on classification, though the developed technique also applies to regression. Here, heteroskedasticity reflects how the uncertainty in the conditional distribution $y \\mid x$ , or the entropy of $y \\mid x$ , varies as a function of $x$ . Real-world datasets are often heteroskedastic. For example, Li et al. (2017) shows that the WebVision dataset has a varying number of ambiguous or true noisy examples across classes.2 ", + "bbox": [ + 174, + 667, + 825, + 751 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Conversely, we consider a dataset to be homoscedastic if every example is mislabeled with a fixed probably $\\epsilon$ , as assumed by many prior theoretical and empirical works on label corruption (Ghosh et al., 2017; Han et al., 2018; Jiang et al., 2018; Mirzasoleiman et al., 2020). We note that varying uncertainty in $y \\mid x$ can come from at least two sources: the intrinsic semantic ambiguity of the input, and the (data-dependent) mislabeling introduced by the annotation process. Our approach can handle both types of noisy examples in a unified way, but for the sake of comparisons with past methods, we call them “ambiguous examples” and “mislabeled examples” respectively, and refer to both of them as “noisy examples”. ", + "bbox": [ + 174, + 758, + 825, + 869 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b0aa3f523002d1c7bc925b084339bea809fac9e5918ef2d25e1e376f5cd78fab.jpg", + "image_caption": [ + "Figure 1: Histogram of the distributions of losses on an imbalanced and noisy CIFAR-10 dataset. Clean but rare examples tend to have larger losses, similar to the noisy examples in frequent classes. " + ], + "image_footnote": [], + "bbox": [ + 176, + 104, + 464, + 268 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/9499897cf2f9e6c9f97933d2b6e3c3eb440e25eb54680fc3ee92050128d75b8b.jpg", + "image_caption": [ + "Figure 2: Real-world datasets have various sources of heterogeneity and it could be hard to distinguish one from another. They require mutuallyexclusive reweighting strategy, but they all benefit from stronger regularization. " + ], + "image_footnote": [], + "bbox": [ + 493, + 106, + 815, + 268 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Overparameterized deep learning models tend to overfit more to the noisy examples (Arpit et al., 2017; Frénay & Verleysen, 2013; Zhang et al., 2016). To address this issue, a common approach is to detect noisy examples by selecting those with large training losses, and then remove them from the (re-)training process. However, an input’s training loss can also be big because it is rare or ambiguous (Hacohen & Weinshall, 2019; Wang et al., 2019), as shown in Figure 1. Noise-cleaning methods could fail to distinguish mislabeled from rare/ambiguous examples (see Section 3.1 for empirical proofs). Though dropping the former is desirable, dropping the latter loses important information. Another popular approach is reweighting methods that reduce the contribution of noisy examples in optimization. However, failing to distinguish between mislabeled and rare/ambiguous examples makes the decision of the weights tricky – mislabeled examples require small weights, whereas rare / ambiguous examples benefit from larger weights (Cao et al., 2019; Shu et al., 2019). ", + "bbox": [ + 174, + 380, + 825, + 532 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We propose a regularization method that deals with noisy and rare examples in a unified way. We observe that mislabeled, ambiguous, and rare examples all benefit from stronger regularization (Hu et al., 2020; Cao et al., 2019). We apply a Lipschitz regularizer (Wei & Ma, 2019a;b) with varying regularization strength depending on the particular data point. Through theoretical analysis in the one-dimensional setting, we derive the optimal regularization strength for each training example. The optimal strength is larger for rarer and noisier examples. Our proposed algorithm, heteroskedastic adaptive regularization (HAR), first estimates the noise level and density of each example, and then optimizes a Lipschitz-regularized objective with input-dependent regularization with strength provided by the theoretical formula. ", + "bbox": [ + 174, + 539, + 825, + 664 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In summary, our main contributions are: (i) we propose to learn heteroskedastic imbalanced datasets under a unified framework, and theoretically study the optimal regularization strength on onedimensional data. (ii) we propose an algorithm, heteroskedastic adaptive regularization (HAR), which applies stronger regularization to data points with high uncertainty and low density. (iii) we experimentally show that HAR achieves significant improvements over other noise-robust deep learning methods on simulated vision and language datasets with controllable degrees of data noise and data imbalance, as well as a real-world heteroskedastic and imbalanced dataset, WebVision. ", + "bbox": [ + 174, + 671, + 825, + 768 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 ADAPTIVE REGULARIZATION FOR HETEROSKEDASTIC DATASETS ", + "text_level": 1, + "bbox": [ + 178, + 789, + 746, + 805 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 BACKGROUNDS ", + "text_level": 1, + "bbox": [ + 174, + 820, + 323, + 834 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We first introduce general nonparametric tools that we use in our analysis, and review the dependency of optimal regularization strength on the sample size and noise level. ", + "bbox": [ + 174, + 847, + 823, + 875 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Over-parameterized neural networks as nonparametric methods. We use nonparametric method as a surrogate for neural networks because they have been shown to be closely related. Recent work (Savarese et al., 2019) shows that the minimum norm two-layer ReLU network that fits ", + "bbox": [ + 176, + 882, + 825, + 922 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/9f6b9f919811d48d690fed50dff8093090a7d6a6528fc0487af6d4f5ee64ac11.jpg", + "image_caption": [ + "Figure 3: A one-dimensional example with a three-layer neural network in heteroskedastic and imbalanced regression setting. The curve in blue is the underlying ground truth and the dots are observations with heteroskedastic noise. This example shows that uniformly weak regularization overfits on noisy and rare data (on the right half), whereas uniformly strong regularization causes underfitting on the frequent and oscillating data (on the left half). The adaptive regularization does not underfit the oscillating data but still denoise the noisy data. We note that standard nonparametric methods such as cubic spline do not work here because they also use uniform regularization. " + ], + "image_footnote": [], + "bbox": [ + 184, + 111, + 482, + 299 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "the training data is in fact a linear spline interpolation. Parhi & Nowak (2019) extend this result to a broader family of neural networks with a broader family of activations. ", + "bbox": [ + 173, + 334, + 823, + 363 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given a training dataset $\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ , nonparametric method with penalty works as follows. Let $\\mathcal { F } : \\mathbb { R } \\mathbb { R }$ be a twice-differentiable model family. We aim to fit the data with smoothness penalty ", + "bbox": [ + 173, + 369, + 823, + 398 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/1751915e4717c596fc2cbe14189e3caed5fc245ba2a2e06d1bdf3e706fe7a006.jpg", + "text": "$$\n\\operatorname* { m i n } _ { f } { \\ } { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int ( f ^ { \\prime } ( x ) ) ^ { 2 } d x\n$$", + "text_format": "latex", + "bbox": [ + 354, + 405, + 643, + 446 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Lipschitz regularization for neural networks. Lipschitz regularization has been shown to be effective for deep neural networks as well. Wei & Ma (2019a) proves a generalization bound of neural networks dependent on the Lipschitzness of each layer with respect to all intermediate layers on the training data, and show that, empirically, regularizing the Lipschitzness improve the generalization. Sokolic et al. ´ (2017) shows similar results in data-limited settings. In Section 2.3, we extend the Lipschitz regularization technique to heteroskedastic setting. ", + "bbox": [ + 173, + 459, + 825, + 545 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Regularization strength as a function of noise level and sample size. Finally, we briefly review existing theoretical insights on the optimal choice of regularization strength. Generally, the optimal regularization strength for a given model family increases with the label noise level and decreases in the sample size. As a simple example, consider linear ridge regression $\\begin{array} { r } { \\operatorname* { m i n } _ { \\theta } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } { ( x _ { i } ^ { \\top } \\theta - y _ { i } ) ^ { 2 } } + } \\end{array}$ $\\lambda \\| \\theta \\| ^ { 2 }$ , where $x _ { i }$ , $\\theta \\in \\mathbb { R } ^ { d }$ and $y _ { i } \\in \\mathbb { R }$ . We assume $y _ { i } = x _ { i } ^ { \\top } \\theta ^ { * } + \\xi$ for some ground truth parameter $\\theta ^ { * }$ , and $\\Dot { \\xi } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } )$ . Then the optimal regularization strength $\\lambda _ { o p t } = d \\sigma ^ { 2 } / \\bar { n } \\| \\theta ^ { * } \\| _ { 2 } ^ { 2 }$ . Results of similar nature can also be found in nonparametric statistics (Wang et al., 2013; Tibshirani et al., 2014). ", + "bbox": [ + 173, + 550, + 826, + 651 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 HETEROSKEDASTIC NONPARAMETRIC CLASSIFICATION ON ONE-DIMENSIONAL DATA", + "text_level": 1, + "bbox": [ + 173, + 666, + 810, + 683 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We consider a one-dimensional binary classification problem where $\\mathcal { X } = [ 0 , 1 ] \\subset \\mathbb { R }$ and $\\mathcal { V } = \\{ - 1 , 1 \\}$ We assume $Y$ given $X$ follows a logistic model with ground-truth function $f ^ { \\star }$ , i.e. ", + "bbox": [ + 173, + 693, + 825, + 723 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/e0c56091aa38ee67473106ccb5ad7073c2ca99f8218de48fbdd7db070a37abdd.jpg", + "text": "$$\n\\operatorname* { P r } \\left[ Y = y | X = x \\right] = { \\frac { 1 } { 1 + \\exp ( - y f ^ { \\star } ( x ) ) } } .\n$$", + "text_format": "latex", + "bbox": [ + 356, + 728, + 640, + 762 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The training objective is cross-entropy loss plus Lipschitz regularization, i.e. ", + "bbox": [ + 173, + 767, + 673, + 782 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/9885407285e56151abf867dd47a02aeb31f1d5f4aac06c2b5936c3636135b79f.jpg", + "text": "$$\n\\widehat { f } = \\mathrm { a r g m i n } _ { f } \\widehat { L } ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int _ { 0 } ^ { 1 } \\rho ( x ) ( f ^ { \\prime } ( x ) ) ^ { 2 } d x ,\n$$", + "text_format": "latex", + "bbox": [ + 276, + 787, + 720, + 830 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\ell ( a , y ) = - \\log ( 1 + \\exp ( - y a ) )$ , and $\\rho ( x )$ is a smoothing parameter as a function of the noise level and density of $x$ . Let $I ( x )$ be the fisher information matrix conditioned on the input, i.e. $I ( x ) \\triangleq \\mathbb { E } [ \\nabla _ { a } ^ { 2 } \\ell ( a , Y ) | _ { a = f ^ { \\star } ( X ) } | X = x ]$ . When $( X , Y )$ follows the logistic model in equation 2, ", + "bbox": [ + 174, + 835, + 825, + 882 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/d3dbb5e0813dd9fdb189f51f81497cdf7b8cd7d59f804cf99f227c66c1e23380.jpg", + "text": "$$\nI ( x ) = { \\frac { 1 } { ( 1 + \\exp ( f ^ { \\star } ( x ) ) ( 1 + \\exp ( - f ^ { \\star } ( x ) ) } } = \\mathrm { V a r } ( Y | X = x ) .\n$$", + "text_format": "latex", + "bbox": [ + 287, + 888, + 709, + 922 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Therefore, $I ( x )$ captures the aleatoric uncertainty of $x$ . For example, when $Y$ is deterministic conditioned on $X = x$ , we have $I ( x ) = 0$ , indicating perfect certainty. ", + "bbox": [ + 173, + 103, + 823, + 133 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Define the test metric as the mean-squared-error on the test set $\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ , i.e.,1 ", + "bbox": [ + 176, + 138, + 712, + 155 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/dc65b3d0381b17b7227b7e0887d508a8f14cd239093f208efd3c6d380930865b.jpg", + "text": "$$\n\\operatorname { M S E } ( \\hat { f } ) \\triangleq \\operatorname * { \\mathbb { E } } _ { \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n } } \\int _ { 0 } ^ { 1 } ( \\hat { f } ( t ) - f ^ { \\star } ( t ) ) ^ { 2 } d t\n$$", + "text_format": "latex", + "bbox": [ + 349, + 156, + 647, + 194 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Our main goal is to derive the optimal choice of $\\rho ( x )$ that minimizes the MSE. We start with an analytical characterization of the test error. Let $W _ { 2 } ^ { 2 } = \\{ f ^ { \\prime }$ is absolute continuous and $f ^ { \\prime \\prime } \\in L ^ { 2 } [ 0 , 1 ] \\}$ . We denote the density of $X$ as $q ( x )$ . The following theorem analytically computes the MSE under the regularization strength $\\rho ( \\cdot )$ , building upon (Wang et al., 2013) for regression problems. The proof of the Theorem is deferred to Appendix A. ", + "bbox": [ + 173, + 203, + 826, + 275 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. Assume that $f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }$ . Let $r ( t ) = - 1 / ( q ( t ) I ( t ) )$ and $\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t } \\end{array}$ If we choose $\\lambda = C _ { 0 } n ^ { - 2 / 5 }$ for some constant $C _ { 0 } > 0$ , the asymptotic mean squared error is ", + "bbox": [ + 169, + 276, + 823, + 310 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/98777cadf03fe227c6b48fbefae5d79c1864cbea2f9861fd994c07066c9f0efb.jpg", + "text": "$$\n\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t\n$$", + "text_format": "latex", + "bbox": [ + 241, + 313, + 756, + 349 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "in probability, where $C _ { n }$ is a scalar that only depends on $n$ ", + "bbox": [ + 174, + 351, + 563, + 366 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Using the analytical formula of the test error above, we want to derive an approximately optimal choice of $\\rho ( x )$ . A precise computation is infeasible, so we restrict ourselves to consider only $\\rho ( x )$ that is constant within groups of examples. We introduce an additional structure – we assume the data can be divided into $k$ groups $[ a _ { 0 } , a _ { 1 } ) , \\bar { [ } a _ { 1 } , a _ { 2 } ) , \\cdot \\cdot \\cdot , [ a _ { k - 1 } , a _ { k } )$ . Each group $[ a _ { j } , a _ { j + 1 } )$ consists of an interval of data with approximately the same aleatoric uncertainty. We approximate $\\rho ( t )$ is constant on each of the group $[ a _ { i } , a _ { i + 1 } )$ with value $\\rho _ { i }$ . Plugging this piece-wise constant $\\rho$ into the asymptotic MSE in Theorem 1, we obtain ", + "bbox": [ + 173, + 375, + 826, + 473 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/5587924fdba5e89247fe3f42a6f90416d13bf1d281e1d1ed0d6f3c0c3f4118d0.jpg", + "text": "$$\n\\underset { n \\infty } { \\operatorname* { l i m } } \\mathrm { M S E } ( \\hat { f } ) = \\sum _ { j } [ \\rho _ { j } ^ { 2 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) [ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) ] ^ { 2 } d t + \\rho _ { j } ^ { - 1 / 2 } L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 1 / 2 } ( t ) d t ] .\n$$", + "text_format": "latex", + "bbox": [ + 215, + 474, + 781, + 518 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Minimizing the above formula over $\\rho _ { 1 } , \\ldots , \\rho _ { k }$ separately, we derive the optimal weights, $\\rho _ { j } =$ $\\left[ \\frac { L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ( t ) ^ { 1 / 2 } d t } { 4 \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) \\left[ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) \\right] ^ { 2 } d t } \\right] ^ { 2 / }$ 5 . In practice, we do not know $f ^ { \\star }$ and $q ( x )$ , so we make the following simplifications. We assume that $q ( t )$ and $I ( t )$ are constant on each interval $[ a _ { j } , a _ { j + 1 } ]$ . In other words, we assume that $q ( t ) = q _ { j }$ and $I ( t ) = I _ { j }$ for all $t \\in [ a _ { j } , a _ { j + 1 } ]$ . We further assume that $\\textstyle { \\frac { d ^ { 2 } } { d t ^ { 2 } } } f ^ { \\star } ( t )$ is close to a constant on the entire space, because estimating the curvature in high dimension is difficult. This simplification yields $\\rho _ { j } \\propto \\left[ \\frac { q _ { j } ^ { - 1 / 2 } I _ { j } ^ { - 1 / 2 } } { q _ { j } ^ { - 2 } I _ { j } ^ { - 2 } } \\right] ^ { 2 / 5 } = q _ { j } ^ { 3 / 5 } I _ { j } ^ { 3 / 5 }$ q3/5j I3/5j . We find the simplification works well in practice. ", + "bbox": [ + 173, + 520, + 826, + 671 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Adaptive regularization with importance sampling. It is practically infeasible to implement the integration in equation 3 for high-dimensional data. We use importance sampling to approximate the integral: ", + "bbox": [ + 173, + 678, + 823, + 720 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/2e1a6787dd6550c48149ec5dcb7d9acd394ea64aa6edf08473a3b48b21a5a890.jpg", + "text": "$$\n{ \\mathrm { m i n i m i z e } } _ { f } L ( f ) \\triangleq { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } \\tau _ { i } f ^ { \\prime } ( x _ { i } ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 305, + 722, + 691, + 763 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Suppose $x _ { i } \\in [ a _ { j } , a _ { j + 1 } )$ , we have that $\\tau _ { i }$ should satisfy that $\\tau _ { i } q _ { j } = \\rho _ { j }$ so that the expectation of the regularization term in equation 5 is equal to that in equation 3. Hence, ", + "bbox": [ + 174, + 766, + 821, + 795 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e07633c49d25d6bffcf960cf99ca3e0f38f2d0e6eed54789f39998d3cc6781ba.jpg", + "text": "$$\n\\tau _ { i } = I _ { j } ^ { 3 / 5 } q _ { j } ^ { - 2 / 5 } = I ( x _ { i } ) ^ { 3 / 5 } q ( x _ { i } ) ^ { - 2 / 5 } .\n$$", + "text_format": "latex", + "bbox": [ + 370, + 796, + 625, + 820 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Adaptive regularization for multi-class classification and regression. In fact, the proof of Theorem 1 is proved for general loss $\\ell ( a , y )$ . Therefore, we can directly generalize it to multiclass classification and regression problems. For a regression problem, $\\ell ( a , y )$ is the square loss: $\\ell ( y , a ) = 0 . 5 ( y - a ) ^ { 2 }$ , the Fisher information $I ( x ) = 1$ . Therefore, for a regression problem, we can choose regularization weight $\\tau _ { i } = q ( x _ { i } ) ^ { - 2 / 5 }$ . ", + "bbox": [ + 173, + 829, + 825, + 902 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We heuristically extend the Lipschitz regularization technique discussed in Section 2.2 from nonparametric models to over-parameterized deep neural networks. Let $( x , y )$ be an example and $f _ { \\theta }$ be an $r$ -layer neural network. We denote by $h ^ { ( j ) }$ the $j$ -th hidden layer of the network, by $\\begin{array} { r } { \\dot { J } ^ { ( j ) } ( x ) \\triangleq \\frac { \\hat { \\partial } } { \\partial h ^ { ( j ) } } \\mathcal { L } ( f ( x ) , y ) } \\end{array}$ , i.e., the Jacobian of the loss w.r.t $h ^ { ( j ) }$ . We replace the regularization term $f ^ { \\prime } ( x ) ^ { 2 }$ in equation 5 by $\\begin{array} { r } { R ( x ) = { \\left( \\sum _ { j = 1 } ^ { r } | | J ^ { ( j ) } ( x ) | | _ { F } ^ { 2 } \\right) } ^ { 1 / 2 } } \\end{array}$ , which was proposed by (Wei & Ma, 2019a). As a proof of concept, we visualize the behavior of our algorithm in Figure 3, where we observe that the rare and noisy examples have significantly improved error due to stronger regularization. In contrast, a uniform regularization either overfits or underfits different subsets. ", + "bbox": [ + 173, + 128, + 826, + 258 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Note that the differences from the 1-D case include the following three aspects. 1. The derivative is taken w.r.t to all the hidden layers for deep models, which has been shown to have superior generalization guarantees for neural networks by (Wei & Ma, 2019a;b). 2. An additional square root is taken in computing $R ( x )$ . This modified version may have milder curvature and be easier to tune. 3. We take the derivative of the loss instead of the derivative of the model, which outputs $k$ numbers for multi-class classification. This is because the derivative of the model requires $k$ times more time to compute. The regularized training objective is consequently ", + "bbox": [ + 173, + 265, + 825, + 363 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/9c0f87a88a7df27d97e5a419a545e647849d7ceef67136637f7d116cf57bf9ae.jpg", + "text": "$$\n\\mathrm { m i n i m i z e } _ { f } L ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left( \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\tau _ { i } R ( x _ { i } ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 316, + 366, + 678, + 406 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\tau _ { i }$ is chosen to be $\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }$ following the formula equation 5 in Section 2.2 and $\\lambda$ is a hyperparameter to control the overall scale of the regularization strength. We note that we do not expect this choice of $\\tau _ { i }$ to be optimal for the high-dimensional case with all the modifications above – the optimal choice does depend on the nuances. However, we also observe that the empirical performance is not sensitive to the form of $\\tau$ as long as it’s increasing in $I ( x )$ and decreasing in $q ( x )$ . That is, the more uncertain or rare an example is, the stronger regularization should be applied. ", + "bbox": [ + 173, + 410, + 825, + 496 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In order to estimate the relative regularization strength $\\tau _ { i }$ , the key difficulty lies in the estimation of uncertainty $I ( x )$ . As in the 1-D setting, we divide the examples into $k$ groups $G _ { 1 } , \\ldots , G _ { k }$ (e.g., each group can correspond to a class), and estimate the uncertainty on each group. In the binary setting, $I ( x ) = \\mathrm { \\mathrm { V a r } } ( { \\bar { Y } } | X = x ) = \\operatorname* { P r } [ Y = 1 \\mid X ] \\cdot \\operatorname* { P r } [ Y = 0 \\ { \\bar { | } } \\ X ]$ can be approximated by $\\begin{array} { r } { \\tilde { I } ( x ) = 1 - \\operatorname* { m a x } _ { k \\in \\{ 0 , 1 \\} } \\operatorname* { P r } [ Y = k \\mid X = x ] } \\end{array}$ up to a factor of at most 2. We use the same formula for multi-class setting as the approximation of the uncertainty. (As a sanity check, when $Y$ is concentrated on a single outcome, the uncertainty is 0.) Note that $\\tilde { I } ( \\stackrel { \\cdot } { x } )$ is essentially the minimum possible error of any deterministic prediction on the data point $x$ . Assume that we have a sufficiently accurate pre-trained model, we can use its validation error to estimate $\\tilde { I } ( x )$ : ", + "bbox": [ + 173, + 501, + 825, + 633 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Then for all $x \\in G _ { j }$ , we estimate $q ( x )$ and $I ( x )$ by $\\forall x \\in G _ { j } , q ( x ) \\propto | G _ { j } | , I$ $I ( x ) \\propto$ average validation error of a pre-trained model $f _ { \\tilde { \\theta } }$ on $G _ { j }$ ", + "bbox": [ + 173, + 640, + 508, + 655 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 194, + 659, + 774, + 674 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The whole training pipeline is summarized in Algorithm 1. ", + "bbox": [ + 173, + 684, + 560, + 700 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 Heteroskedastic Adaptive Regularization (HAR) ", + "text_level": 1, + "bbox": [ + 173, + 713, + 581, + 728 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Require: Dataset $\\mathcal { D } = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ . A parameterized model $f _ { \\theta }$ \n1: Split training set $\\mathcal { D }$ into $\\mathcal { D } _ { \\mathrm { t r a i n } }$ and $\\mathcal { D } _ { \\mathrm { v a l } }$ \n2: $f _ { \\tilde { \\theta } } \\gets$ Standard SGD Training on $\\mathcal { D } _ { \\mathrm { t r a i n } }$ \n3: Estimate $I ( x ) , q ( x )$ with equation 7 using $f _ { \\tilde { \\theta } }$ on $\\mathcal { D } _ { \\mathrm { v a l } }$ , and compute $\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }$ \n4: \n5: Initialize the model parameters $\\theta$ randomly \n6: $f _ { \\boldsymbol { \\theta } } \\gets \\mathsf { S G D }$ with the regularized objective as in equation 6 on the full dataset $\\mathcal { D }$ ", + "bbox": [ + 176, + 733, + 802, + 837 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 864, + 328, + 881 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We experimentally show that our proposed algorithm HAR(Algorithm 1) improves the test performance of the noisier and rarer groups of examples (by stronger regularization) without negatively affecting the training and test performance of the other groups. We evaluate our algorithms on three vision datasets and one NLP dataset: CIFAR-10 and CIFAR-100 (Krizhevsky et al., 2009), IMDB-review (Maas et al., 2011) (see Appendix C.1), and WebVision (Li et al., 2017), a real-world heteroskedastic and imbalanced dataset. Please refer to Appendix B for low-level implementation details. ", + "bbox": [ + 174, + 895, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Baselines. We compare our proposed HAR with the following baselines. The simplest one is (1) Empirical risk minimization (ERM): the vanilla cross-entropy loss with all examples having the same weights of losses. We select two representatives from the noise-cleaning line of approach. (2) Co-teaching (Han et al., 2018): two deep networks are trained simultaneously. Each network aims to identify clean data points that have small losses and use them to guide the training of the other network. (3) INCV (Chen et al., 2019): it extends Co-teacing to an interative version to estimate the noise ratio and select data. We consider three representatives from the reweighting-based methods, including two that learn the weighting using meta-learning. (4) MentorNet (Jiang et al., 2018): it pretrains a teacher network that outputs weights for examples that are used to train the student network with reweighting. (5) L2RW (Ren et al., 2018): it directly optimizes weights of each example in the training set by minimizing its corresponding loss on a small meta validation set. (6) MW-Net (Shu et al., 2019): it extends L2RW by explicitly defining a weighting function which depends only on the loss of the example. We also compare against two representatives from the robust loss function. (7) GCE (Zhang & Sabuncu, 2018): it generalizes mean average error and cross-entropy loss to obtain a new loss function. (8) DMI ( $\\mathrm { X u }$ et al., 2019): it designs a new loss function based on generalized mutual information. In addition, as an essential ablation study, we consider vanilla uniform regularization. (9) Unif-reg: we apply the Jacobian regularizer on all examples with equal strength, and tune the strength to get the best possible validation accuracy. ", + "bbox": [ + 174, + 181, + 825, + 429 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.1 SIMULATING HETEROSKEDASTIC AND IMBALANCED DATASETS ON CIFAR ", + "text_level": 1, + "bbox": [ + 178, + 458, + 725, + 470 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Setting. Unlike previous works that test on uniform random or asymmetric noise, which is often not the case in reality, in this paper we test our method on more realistic noisy settings, as suggested by Patrini et al. (2017); Zhang & Sabuncu (2018). In order to simulate heteroskedasticity, we only corrupt semantically-similar classes. For CIFAR-10, we exchange $40 \\%$ of the labels between classes ‘cat’ and ‘dog’, and between ‘truck’ and ‘automobile’. CIFAR-100 has 100 classes grouped into 20 super classes. For each class of the 5 classes under the super class ‘vehicles $_ { 1 } ,$ and ‘vehicles $_ { 2 } \\cdot$ , we corrupt the labels with $40 \\%$ probability uniformly randomly to the rest of four classes under the same super class. As a result, the 10 classes under super class ‘vehicle $_ { 1 } ,$ and ‘vehicle $_ { 2 } \\cdot$ have high label noise level and the corruption are only within the same super class. Heteroskedasticity of the labels and imbalance of the inputs commonly coexist in the real world settings. HAR can take both of them into account. To understand the challenge imposed by the entanglements of heteroskedasticity and imbalance, and compare HAR with the aforementioned baselines, we inject data imbalance concurrently with the heteroskedastic noise. We remove samples from the corrupted classes to simulate the most difficult scenario — the rare and noisy groups overfit significantly. (A more benign interaction between the noises and imbalance is that the rare classes have lower noise level, we defer it to Appendix C.3.) We use the imbalance ratio to denote the frequency ratio between the frequent (and clean) classes to the rare (and corrupted) classes. We consider imbalance ratio to be 10 and 100. ", + "bbox": [ + 174, + 487, + 825, + 722 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Result. Table 1 summarizes the results. Since examples from rare classes tend to have larger training and validation loss regardless of whether the labels are correct or not, noise-cleaning based methods might drop excessive examples with correct labels. We examined the noise ratio of dropped samples for INCV under the setting of imbalance ratio equals 10. Among all dropped examples, there is only $1 9 . 2 \\%$ of true noise examples. In addition, the rare class examples selected still have $2 9 . 8 \\%$ of label noise. This explains that the significant decrease of accuracies of Co-teaching and INCV on corrupted and rare classes. Reweighting-based methods tend to suffer from the loss of accuracy in other more frequent classes, which is aligned with the findings in Cao et al. (2019). While the aforementioned baselines struggle to deal with heteroskedasticity and imbalance together, HAR is able to put them under the same regularization framework and achieve significant improvements. Notably, HAR also shows improvement over uniform regularization with optimally tuned strength. This clearly demonstrates the importance of introducing adaptive regularization among all examples for a better trade-off. A more detailed ablation study on the trade-off between training accuracy and validation accuracy can be found in Section 3.3. ", + "bbox": [ + 174, + 729, + 825, + 922 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/0925ad5ac39325ab86f25dafa4c34eda39aa731e7e0496f7aa29d570620eacad.jpg", + "table_caption": [ + "Table 1: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and imbalanced CIFAR-10. HAR significantly improves noisy and rare classes, while keeping the accuracy on other classes almost unaffected. " + ], + "table_footnote": [], + "table_body": "
Imbalance ratio Method10100
Noisy&Rare Cls.Clean Cls.Noisy&Rare Cls.Clean Cls.
ERM52.9 ±1.294.4 ± 0.118.9 ± 1.094.2 ± 0.1
Co-teaching30.2 ± 2.388.9± 0.315.4± 2.886.4± 0.7
INCV48.9 ± 1.794.0± 0.225.8 ± 1.893.8 ± 0.2
MentorNet54.1 ± 1.090.3 ± 0.528.3 ± 1.590.2 ±0.4
L2RW44.3 ± 2.090.1± 0.531.2 ± 1.989.7±0.7
MW-Net55.4 ± 1.191.7 ± 0.535.6 ± 1.692.3 ± 0.5
GCE48.2±0.691.6 ± 0.314.1 ± 2.091.7 ± 0.4
DMI44.7 ± 2.390.7 ±0.814.0 ± 2.191.8 ± 0.6
Unif-reg (optimal)53.9 ± 0.992.1± 0.236.7 ± 1.092.4± 0.3
Ours (HAR)63.5 ± 0.894.3 ± 0.242.4±0.794.0±0.2
", + "bbox": [ + 222, + 155, + 776, + 329 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.2 ABLATION STUDY ON CIFAR ", + "text_level": 1, + "bbox": [ + 174, + 354, + 419, + 369 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We disentangle the problem setting to show the effectiveness of our unified framework. ", + "bbox": [ + 174, + 381, + 743, + 396 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Simulating heteroskedastic noise on CIFAR. We study the uncertainty part of HAR by testing under the setting with only heteroskedastic noise. The type of noise injection is the same as Section 3.1. ", + "bbox": [ + 173, + 402, + 823, + 431 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We report the top-1 validation accuracy of various methods in Table 2. Aligned with our analysis in Section 4, we observe that both noise-cleaning and reweighting based methods don’t get a comparable accuracy on noisy classes with applying strong regularization $\\lambda = 0 . 1$ ) under this heteroskedastic setting. We observe the behavior that too strong regularization impede the model from fitting informative samples, thus it could lead to a decrease on clean classes’ accuracy. On the contrary, too weak regularization leads to overfitting the noisy examples thus the accuracy on noisy classes do not reach the optimal. ", + "bbox": [ + 174, + 438, + 825, + 535 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Interestingly, we find that even the well-studied CIFAR-100 dataset has intrinsic heteroskedasticity and HAR can improve over uniform regularization to some extent. Please refer to Appendix C.2 for the results on CIFAR-100 and Appendix C.1 for results on IMDB-review. ", + "bbox": [ + 176, + 541, + 821, + 584 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/74ceeaf106f364eaae7ce788d873447dcbe93d01bc6ee4833908bc8686f25d51.jpg", + "table_caption": [ + "Table 2: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10 and CIFAR-100 for the noisy classes and the clean classes. " + ], + "table_footnote": [], + "table_body": "
Dataset MethodCIFAR-10CIFAR-100
Avg. Noisy Cls.Avg. Clean Cls.Avg. Noisy Cls.Avg. Clean Cls.
ERM68.6±0.293.6±0.265.3 ± 0.367.8 ± 0.2
Co-teaching64.7 ± 0.489.1± 0.359.8 ± 0.465.3± 0.3
INCV76.7 ± 0.693.0±0.266.2±0.368.6 ±0.2
MentorNet71.1 ± 0.493.7± 0.265.9 ± 0.367.5 ± 0.3
L2RW70.1± 0.392.5 ± 0.365.1± 0.567.0± 0.3
MW-Net75.0± 0.394.4± 0.265.7 ± 0.369.1± 0.2
GCE62.6 ±1.190.2±0.261.2 ±0.666.9 ±0.2
DMI73.2 ± 0.790.8 ± 0.264.8 ± 0.567.1 ± 0.2
Unif-reg (入= 0.1)77.5 ± 0.692.3± 0.269.3 ± 0.566.6 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1±0.268.5 ± 0.368.6 ±0.2
Ours (HAR)80.7 ± 0.394.5 ± 0.274.2 ± 0.369.3±0.2
", + "bbox": [ + 204, + 638, + 792, + 824 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Simulating data imbalance on CIFAR. We study the density part of HAR by testing under the setting with only data imbalance. We follow the same setting as Cao et al. (2019) to create imbalanced CIFAR. Long-tailed imbalance follows an exponential decay in sample sizes across different classes. For step imbalance setting, all rare classes have the same sample size, as do all frequent classes. Our approach achieves better results than LDAM-DRW and is comparable to recent state-of-the-art methods under the imbalanced setting. ", + "bbox": [ + 173, + 839, + 826, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/f742ad4dae7372693001d94c3f17026d72ec63c55bd3190cf9813b46aba88127.jpg", + "table_caption": [ + "Table 3: Top-1 validation errors of ResNet-32 on imbalanced CIFAR-10 and CIFAR-100. " + ], + "table_footnote": [], + "table_body": "
DatasetImbalanced CIFAR-10Imbalanced CIFAR-100
Imbalance Typelong-tailedsteplong-tailedstep
Imbalance Ratio10010100101001010010
ERM29.6413.6136.7017.5061.6844.3061.4545.37
Focal29.6213.3436.0916.3661.5944.2261.4346.54
CB Focal25.4312.9039.7316.5463.9842.0180.2449.98
LDAM-DRW22.9711.8423.0812.1957.9641.2954.6440.54
BBN (Zhou et al., 2020)20.1811.6821.6411.9957.4440.8857.4440.36
HAR-DRW20.4610.6220.2711.5855.3538.9851.7337.54
", + "bbox": [ + 204, + 127, + 794, + 270 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/ae1989ab59fa908f6a93e08e6192c658ef0ac8e459c9608d4c224e971f100d7a.jpg", + "table_caption": [ + "Table 4: Validation accuracy of ResNet-50 when tuning the regularization strength on mini WebVision. HAR stands out of the trade-off constraint of fitting and generalization. " + ], + "table_footnote": [], + "table_body": "
Train AccVal Acc
Reg StrengthTop1Top5Top1Top 5
069.0188.6459.4080.84
Unif-reg (入= 0.01)68.9688.5464.3286.11
Unif-reg (λ= 0.02)67.0287.5164.4085.92
Unif-reg (入= 0.05)65.1186.3365.8086.84
Unif-reg (λ = 0.1)63.3584.9865.0486.56
Adaptive (HAR)69.1288.4169.2088.96
", + "bbox": [ + 323, + 323, + 674, + 440 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "3.3 EVALUATION ON WEBVISION WITH REAL-WORLD HETEROGENEITY ", + "text_level": 1, + "bbox": [ + 174, + 467, + 681, + 482 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "WebVision (Li et al., 2017) contains 2.4 million images crawled from Google and Flickr using 1,000 labels shared with the ImageNet dataset. Its training set is both heteroskedastic and imbalanced (detailed statistics can be found in (Li et al., 2017)), and it is considered as a popular benchmark for noise robust learning. As the full dataset is very large, we follow (Jiang et al., 2018) to use a mini version, which contains the first 50 classes of the Google subset of the data. Following the standard protocol (Jiang et al., 2018), we test the trained model on the WebVision validation set and the ImageNet validation set. We use ResNet-50 for ablation study and InceptionResNet-v2 for a fair comparison with the baselines. We report results comparing against other state-of-the-art approaches in Table 5. Strikingly, HAR achieves significant improvement. ", + "bbox": [ + 173, + 492, + 825, + 619 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Ablation study. We demonstrate the trade-off between training accuracy and validation accuracy on mini WebVision with various uniform regularization strength and HAR in Table 4. It’s evident that when we gradually increase the overall uniform regularization strength, the training accuracy continues to decrease, and the validation accuracy reaches its peak at 5e-2. While a strong regularization could improve generalization, it reduces deep networks’ capacity to fit the training data. However, with our proposed HAR, we only enforce strong regularization on a subset so that we improve the generalization on noisier groups while maintaining the overall training accuracy not affected. ", + "bbox": [ + 174, + 626, + 825, + 723 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 744, + 344, + 761 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our work is closely related to the following methods and directions. ", + "bbox": [ + 174, + 776, + 619, + 791 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Noise-cleaning. The key idea of noise-cleaning is to identify and remove (or re-label) examples with wrong annotations. The general procedure for identifying mislabeled instances has a long history (Brodley & Friedl, 1999; Wilson & Martinez, 1997; Zhao & Nishida, 1995). Some recent works tailored this idea for deep neural networks. Veit et al. (2017) trains a label cleaning network on a small set of data with clean labels, and uses this model to identify noises in large datasets. To circumvent the requirement of a clean subset, Malach & Shalev-Shwartz (2017) train two networks simultaneously and perform update steps only in case of disagreement. Similarly, in co-teaching (Han et al., 2018), each network selects a certain number of small-loss samples and feeds them to its peer network. Chen et al. (2019) further extends the co-training strategy and comes up with an iterative version that performs even better empirically. Recently Song et al. (2020) discovers that it is not necessary to maintain two networks. Removing examples whose training loss exceeds a certain threshold before learning rate decay can also get robust performance. ", + "bbox": [ + 174, + 797, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/98445b556671984cf4d9574355d3cd581207786a7f407bf0421a0b7507660b20.jpg", + "table_caption": [ + "Table 5: Validation accuracy of InceptionResNet-v2 on WebVision and ImageNet validation sets. HAR demonstrates significant improvements over the previous state-of-the-arts. " + ], + "table_footnote": [], + "table_body": "
Train Test Methodmini WebVisionfull WebVision
WebVisionImageNetWebVisionImageNet
Top 1Top5Top 1Top 5Top 1Top 5Top 1Top 5
ERM62.580.858.581.869.787.062.983.6
Co-teaching63.685.261.584.71-11
INCV65.285.361.685.0--1-
MentorNet63.081.457.879.970.888.062.583.0
Ours (HAR)75.590.770.390.075.090.667.186.7
", + "bbox": [ + 235, + 141, + 763, + 258 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 287, + 823, + 330 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Reweighting. Reweighting training data has shown its effectiveness on noisy data (Liu & Tao, 2015). Its challenge lies in the difficulty of weights estimation. Ren et al. (2018) proposes a meta-learning algorithm to assign weights to training examples based on its gradient direction with the one on a clean validation set. Recently, Shu et al. (2019) proposes to learn an explicit loss-weight function to mitigate the optimizing issue of (Ren et al., 2018). Another line of work resorts to curriculum learning by either designing an easy-to-hard strategy of training (Guo et al., 2018) or introducing an extra network (Jiang et al., 2018) to assign weights. ", + "bbox": [ + 174, + 337, + 825, + 434 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Noise-cleaning and reweighting methods usually rely on the empirical loss to determine if a sample is noisy. However, when the dataset is heteroskedastic, each example’s training/validation loss no longer correlates well with its noise level. In such cases, we argue that changing the strength of regularization is a more conservative adaption and suffers less from uncertain estimation, compared to changing the weights of losses (Please refer to Section C.4 for empirical justifications). ", + "bbox": [ + 174, + 441, + 825, + 511 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Robust loss function. Another line of works has attempted to design robust loss functions (Ghosh et al., 2017; Xu et al., 2019; Zhang & Sabuncu, 2018; Patrini et al., 2017; Cheng et al., 2017; Menon et al., 2016). They usually rely on prior assumption about latent transition matrix that might not hold in practice. On the contrary, we focus on more realistic settings. ", + "bbox": [ + 174, + 518, + 825, + 574 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Regularization. Regularization based techniques have also been explored to combat label noise. Li et al. (2019) proves that SGD with early stopping is robust to label noise. Hu et al. (2020) provides theoretical analysis of two additional regularization methods. While these methods consider a uniform regularization on all training examples, our work emphasizes on adjusting the weights of regularizers in search of a better generalization than uniform assignment. ", + "bbox": [ + 174, + 582, + 825, + 651 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 675, + 318, + 691 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We propose a unified framework (HAR) for training on heteroskedastic and imbalanced datasets. Our method achieves significant improvements over the previous state-of-the-arts on a variety of benchmark vision and language tasks. We provide theoretical results as well as empirical justifications by showing that ambiguous, mislabeled, and rare examples all benefit from stronger regularization. We further provide the formula for optimal weighting of regularization. Heteroskedasticity of datasets is a fascinating direction worth exploring, and it is an important step towards a better understanding of real-world scenarios in the wild. ", + "bbox": [ + 174, + 710, + 825, + 808 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 834, + 367, + 849 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Toyota Research Institute (\"TRI\") provided funds and computational resources to assist the authors with their research but this article solely reflects the opinions and conclusions of its authors and not TRI or any other Toyota entity. YC is supported by Stanford Graduate Fellowship. TM acknowledges support of Google Faculty Award. The work is also partially supported by SDSI and SAIL at Stanford. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 285, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "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. In Proceedings of the 34th International Conference on Machine Learning-Volume 70, pp. 233–242. JMLR. org, 2017. ", + "bbox": [ + 173, + 126, + 826, + 183 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Carla E Brodley and Mark A Friedl. Identifying mislabeled training data. Journal of artificial intelligence research, 11:131–167, 1999. ", + "bbox": [ + 171, + 190, + 823, + 219 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaidi Cao, Colin Wei, Adrien Gaidon, Nikos Arechiga, and Tengyu Ma. Learning imbalanced datasets with label-distribution-aware margin loss. In Advances in Neural Information Processing Systems, pp. 1565–1576, 2019. ", + "bbox": [ + 176, + 227, + 821, + 270 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pengfei Chen, Ben Ben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing deep neural networks trained with noisy labels. In International Conference on Machine Learning, pp. 1062–1070, 2019. ", + "bbox": [ + 171, + 277, + 825, + 320 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jiacheng Cheng, Tongliang Liu, Kotagiri Ramamohanarao, and Dacheng Tao. Learning with bounded instance-and label-dependent label noise. arXiv preprint arXiv:1709.03768, 2017. ", + "bbox": [ + 171, + 329, + 823, + 358 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on effective number of samples. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 9268–9277, 2019. ", + "bbox": [ + 174, + 366, + 825, + 410 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Benoît Frénay and Michel Verleysen. Classification in the presence of label noise: a survey. IEEE transactions on neural networks and learning systems, 25(5):845–869, 2013. ", + "bbox": [ + 171, + 416, + 823, + 446 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aritra Ghosh, Himanshu Kumar, and PS Sastry. Robust loss functions under label noise for deep neural networks. In Thirty-First AAAI Conference on Artificial Intelligence, 2017. ", + "bbox": [ + 171, + 454, + 821, + 484 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sheng Guo, Weilin Huang, Haozhi Zhang, Chenfan Zhuang, Dengke Dong, Matthew R Scott, and Dinglong Huang. Curriculumnet: Weakly supervised learning from large-scale web images. In Proceedings of the European Conference on Computer Vision (ECCV), pp. 135–150, 2018. ", + "bbox": [ + 178, + 491, + 823, + 535 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Guy Hacohen and Daphna Weinshall. On the power of curriculum learning in training deep networks. In International Conference on Machine Learning, pp. 2535–2544, 2019. ", + "bbox": [ + 171, + 542, + 825, + 571 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor Tsang, and Masashi Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In Advances in neural information processing systems, pp. 8527–8537, 2018. ", + "bbox": [ + 178, + 579, + 823, + 623 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 176, + 630, + 823, + 672 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "W Hu, Z Li, and D Yu. Simple and effective regularization methods for training on noisily labeled data with generalization guarantee. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 681, + 825, + 723 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv preprint arXiv:1508.01991, 2015. ", + "bbox": [ + 173, + 732, + 821, + 761 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning datadriven curriculum for very deep neural networks on corrupted labels. In International Conference on Machine Learning, pp. 2304–2313, 2018. ", + "bbox": [ + 171, + 768, + 825, + 813 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 820, + 823, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009. ", + "bbox": [ + 171, + 858, + 823, + 873 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mingchen Li, Mahdi Soltanolkotabi, and Samet Oymak. Gradient descent with early stopping is provably robust to label noise for overparameterized neural networks. arXiv preprint arXiv:1903.11680, 2019. ", + "bbox": [ + 176, + 882, + 826, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual learning and understanding from web data. arXiv preprint arXiv:1708.02862, 2017. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tongliang Liu and Dacheng Tao. Classification with noisy labels by importance reweighting. IEEE Transactions on pattern analysis and machine intelligence, 38(3):447–461, 2015. ", + "bbox": [ + 173, + 141, + 823, + 171 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X Yu. Large-scale long-tailed recognition in an open world. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 2537–2546, 2019. ", + "bbox": [ + 178, + 180, + 820, + 223 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew L Maas, Raymond E Daly, Peter T Pham, Dan Huang, Andrew Y Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the 49th annual meeting of the association for computational linguistics: Human language technologies-volume 1, pp. 142–150. Association for Computational Linguistics, 2011. ", + "bbox": [ + 173, + 232, + 826, + 290 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Eran Malach and Shai Shalev-Shwartz. Decoupling\" when to update\" from\" how to update\". In Advances in Neural Information Processing Systems, pp. 960–970, 2017. ", + "bbox": [ + 174, + 299, + 823, + 329 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aditya Krishna Menon, Brendan Van Rooyen, and Nagarajan Natarajan. Learning from binary labels with instance-dependent corruption. arXiv preprint arXiv:1605.00751, 2016. ", + "bbox": [ + 174, + 337, + 823, + 367 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Baharan Mirzasoleiman, Kaidi Cao, and Jure Leskovec. Coresets for robust training of neural networks against noisy labels. Advances in Neural Information Processing Systems, 33, 2020. ", + "bbox": [ + 173, + 376, + 823, + 406 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rahul Parhi and Robert D Nowak. Minimum\" norm\" neural networks are splines. arXiv preprint arXiv:1910.02333, 2019. ", + "bbox": [ + 171, + 415, + 823, + 444 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in pytorch. 2017. ", + "bbox": [ + 174, + 453, + 825, + 496 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making deep neural networks robust to label noise: A loss correction approach. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1944–1952, 2017. ", + "bbox": [ + 173, + 506, + 823, + 549 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexandre Pintore, Paul Speckman, and Chris C Holmes. Spatially adaptive smoothing splines. Biometrika, 93(1):113–125, 2006. ", + "bbox": [ + 174, + 558, + 821, + 588 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mengye Ren, Wenyuan Zeng, Bin Yang, and Raquel Urtasun. Learning to reweight examples for robust deep learning. In International Conference on Machine Learning, pp. 4334–4343, 2018. ", + "bbox": [ + 173, + 597, + 825, + 627 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Pedro H. P. Savarese, Itay Evron, Daniel Soudry, and Nathan Srebro. How do infinite width bounded norm networks look in function space? In COLT, 2019. ", + "bbox": [ + 173, + 635, + 823, + 665 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zuofeng Shang, Guang Cheng, et al. Local and global asymptotic inference in smoothing spline models. The Annals of Statistics, 41(5):2608–2638, 2013. ", + "bbox": [ + 173, + 674, + 825, + 704 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jun Shu, Qi Xie, Lixuan Yi, Qian Zhao, Sanping Zhou, Zongben Xu, and Deyu Meng. Meta-weightnet: Learning an explicit mapping for sample weighting. In Advances in Neural Information Processing Systems, pp. 1917–1928, 2019. ", + "bbox": [ + 173, + 712, + 825, + 756 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Sokolic, R. Giryes, G. Sapiro, and M. R. D. Rodrigues. Robust large margin deep neural networks. ´ IEEE Transactions on Signal Processing, 65(16):4265–4280, 2017. ", + "bbox": [ + 169, + 765, + 825, + 795 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiaming Song, Lunjia Hu, Yann Dauphin, Michael Auli, and Tengyu Ma. Robust and on-the-fly dataset denoising for image classification. arXiv preprint arXiv:2003.10647, 2020. ", + "bbox": [ + 169, + 804, + 823, + 833 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ryan J Tibshirani et al. Adaptive piecewise polynomial estimation via trend filtering. The Annals of Statistics, 42(1):285–323, 2014. ", + "bbox": [ + 171, + 843, + 825, + 872 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge Belongie. Learning from noisy large-scale datasets with minimal supervision. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 839–847, 2017. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiao Wang, Pang Du, and Jinglai Shen. Smoothing splines with varying smoothing parameter. Biometrika, 100(4):955–970, 2013. \nYiru Wang, Weihao Gan, Jie Yang, Wei Wu, and Junjie Yan. Dynamic curriculum learning for imbalanced data classification. In Proceedings of the IEEE International Conference on Computer Vision, pp. 5017–5026, 2019. \nYu-Xiong Wang, Deva Ramanan, and Martial Hebert. Learning to model the tail. In Advances in Neural Information Processing Systems, pp. 7029–7039, 2017. \nColin Wei and Tengyu Ma. Data-dependent sample complexity of deep neural networks via lipschitz augmentation. In Advances in Neural Information Processing Systems, pp. 9722–9733, 2019a. \nColin Wei and Tengyu Ma. Improved sample complexities for deep networks and robust classification via an all-layer margin. arXiv preprint arXiv:1910.04284, 2019b. \nD Randall Wilson and Tony R Martinez. Instance pruning techniques. In ICML, volume 97, pp. 400–411, 1997. \nYilun Xu, Peng Cao, Yuqing Kong, and Yizhou Wang. L_dmi: A novel information-theoretic loss function for training deep nets robust to label noise. In Advances in Neural Information Processing Systems, pp. 6222–6233, 2019. \nChiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016. \nZhilu Zhang and Mert Sabuncu. Generalized cross entropy loss for training deep neural networks with noisy labels. In Advances in neural information processing systems, pp. 8778–8788, 2018. \nQi Zhao and Toyoaki Nishida. Using qualitative hypotheses to identify inaccurate data. Journal of Artificial Intelligence Research, 3:119–145, 1995. \nBoyan Zhou, Quan Cui, Xiu-Shen Wei, and Zhao-Min Chen. Bbn: Bilateral-branch network with cumulative learning for long-tailed visual recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 9719–9728, 2020. ", + "bbox": [ + 171, + 92, + 828, + 559 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A PROOFS OF THEOREM 1 ", + "text_level": 1, + "bbox": [ + 176, + 102, + 406, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We prove a general theorem here. In particular, we have the general theorem below. ", + "bbox": [ + 171, + 132, + 722, + 147 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Theorem 2. Assume that $f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }$ . Suppose (1) $\\ell ( a , y )$ is convex and three times continously differentiable with respect to $a$ , (2) there exist constants $0 < c < C < \\infty$ such that $c \\leq I ( X ) \\leq \\bar { C }$ almost surely, and $\\epsilon \\triangleq \\nabla _ { a } \\ell ( f ^ { \\star } ( X ) , Y )$ satisfies $\\mathbb { E } [ \\epsilon | X ] = 0 \\mathrm { \\it \\Omega }$ , $\\mathbb { E } [ \\epsilon ^ { 2 } | X ] = I ( X )$ and $\\mathbb { E } [ \\epsilon ^ { 4 } | X ] < \\infty$ almost surely. Let $r ( t ) = - 1 / ( q ( t ) I ( t ) )$ and $\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t . } \\end{array}$ . If we choose $\\lambda = C _ { 0 } n ^ { - 2 / 5 }$ for some constant $C _ { 0 } > 0$ , the asymptotic mean squared error of $\\hat { f }$ by equation 4 is ", + "bbox": [ + 173, + 150, + 825, + 231 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c6a2f35daa2ba3524636b23ce7bd61b4395e2910afa2abf98b06bfe63130914d.jpg", + "text": "$$\n\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t\n$$", + "text_format": "latex", + "bbox": [ + 241, + 232, + 756, + 270 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "in probability, where $C _ { n }$ is a scalar that only depends on $n$ . ", + "bbox": [ + 174, + 272, + 565, + 286 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "It is easy to check that the logistic loss satisfies the condition of the theorem. ", + "bbox": [ + 174, + 296, + 676, + 311 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The proof strategy of Theorem 2 is adopted from the proof of Theorem 2 of (Wang et al., 2013) by generalizing it from the least square loss to logistic loss. ", + "bbox": [ + 171, + 318, + 823, + 347 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The high level idea is to reformulate $\\hat { f }$ as solutions to ordinary differential equations. Let $( \\gamma _ { v } , h _ { v } )$ be the (normalized) solution of the following equation ", + "bbox": [ + 171, + 354, + 823, + 385 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b8a4db4af9d6efa262b60416d90b62e4a53dee6d07c55dc04bfc06a007322697.jpg", + "text": "$$\n\\begin{array} { r l } & { - \\rho ( t ) h _ { v } ^ { \\prime \\prime } ( t ) = \\gamma _ { v } I ( t ) q ( t ) h _ { v } ( t ) , } \\\\ & { h _ { v } ^ { ' } ( 0 ) = h _ { v } ^ { ' } ( 1 ) = 0 , \\mathrm { ~ a n d ~ } h _ { v } ^ { ' \\prime } ( 0 ) = h _ { v } ^ { ' \\prime } ( 1 ) = 0 . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 346, + 386, + 650, + 431 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We define the the leading term of $\\hat { f } - f ^ { \\star }$ as $S _ { n , \\lambda } ( f ^ { \\star } )$ as ", + "bbox": [ + 174, + 441, + 545, + 459 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/bd041acf74e6c9a42afed2581f43e5f369264f8f49037ab84b79a452afbac0d5.jpg", + "text": "$$\nS _ { n , \\lambda } ( f ^ { \\star } ) = { \\frac { 1 } { n } } \\epsilon _ { i } K _ { X _ { i } } - W _ { \\lambda } f ^ { \\star } ,\n$$", + "text_format": "latex", + "bbox": [ + 372, + 462, + 578, + 492 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d12e0263c5f39d8811659ca77526544c8626609d53d42680e958dbc977ec72c4.jpg", + "text": "$$\nK _ { t } ( \\cdot ) = \\sum _ { v } \\frac { h _ { v } ( t ) } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) \\mathrm { a n d } W _ { \\lambda } h _ { v } ( \\cdot ) = \\frac { \\lambda \\gamma _ { v } } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 494, + 694, + 532 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "By Proposition 2.1 and Theorem 3.4 of Shang et al. (2013), we have ", + "bbox": [ + 174, + 539, + 622, + 554 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/62438ae453c0a80b1ab26fe50451e68c366fc458f539c05e18075d90c2c08787.jpg", + "text": "$$\n\\operatorname* { s u p } _ { x } | \\hat { f } ( x ) - f ^ { \\star } ( x ) - S _ { n , \\lambda } ( f ^ { \\star } ) ( x ) | = o _ { P } ( n ^ { - 1 / 3 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 333, + 558, + 666, + 584 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Following the same proof of Theorem 2 of (Wang et al., 2013), we can simplify the definition of $K _ { t }$ and $W ^ { \\lambda }$ as ", + "bbox": [ + 173, + 587, + 823, + 613 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/104042b649f6b38c434cebe849f9a404ec81eb4ebd35bb20c7ea2c3f45facc52.jpg", + "text": "$$\nK _ { t } ( x ) = \\frac { I ( t ) } { q ( t ) } J ( t , x ) \\mathrm { a n d } W _ { \\lambda } f ^ { \\star } ( t ) = \\lambda r ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 282, + 611, + 714, + 645 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $J ( t , s ) ~ = ~ \\beta \\rho ( s ) Q _ { \\beta } ^ { \\prime } ( s ) L _ { 0 } ( \\beta | Q _ { \\beta } ( t ) - Q _ { \\beta } ( s ) | )$ and $\\begin{array} { r } { Q _ { \\beta } ( t , s ) = \\int _ { 0 } ^ { t } ( r ( s ) \\rho ( s ) ) ^ { - 1 / 2 } ( 1 + } \\end{array}$ $O ( \\beta ^ { - 1 } ) ) d s$ and $\\beta = 1 / \\sqrt { \\lambda }$ . Plugging equation 11 into equation 10, we then have ", + "bbox": [ + 171, + 648, + 830, + 683 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/78e2e5122e513f455d07608408c2c552e1dcef3c0da025e83074f411c9401196.jpg", + "text": "$$\n\\operatorname* { l i m } _ { n \\to \\infty } \\mathrm { M S E } ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t\n$$", + "text_format": "latex", + "bbox": [ + 238, + 685, + 758, + 723 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 738, + 436, + 755 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We develop our core algorithm in PyTorch (Paszke et al., 2017). ", + "bbox": [ + 174, + 768, + 593, + 784 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Implementation details for CIFAR. We follow the simple data augmentation used in (He et al., 2016) with only random crop and horizontal flip. We use ResNet-32 as our base network and repeat all experiments for 3 runs. We use standard SGD with momentum of 0.9, weight decay of $1 \\times \\bar { 1 0 } ^ { - 4 }$ for training. The model is trained with a batch size of 128 for 120 epochs. We anneal the learning rate by a factor of 10 at 80 and 100 epochs. We group the data by class labels, and by default we split $\\mathcal { D }$ equally and randomly into $\\mathcal { D } _ { \\mathrm { t r a i n } }$ and $\\mathcal { D } _ { \\mathrm { v a l } }$ . As for the Jacobian regularizer, we sum over the frobenius norm of the gradients of all normalization layers’ (BN by default) activations with respect to the classification loss. For experiments of HAR, we tune $\\lambda$ so that the largest enforced regularization strength $( \\lambda \\tau _ { i } )$ is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti. ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Implementation details for IMDB-review. We train a two-layer bidirectional LSTM (Huang et al., 2015) with 256 units followed with 0.5 dropout before the linear classifier. The network is trained for 20 epochs with Adam optimizer (Kingma & Ba, 2014). For HAR, we tune $\\lambda$ so that the largest enforced regularization strength $( \\lambda \\tau _ { i } )$ is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti. ", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Implementation details for WebVision. We use the standard data augmentation same as (He et al., 2016) including random crop and horizontal flip. For mini WebVision, We train the network for 90 epochs using standard SGD with a batch size of 128. The initial learning rate is 0.1 and is annealed by a factor of 10 at epoch 60 and 90. For full WebVision, We train the network for 50 epochs using standard SGD with a batch size of 256. The initial learning rate is 0.1 and is annealed by a factor of 10 at epoch 30 and 40. For experiments of HAR, we tune $\\lambda$ so that the largest enforced regularization strength $( \\lambda \\tau _ { i } )$ is 0.1. We train each model with 8 NVIDIA Tesla V100 GPUs. ", + "bbox": [ + 174, + 191, + 825, + 289 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Runtime analysis. Because the pre-trained model only trains on half of the training data and is only done once, the run-time of HAR is at most twice of the time for ERM. Many baselines in our paper use sophisticated pipelines and are slower than HAR. For example, INCV trains 2 models simultaneously for 4 times from random initialization to get a clean training set. MW-Net has a very slow convergence rate, which is a common issue for meta-learning. ", + "bbox": [ + 174, + 306, + 825, + 377 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C ADDITIONAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 400, + 398, + 416 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.1 SIMULATING HETEROSKEDASTIC NOISE ON IMDB-REVIEW. ", + "text_level": 1, + "bbox": [ + 176, + 433, + 630, + 446 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "IMDB-review dataset has a total of 50,000 (25,000 positive and 25,000 negative reviews) movie reviews for binary sentiment classification (Maas et al., 2011). To simulate heteroskedastic noise for this binary classification problem, we project $5 \\%$ of the labels of negative reviews to positive, and $40 \\%$ in the reverse direction. Table 6 summarizes the results. The proposed HAR outperforms the ERM baseline with various strength of uniform regularization. ", + "bbox": [ + 174, + 460, + 825, + 530 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/5e8422ac1ef554c31c234b247a9e25c04caa2cfebce4a0741772ae6e1ab7c16c.jpg", + "table_caption": [ + "Table 6: Top-1 validation accuracy (averaged over 3 runs) on heteroskedastic IMDB-review dataset. " + ], + "table_footnote": [], + "table_body": "
Reg StrengthAcc. of neg. reviewsAcc. of pos. reviewsMean Acc
091.9 ± 2.050.9 ±1.871.4± 0.5
Unif-reg (入= 0.01)94.3 ±1.851.9 ± 2.073.1± 0.3
Unif-reg (入= 0.1)91.5 ±1.964.3 ±1.677.9 ± 0.4
Ours (HAR)93.1 ± 1.572.8±1.783.0 ± 0.3
", + "bbox": [ + 246, + 571, + 750, + 651 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.2 EVALUATION ON CIFAR-100 WITH REAL-WORLD HETEROSKEDASTICITY ", + "bbox": [ + 176, + 681, + 723, + 695 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "It is acknowledged that CIFAR-100 training set contains noisy examples. For instance, some “tiger” examples are labeled as “leopard” (“tiger” is a defined class as well). There are also noisy examples that contain multiple objects, or are more ambiguous in terms of indentity (Song et al., 2020). We find that HAR can improve over uniform regularization on the well-studied CIFAR-100 due to its heteroskedasticity and the results are reported in Table 7. ", + "bbox": [ + 174, + 707, + 826, + 777 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/e0db088405f29470c79b8a73aed317d7d6c82174968cd58b8d000bd25d084a07.jpg", + "table_caption": [ + "Table 7: Top-1 validation accuracy (average over 3 runs) of ResNet-32 on the original CIFAR-100. " + ], + "table_footnote": [], + "table_body": "
Reg StrengthTrain AccVal Acc
096.0±0.169.8± 0.2
Unif-reg (入= 0.001)96.4± 0.170.0± 0.2
Unif-reg (入= 0.01)95.7 ± 0.170.6 ±0.1
Unif-reg (入= 0.1)88.8±0.170.5 ± 0.1
Adaptive (HAR)96.2 ± 0.171.4±0.1
", + "bbox": [ + 339, + 819, + 658, + 911 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As mentioned in Section 3.1, we consider another variant of heteroskedastic and imbalanced dataset such that the rare classes have low noise level. To simulate this setting, we make the clean classes have fewer labels than the corrupted classes on the heteroskedastic CIFAR-10 we created in Section ??. ", + "bbox": [ + 176, + 128, + 823, + 171 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 8 summarizes the results. For the setting of imbalance ratio equals 10, INCV automatically drops $34 . 1 \\%$ of examples from the clean and rare classes, which results in a decrease of mean accuracy on the rare and clean classes. HAR is able to achieve improvements on both noisy classes and rare classes by enforcing the optimal regularization. ", + "bbox": [ + 174, + 178, + 825, + 234 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/594c8ed960a196e922f1e8eecdcf757f4e39bc0335b2df40a0aa0695929b6376.jpg", + "table_caption": [ + "Table 8: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and imbalanced CIFAR-10. " + ], + "table_footnote": [], + "table_body": "
Imbalance ratio Method10100
Noisy Cls.Rare Cls.Noisy Cls.Rare Cls.
ERM59.9 ± 1.165.2 ± 0.760.4± 0.97.9 ± 1.3
Co-teaching63.1 ± 2.359.4 ± 1.453.8 ± 1.94.4±1.8
INCV74.5 ± 1.263.7 ± 0.868.3 ± 1.82.1 ±1.3
MentorNet67.3 ± 1.665.5 ± 1.263.3 ± 1.510.8 ±1.9
L2RW65.8 ±1.466.3 ± 1.262.4 ± 2.111.3 ± 2.9
MW-Net71.4± 0.667.7 ± 0.665.0± 1.613.5 ± 2.4
GCE64.6 ± 1.160.2 ± 1.371.2 ± 1.92.6±1.4
DMI72.3 ± 1.563.3 ±1.270.8 ±1.76.2 ±1.9
Ours (HAR)76.1 ± 0.872.1 ± 1.073.0 ± 1.626.1±0.8
", + "bbox": [ + 259, + 287, + 736, + 449 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.4 COMPARING THE EFFECT OF WEIGHTS ON LOSSES AND REGULARIZERS ", + "text_level": 1, + "bbox": [ + 173, + 473, + 707, + 488 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "As discussed in Section 4, we train several classifiers with alternative weights selection scheme which are not optimal. We consider the following two alternatives. (1) random: we draw the weights from a uniform distribution with the same mean as the weights of MW-Net and HAR. (2) inverse: we take the inverse of the weights learned by MW-Net and HAR and then normalize them to ensure the average reweighting/regularization strength remains the same. ", + "bbox": [ + 174, + 498, + 825, + 569 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We conducted experiments on the heteroskedastic CIFAR-10 introduced in Section ?? and the results are summarized in Table 9. We could conclude that changing the weights of the regularizer is a more conservative adaption and less susceptible to uncertain estimation than reweighting. ", + "bbox": [ + 174, + 575, + 825, + 618 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/233559ee95c0dfdc49b8e15f237a00e907ef5f5126428a1e8de37e94b59eb072.jpg", + "table_caption": [ + "Table 9: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10 by changing the weighting scheme. " + ], + "table_footnote": [], + "table_body": "
MethodAvg. Noisy Cls.Avg. . Clean Cls.
ERM68.6±0.293.6 ± 0.2
Reweight (MW-Net)75.0 ± 0.394.4± 0.2
Reweight (random)62.1±0.592.9 ± 0.5
Reweight (inverse)13.1 ± 0.990.9 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1± 0.2
Adap-reg (HAR)80.7±0.394.5 ±0.2
Adap-reg (random)74.8 ± 0.494.2±0.2
Adap-reg (inverse)73.2 ± 0.594.0± 0.2
", + "bbox": [ + 310, + 670, + 681, + 808 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.5 VISUALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 824, + 330, + 838 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In order to better understand how the proposed HAR works on real-world heteroskedastic datasets, we plot the per-class key statistics used by HAR and validation errors in Figure 4. We observe that HAR outperforms the tuned uniform regularization baseline on the majority of the classes. ", + "bbox": [ + 174, + 851, + 826, + 893 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/c076753ebcd5b8f3da8f361db87212d171eb3c37ef46afdae950c98d61c3d805.jpg", + "image_caption": [ + "Figure 4: Visualizations of per-class top-1 error and regularization strength of HAR on mini WebVision dataset. The classes are sorted in the ascending order of applied regularization strength. " + ], + "image_footnote": [], + "bbox": [ + 179, + 294, + 820, + 688 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_middle.json b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..d12fa574e2ad779c62cb7e214dae915caba9b96d --- /dev/null +++ b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_middle.json @@ -0,0 +1,42157 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 507, + 97 + ], + "score": 1.0, + "content": "HETEROSKEDASTIC AND IMBALANCED DEEP LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 400, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 400, + 118 + ], + "score": 1.0, + "content": "ING WITH ADAPTIVE REGULARIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 133, + 483, + 169 + ], + "lines": [ + { + "bbox": [ + 114, + 134, + 484, + 148 + ], + "spans": [ + { + "bbox": [ + 114, + 134, + 141, + 148 + ], + "score": 1.0, + "content": "Kaidi", + "type": "text" + }, + { + "bbox": [ + 141, + 134, + 163, + 146 + ], + "score": 0.71, + "content": "\\mathbf { C a o ^ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 134, + 262, + 148 + ], + "score": 1.0, + "content": ", Yining Chen1, Junwei", + "type": "text" + }, + { + "bbox": [ + 262, + 134, + 280, + 146 + ], + "score": 0.83, + "content": "\\mathbf { L } \\mathbf { u } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 134, + 484, + 148 + ], + "score": 1.0, + "content": ", Nikos Arechiga3, Adrien Gaidon3, Tengyu Ma1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 145, + 392, + 159 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 392, + 159 + ], + "score": 1.0, + "content": "1Stanford University, 2Harvard University, 3Toyota Research Institute", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 158, + 354, + 170 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 354, + 170 + ], + "score": 1.0, + "content": "{kaidicao,cynnjjs,tengyuma}@stanford.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 224, + 469, + 367 + ], + "lines": [ + { + "bbox": [ + 141, + 225, + 469, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 469, + 236 + ], + "score": 1.0, + "content": "Real-world large-scale datasets are heteroskedastic and imbalanced – labels have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 470, + 247 + ], + "score": 1.0, + "content": "varying levels of uncertainty and label distributions are long-tailed. Heteroskedas-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 247, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 247, + 470, + 258 + ], + "score": 1.0, + "content": "ticity and imbalance challenge deep learning algorithms due to the difficulty of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 469, + 271 + ], + "score": 1.0, + "content": "distinguishing among mislabeled, ambiguous, and rare examples. Addressing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "heteroskedasticity and imbalance simultaneously is under-explored. We propose", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 292 + ], + "score": 1.0, + "content": "a data-dependent regularization technique for heteroskedastic datasets that regu-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "larizes different regions of the input space differently. Inspired by the theoretical", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 313 + ], + "score": 1.0, + "content": "derivation of the optimal regularization strength in a one-dimensional nonpara-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "metric classification setting, our approach adaptively regularizes the data points", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 142, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "in higher-uncertainty, lower-density regions more heavily. We test our method on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "score": 1.0, + "content": "several benchmark tasks, including a real-world heteroskedastic and imbalanced", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "dataset, WebVision. Our experiments corroborate our theory and demonstrate a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 441, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 441, + 369 + ], + "score": 1.0, + "content": "significant improvement over other methods in noise-robust deep learning.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 109, + 388, + 206, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 208, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 208, + 402 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 413, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "In real-world machine learning applications, even well-curated training datasets have various types of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 425, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 436 + ], + "score": 1.0, + "content": "heterogeneity. Two main types of heterogeneity are: (1) data imbalance: the input or label distribution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "score": 1.0, + "content": "often has a long-tailed density, and (2) heteroskedasticity: the labels given inputs have varying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "levels of uncertainties across subsets of data stemming from various sources such as the intrinsic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "ambiguity of the data or annotation errors. Many deep learning algorithms have been proposed for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "imbalanced datasets (e.g., see (Wang et al., 2017; Cao et al., 2019; Cui et al., 2019; Liu et al., 2019)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "and the reference therein). However, heteroskedasticity, a classical notion studied extensively in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "statistical community (Pintore et al., 2006; Wang et al., 2013; Tibshirani et al., 2014), has so far", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "been under-explored in deep learning. This paper focuses on addressing heteroskedasticity and its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 304, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 304, + 525 + ], + "score": 1.0, + "content": "interaction with data imbalance in deep learning.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Heteroskedasticity is often studied in regression analysis and refers to the property that the distribution", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "of the error varies across inputs. In this work, we mostly focus on classification, though the developed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "technique also applies to regression. Here, heteroskedasticity reflects how the uncertainty in the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 203, + 574 + ], + "score": 1.0, + "content": "conditional distribution", + "type": "text" + }, + { + "bbox": [ + 203, + 562, + 223, + 574 + ], + "score": 0.9, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 561, + 297, + 574 + ], + "score": 1.0, + "content": ", or the entropy of", + "type": "text" + }, + { + "bbox": [ + 297, + 562, + 317, + 574 + ], + "score": 0.88, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 561, + 412, + 574 + ], + "score": 1.0, + "content": ", varies as a function of", + "type": "text" + }, + { + "bbox": [ + 412, + 564, + 419, + 572 + ], + "score": 0.67, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ". Real-world datasets", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 573, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 585 + ], + "score": 1.0, + "content": "are often heteroskedastic. For example, Li et al. (2017) shows that the WebVision dataset has a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 583, + 388, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 388, + 597 + ], + "score": 1.0, + "content": "varying number of ambiguous or true noisy examples across classes.2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "Conversely, we consider a dataset to be homoscedastic if every example is mislabeled with a fixed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 145, + 623 + ], + "score": 1.0, + "content": "probably", + "type": "text" + }, + { + "bbox": [ + 145, + 614, + 150, + 622 + ], + "score": 0.37, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 612, + 505, + 623 + ], + "score": 1.0, + "content": ", as assumed by many prior theoretical and empirical works on label corruption (Ghosh", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "et al., 2017; Han et al., 2018; Jiang et al., 2018; Mirzasoleiman et al., 2020). We note that varying", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 162, + 646 + ], + "score": 1.0, + "content": "uncertainty in", + "type": "text" + }, + { + "bbox": [ + 163, + 634, + 184, + 646 + ], + "score": 0.77, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "can come from at least two sources: the intrinsic semantic ambiguity of the input,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "and the (data-dependent) mislabeling introduced by the annotation process. Our approach can handle", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "both types of noisy examples in a unified way, but for the sake of comparisons with past methods, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "call them “ambiguous examples” and “mislabeled examples” respectively, and refer to both of them", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 192, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 192, + 690 + ], + "score": 1.0, + "content": "as “noisy examples”.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 698, + 348, + 713 + ], + "spans": [ + { + "bbox": [ + 119, + 698, + 348, + 713 + ], + "score": 1.0, + "content": "1Code available at https://github.com/kaidic/HAR.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "2See Figure 4 of (Li et al., 2017), the number of votes for each example indicates the level of uncertainty of", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 157, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 157, + 732 + ], + "score": 1.0, + "content": "that example.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 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, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 507, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 507, + 97 + ], + "score": 1.0, + "content": "HETEROSKEDASTIC AND IMBALANCED DEEP LEARN-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 400, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 400, + 118 + ], + "score": 1.0, + "content": "ING WITH ADAPTIVE REGULARIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 114, + 133, + 483, + 169 + ], + "lines": [ + { + "bbox": [ + 114, + 134, + 484, + 148 + ], + "spans": [ + { + "bbox": [ + 114, + 134, + 141, + 148 + ], + "score": 1.0, + "content": "Kaidi", + "type": "text" + }, + { + "bbox": [ + 141, + 134, + 163, + 146 + ], + "score": 0.71, + "content": "\\mathbf { C a o ^ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 134, + 262, + 148 + ], + "score": 1.0, + "content": ", Yining Chen1, Junwei", + "type": "text" + }, + { + "bbox": [ + 262, + 134, + 280, + 146 + ], + "score": 0.83, + "content": "\\mathbf { L } \\mathbf { u } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 134, + 484, + 148 + ], + "score": 1.0, + "content": ", Nikos Arechiga3, Adrien Gaidon3, Tengyu Ma1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 145, + 392, + 159 + ], + "spans": [ + { + "bbox": [ + 113, + 145, + 392, + 159 + ], + "score": 1.0, + "content": "1Stanford University, 2Harvard University, 3Toyota Research Institute", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 158, + 354, + 170 + ], + "spans": [ + { + "bbox": [ + 113, + 158, + 354, + 170 + ], + "score": 1.0, + "content": "{kaidicao,cynnjjs,tengyuma}@stanford.edu", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 113, + 134, + 484, + 170 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 224, + 469, + 367 + ], + "lines": [ + { + "bbox": [ + 141, + 225, + 469, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 469, + 236 + ], + "score": 1.0, + "content": "Real-world large-scale datasets are heteroskedastic and imbalanced – labels have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 235, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 235, + 470, + 247 + ], + "score": 1.0, + "content": "varying levels of uncertainty and label distributions are long-tailed. Heteroskedas-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 247, + 470, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 247, + 470, + 258 + ], + "score": 1.0, + "content": "ticity and imbalance challenge deep learning algorithms due to the difficulty of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 469, + 271 + ], + "score": 1.0, + "content": "distinguishing among mislabeled, ambiguous, and rare examples. Addressing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 268, + 469, + 281 + ], + "score": 1.0, + "content": "heteroskedasticity and imbalance simultaneously is under-explored. We propose", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 279, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 279, + 470, + 292 + ], + "score": 1.0, + "content": "a data-dependent regularization technique for heteroskedastic datasets that regu-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 303 + ], + "score": 1.0, + "content": "larizes different regions of the input space differently. Inspired by the theoretical", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 301, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 301, + 470, + 313 + ], + "score": 1.0, + "content": "derivation of the optimal regularization strength in a one-dimensional nonpara-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "metric classification setting, our approach adaptively regularizes the data points", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 142, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "in higher-uncertainty, lower-density regions more heavily. We test our method on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 346 + ], + "score": 1.0, + "content": "several benchmark tasks, including a real-world heteroskedastic and imbalanced", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 357 + ], + "score": 1.0, + "content": "dataset, WebVision. Our experiments corroborate our theory and demonstrate a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 441, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 441, + 369 + ], + "score": 1.0, + "content": "significant improvement over other methods in noise-robust deep learning.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 225, + 470, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 388, + 206, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 208, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 208, + 402 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 413, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "In real-world machine learning applications, even well-curated training datasets have various types of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 425, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 436 + ], + "score": 1.0, + "content": "heterogeneity. Two main types of heterogeneity are: (1) data imbalance: the input or label distribution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 449 + ], + "score": 1.0, + "content": "often has a long-tailed density, and (2) heteroskedasticity: the labels given inputs have varying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "levels of uncertainties across subsets of data stemming from various sources such as the intrinsic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "ambiguity of the data or annotation errors. Many deep learning algorithms have been proposed for", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "imbalanced datasets (e.g., see (Wang et al., 2017; Cao et al., 2019; Cui et al., 2019; Liu et al., 2019)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 504, + 491 + ], + "score": 1.0, + "content": "and the reference therein). However, heteroskedasticity, a classical notion studied extensively in the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 505, + 502 + ], + "score": 1.0, + "content": "statistical community (Pintore et al., 2006; Wang et al., 2013; Tibshirani et al., 2014), has so far", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "been under-explored in deep learning. This paper focuses on addressing heteroskedasticity and its", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 304, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 304, + 525 + ], + "score": 1.0, + "content": "interaction with data imbalance in deep learning.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 414, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 541 + ], + "score": 1.0, + "content": "Heteroskedasticity is often studied in regression analysis and refers to the property that the distribution", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "of the error varies across inputs. In this work, we mostly focus on classification, though the developed", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "technique also applies to regression. Here, heteroskedasticity reflects how the uncertainty in the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 203, + 574 + ], + "score": 1.0, + "content": "conditional distribution", + "type": "text" + }, + { + "bbox": [ + 203, + 562, + 223, + 574 + ], + "score": 0.9, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 561, + 297, + 574 + ], + "score": 1.0, + "content": ", or the entropy of", + "type": "text" + }, + { + "bbox": [ + 297, + 562, + 317, + 574 + ], + "score": 0.88, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 561, + 412, + 574 + ], + "score": 1.0, + "content": ", varies as a function of", + "type": "text" + }, + { + "bbox": [ + 412, + 564, + 419, + 572 + ], + "score": 0.67, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ". Real-world datasets", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 573, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 506, + 585 + ], + "score": 1.0, + "content": "are often heteroskedastic. For example, Li et al. (2017) shows that the WebVision dataset has a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 583, + 388, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 388, + 597 + ], + "score": 1.0, + "content": "varying number of ambiguous or true noisy examples across classes.2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 529, + 506, + 597 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "Conversely, we consider a dataset to be homoscedastic if every example is mislabeled with a fixed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 145, + 623 + ], + "score": 1.0, + "content": "probably", + "type": "text" + }, + { + "bbox": [ + 145, + 614, + 150, + 622 + ], + "score": 0.37, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 612, + 505, + 623 + ], + "score": 1.0, + "content": ", as assumed by many prior theoretical and empirical works on label corruption (Ghosh", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "et al., 2017; Han et al., 2018; Jiang et al., 2018; Mirzasoleiman et al., 2020). We note that varying", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 162, + 646 + ], + "score": 1.0, + "content": "uncertainty in", + "type": "text" + }, + { + "bbox": [ + 163, + 634, + 184, + 646 + ], + "score": 0.77, + "content": "y \\mid x", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "can come from at least two sources: the intrinsic semantic ambiguity of the input,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "and the (data-dependent) mislabeling introduced by the annotation process. Our approach can handle", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "both types of noisy examples in a unified way, but for the sake of comparisons with past methods, we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 678 + ], + "score": 1.0, + "content": "call them “ambiguous examples” and “mislabeled examples” respectively, and refer to both of them", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 192, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 192, + 690 + ], + "score": 1.0, + "content": "as “noisy examples”.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 600, + 506, + 690 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 284, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 284, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 284, + 213 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 284, + 213 + ], + "score": 0.962, + "type": "image", + "image_path": "b0aa3f523002d1c7bc925b084339bea809fac9e5918ef2d25e1e376f5cd78fab.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 284, + 96.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 96.0, + 284, + 109.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 109.0, + 284, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 122.0, + 284, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 135.0, + 284, + 148.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 148.0, + 284, + 161.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 161.0, + 284, + 174.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 174.0, + 284, + 187.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 187.0, + 284, + 200.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 200.0, + 284, + 213.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 287, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 224, + 288, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 288, + 236 + ], + "score": 1.0, + "content": "Figure 1: Histogram of the distributions of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 236, + 287, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 287, + 247 + ], + "score": 1.0, + "content": "losses on an imbalanced and noisy CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 246, + 287, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 287, + 258 + ], + "score": 1.0, + "content": "dataset. Clean but rare examples tend to have", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 257, + 287, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 287, + 270 + ], + "score": 1.0, + "content": "larger losses, similar to the noisy examples in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 267, + 175, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 175, + 281 + ], + "score": 1.0, + "content": "frequent classes.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + } + ], + "index": 12.75 + }, + { + "type": "image", + "bbox": [ + 302, + 84, + 499, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 302, + 84, + 499, + 213 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 302, + 84, + 499, + 213 + ], + "spans": [ + { + "bbox": [ + 302, + 84, + 499, + 213 + ], + "score": 0.957, + "type": "image", + "image_path": "9499897cf2f9e6c9f97933d2b6e3c3eb440e25eb54680fc3ee92050128d75b8b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 302, + 84, + 499, + 98.33333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 302, + 98.33333333333333, + 499, + 112.66666666666666 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 302, + 112.66666666666666, + 499, + 126.99999999999999 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 302, + 126.99999999999999, + 499, + 141.33333333333331 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 302, + 141.33333333333331, + 499, + 155.66666666666666 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 302, + 155.66666666666666, + 499, + 170.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 302, + 170.0, + 499, + 184.33333333333334 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 302, + 184.33333333333334, + 499, + 198.66666666666669 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 302, + 198.66666666666669, + 499, + 213.00000000000003 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 297, + 224, + 506, + 280 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 297, + 224, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 297, + 224, + 506, + 236 + ], + "score": 1.0, + "content": "Figure 2: Real-world datasets have various sources", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 297, + 236, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 297, + 236, + 506, + 246 + ], + "score": 1.0, + "content": "of heterogeneity and it could be hard to distin-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 295, + 246, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 295, + 246, + 507, + 259 + ], + "score": 1.0, + "content": "guish one from another. They require mutually-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 296, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 296, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "exclusive reweighting strategy, but they all benefit", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 297, + 269, + 414, + 280 + ], + "spans": [ + { + "bbox": [ + 297, + 269, + 414, + 280 + ], + "score": 1.0, + "content": "from stronger regularization.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + } + ], + "index": 20.0 + }, + { + "type": "text", + "bbox": [ + 107, + 301, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "Overparameterized deep learning models tend to overfit more to the noisy examples (Arpit et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "2017; Frénay & Verleysen, 2013; Zhang et al., 2016). To address this issue, a common approach", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "is to detect noisy examples by selecting those with large training losses, and then remove them", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "from the (re-)training process. However, an input’s training loss can also be big because it is rare or", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "ambiguous (Hacohen & Weinshall, 2019; Wang et al., 2019), as shown in Figure 1. Noise-cleaning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "methods could fail to distinguish mislabeled from rare/ambiguous examples (see Section 3.1 for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "empirical proofs). Though dropping the former is desirable, dropping the latter loses important", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "information. Another popular approach is reweighting methods that reduce the contribution of noisy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "examples in optimization. However, failing to distinguish between mislabeled and rare/ambiguous", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "score": 1.0, + "content": "examples makes the decision of the weights tricky – mislabeled examples require small weights,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 410, + 502, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 502, + 423 + ], + "score": 1.0, + "content": "whereas rare / ambiguous examples benefit from larger weights (Cao et al., 2019; Shu et al., 2019).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "We propose a regularization method that deals with noisy and rare examples in a unified way. We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "observe that mislabeled, ambiguous, and rare examples all benefit from stronger regularization (Hu", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 446, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 446, + 507, + 464 + ], + "score": 1.0, + "content": "et al., 2020; Cao et al., 2019). We apply a Lipschitz regularizer (Wei & Ma, 2019a;b) with varying", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "regularization strength depending on the particular data point. Through theoretical analysis in the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "one-dimensional setting, we derive the optimal regularization strength for each training example. The", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "optimal strength is larger for rarer and noisier examples. Our proposed algorithm, heteroskedastic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "adaptive regularization (HAR), first estimates the noise level and density of each example, and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "then optimizes a Lipschitz-regularized objective with input-dependent regularization with strength", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 515, + 252, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 252, + 528 + ], + "score": 1.0, + "content": "provided by the theoretical formula.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "In summary, our main contributions are: (i) we propose to learn heteroskedastic imbalanced datasets", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 543, + 507, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 507, + 556 + ], + "score": 1.0, + "content": "under a unified framework, and theoretically study the optimal regularization strength on one-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "dimensional data. (ii) we propose an algorithm, heteroskedastic adaptive regularization (HAR),", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "which applies stronger regularization to data points with high uncertainty and low density. (iii)", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "we experimentally show that HAR achieves significant improvements over other noise-robust deep", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "score": 1.0, + "content": "learning methods on simulated vision and language datasets with controllable degrees of data noise", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 598, + 491, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 491, + 610 + ], + "score": 1.0, + "content": "and data imbalance, as well as a real-world heteroskedastic and imbalanced dataset, WebVision.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 52 + }, + { + "type": "title", + "bbox": [ + 109, + 625, + 457, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 459, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 459, + 640 + ], + "score": 1.0, + "content": "2 ADAPTIVE REGULARIZATION FOR HETEROSKEDASTIC DATASETS", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 56 + }, + { + "type": "title", + "bbox": [ + 107, + 650, + 198, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 199, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 199, + 663 + ], + "score": 1.0, + "content": "2.1 BACKGROUNDS", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 57 + }, + { + "type": "text", + "bbox": [ + 107, + 671, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 685 + ], + "score": 1.0, + "content": "We first introduce general nonparametric tools that we use in our analysis, and review the dependency", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 682, + 383, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 383, + 693 + ], + "score": 1.0, + "content": "of optimal regularization strength on the sample size and noise level.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 58.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Over-parameterized neural networks as nonparametric methods. We use nonparametric", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "method as a surrogate for neural networks because they have been shown to be closely related.", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Recent work (Savarese et al., 2019) shows that the minimum norm two-layer ReLU network that fits", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 61 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 291, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 83, + 284, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 83, + 284, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 83, + 284, + 213 + ], + "spans": [ + { + "bbox": [ + 108, + 83, + 284, + 213 + ], + "score": 0.962, + "type": "image", + "image_path": "b0aa3f523002d1c7bc925b084339bea809fac9e5918ef2d25e1e376f5cd78fab.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 83, + 284, + 96.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 96.0, + 284, + 109.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 109.0, + 284, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 122.0, + 284, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 135.0, + 284, + 148.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 108, + 148.0, + 284, + 161.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 108, + 161.0, + 284, + 174.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 174.0, + 284, + 187.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 187.0, + 284, + 200.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 200.0, + 284, + 213.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 287, + 279 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 224, + 288, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 288, + 236 + ], + "score": 1.0, + "content": "Figure 1: Histogram of the distributions of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 236, + 287, + 247 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 287, + 247 + ], + "score": 1.0, + "content": "losses on an imbalanced and noisy CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 246, + 287, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 287, + 258 + ], + "score": 1.0, + "content": "dataset. Clean but rare examples tend to have", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 257, + 287, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 287, + 270 + ], + "score": 1.0, + "content": "larger losses, similar to the noisy examples in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 267, + 175, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 175, + 281 + ], + "score": 1.0, + "content": "frequent classes.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + } + ], + "index": 12.75 + }, + { + "type": "image", + "bbox": [ + 302, + 84, + 499, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 302, + 84, + 499, + 213 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 302, + 84, + 499, + 213 + ], + "spans": [ + { + "bbox": [ + 302, + 84, + 499, + 213 + ], + "score": 0.957, + "type": "image", + "image_path": "9499897cf2f9e6c9f97933d2b6e3c3eb440e25eb54680fc3ee92050128d75b8b.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 302, + 84, + 499, + 98.33333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 302, + 98.33333333333333, + 499, + 112.66666666666666 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 302, + 112.66666666666666, + 499, + 126.99999999999999 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 302, + 126.99999999999999, + 499, + 141.33333333333331 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 302, + 141.33333333333331, + 499, + 155.66666666666666 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 302, + 155.66666666666666, + 499, + 170.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 302, + 170.0, + 499, + 184.33333333333334 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 302, + 184.33333333333334, + 499, + 198.66666666666669 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 302, + 198.66666666666669, + 499, + 213.00000000000003 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 297, + 224, + 506, + 280 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 297, + 224, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 297, + 224, + 506, + 236 + ], + "score": 1.0, + "content": "Figure 2: Real-world datasets have various sources", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 297, + 236, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 297, + 236, + 506, + 246 + ], + "score": 1.0, + "content": "of heterogeneity and it could be hard to distin-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 295, + 246, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 295, + 246, + 507, + 259 + ], + "score": 1.0, + "content": "guish one from another. They require mutually-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 296, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 296, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "exclusive reweighting strategy, but they all benefit", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 297, + 269, + 414, + 280 + ], + "spans": [ + { + "bbox": [ + 297, + 269, + 414, + 280 + ], + "score": 1.0, + "content": "from stronger regularization.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + } + ], + "index": 20.0 + }, + { + "type": "text", + "bbox": [ + 107, + 301, + 505, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "Overparameterized deep learning models tend to overfit more to the noisy examples (Arpit et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "2017; Frénay & Verleysen, 2013; Zhang et al., 2016). To address this issue, a common approach", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "is to detect noisy examples by selecting those with large training losses, and then remove them", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 346 + ], + "score": 1.0, + "content": "from the (re-)training process. However, an input’s training loss can also be big because it is rare or", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "ambiguous (Hacohen & Weinshall, 2019; Wang et al., 2019), as shown in Figure 1. Noise-cleaning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "methods could fail to distinguish mislabeled from rare/ambiguous examples (see Section 3.1 for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "empirical proofs). Though dropping the former is desirable, dropping the latter loses important", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "information. Another popular approach is reweighting methods that reduce the contribution of noisy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "examples in optimization. However, failing to distinguish between mislabeled and rare/ambiguous", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "score": 1.0, + "content": "examples makes the decision of the weights tricky – mislabeled examples require small weights,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 410, + 502, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 502, + 423 + ], + "score": 1.0, + "content": "whereas rare / ambiguous examples benefit from larger weights (Cao et al., 2019; Shu et al., 2019).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 301, + 506, + 423 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "We propose a regularization method that deals with noisy and rare examples in a unified way. We", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "observe that mislabeled, ambiguous, and rare examples all benefit from stronger regularization (Hu", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 446, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 446, + 507, + 464 + ], + "score": 1.0, + "content": "et al., 2020; Cao et al., 2019). We apply a Lipschitz regularizer (Wei & Ma, 2019a;b) with varying", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "regularization strength depending on the particular data point. Through theoretical analysis in the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "one-dimensional setting, we derive the optimal regularization strength for each training example. The", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "optimal strength is larger for rarer and noisier examples. Our proposed algorithm, heteroskedastic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "adaptive regularization (HAR), first estimates the noise level and density of each example, and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 505, + 517 + ], + "score": 1.0, + "content": "then optimizes a Lipschitz-regularized objective with input-dependent regularization with strength", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 515, + 252, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 252, + 528 + ], + "score": 1.0, + "content": "provided by the theoretical formula.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44, + "bbox_fs": [ + 104, + 427, + 507, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 532, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "In summary, our main contributions are: (i) we propose to learn heteroskedastic imbalanced datasets", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 543, + 507, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 507, + 556 + ], + "score": 1.0, + "content": "under a unified framework, and theoretically study the optimal regularization strength on one-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 506, + 567 + ], + "score": 1.0, + "content": "dimensional data. (ii) we propose an algorithm, heteroskedastic adaptive regularization (HAR),", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "which applies stronger regularization to data points with high uncertainty and low density. (iii)", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "we experimentally show that HAR achieves significant improvements over other noise-robust deep", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 506, + 599 + ], + "score": 1.0, + "content": "learning methods on simulated vision and language datasets with controllable degrees of data noise", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 598, + 491, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 491, + 610 + ], + "score": 1.0, + "content": "and data imbalance, as well as a real-world heteroskedastic and imbalanced dataset, WebVision.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 52, + "bbox_fs": [ + 105, + 532, + 507, + 610 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 625, + 457, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 459, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 459, + 640 + ], + "score": 1.0, + "content": "2 ADAPTIVE REGULARIZATION FOR HETEROSKEDASTIC DATASETS", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 56 + }, + { + "type": "title", + "bbox": [ + 107, + 650, + 198, + 661 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 199, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 199, + 663 + ], + "score": 1.0, + "content": "2.1 BACKGROUNDS", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 57 + }, + { + "type": "text", + "bbox": [ + 107, + 671, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 685 + ], + "score": 1.0, + "content": "We first introduce general nonparametric tools that we use in our analysis, and review the dependency", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 682, + 383, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 383, + 693 + ], + "score": 1.0, + "content": "of optimal regularization strength on the sample size and noise level.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 58.5, + "bbox_fs": [ + 105, + 668, + 505, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Over-parameterized neural networks as nonparametric methods. We use nonparametric", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "method as a surrogate for neural networks because they have been shown to be closely related.", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "Recent work (Savarese et al., 2019) shows that the minimum norm two-layer ReLU network that fits", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 61, + "bbox_fs": [ + 106, + 699, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 88, + 295, + 237 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 88, + 295, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 88, + 295, + 237 + ], + "spans": [ + { + "bbox": [ + 113, + 88, + 295, + 237 + ], + "score": 0.966, + "type": "image", + "image_path": "9f6b9f919811d48d690fed50dff8093090a7d6a6528fc0487af6d4f5ee64ac11.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 113, + 88, + 295, + 101.54545454545455 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 101.54545454545455, + 295, + 115.0909090909091 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 115.0909090909091, + 295, + 128.63636363636363 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 128.63636363636363, + 295, + 142.18181818181816 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 113, + 142.18181818181816, + 295, + 155.7272727272727 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 113, + 155.7272727272727, + 295, + 169.27272727272722 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 113, + 169.27272727272722, + 295, + 182.81818181818176 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 113, + 182.81818181818176, + 295, + 196.3636363636363 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 113, + 196.3636363636363, + 295, + 209.90909090909082 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 113, + 209.90909090909082, + 295, + 223.45454545454535 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 113, + 223.45454545454535, + 295, + 236.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 303, + 80, + 500, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 302, + 80, + 500, + 92 + ], + "spans": [ + { + "bbox": [ + 302, + 80, + 500, + 92 + ], + "score": 1.0, + "content": "Figure 3: A one-dimensional example with a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 303, + 91, + 499, + 102 + ], + "spans": [ + { + "bbox": [ + 303, + 91, + 499, + 102 + ], + "score": 1.0, + "content": "three-layer neural network in heteroskedastic and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 303, + 101, + 499, + 114 + ], + "spans": [ + { + "bbox": [ + 303, + 101, + 499, + 114 + ], + "score": 1.0, + "content": "imbalanced regression setting. The curve in blue", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 302, + 113, + 500, + 125 + ], + "spans": [ + { + "bbox": [ + 302, + 113, + 500, + 125 + ], + "score": 1.0, + "content": "is the underlying ground truth and the dots are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 302, + 124, + 501, + 136 + ], + "spans": [ + { + "bbox": [ + 302, + 124, + 501, + 136 + ], + "score": 1.0, + "content": "observations with heteroskedastic noise. This ex-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 303, + 135, + 500, + 147 + ], + "spans": [ + { + "bbox": [ + 303, + 135, + 500, + 147 + ], + "score": 1.0, + "content": "ample shows that uniformly weak regularization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 303, + 146, + 500, + 158 + ], + "spans": [ + { + "bbox": [ + 303, + 146, + 500, + 158 + ], + "score": 1.0, + "content": "overfits on noisy and rare data (on the right half),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 303, + 157, + 500, + 169 + ], + "spans": [ + { + "bbox": [ + 303, + 157, + 500, + 169 + ], + "score": 1.0, + "content": "whereas uniformly strong regularization causes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 302, + 168, + 500, + 180 + ], + "spans": [ + { + "bbox": [ + 302, + 168, + 500, + 180 + ], + "score": 1.0, + "content": "underfitting on the frequent and oscillating data", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 302, + 179, + 500, + 191 + ], + "spans": [ + { + "bbox": [ + 302, + 179, + 500, + 191 + ], + "score": 1.0, + "content": "(on the left half). The adaptive regularization does", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 302, + 190, + 500, + 201 + ], + "spans": [ + { + "bbox": [ + 302, + 190, + 500, + 201 + ], + "score": 1.0, + "content": "not underfit the oscillating data but still denoise", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 302, + 201, + 501, + 213 + ], + "spans": [ + { + "bbox": [ + 302, + 201, + 501, + 213 + ], + "score": 1.0, + "content": "the noisy data. We note that standard nonparamet-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 302, + 212, + 500, + 224 + ], + "spans": [ + { + "bbox": [ + 302, + 212, + 500, + 224 + ], + "score": 1.0, + "content": "ric methods such as cubic spline do not work here", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 302, + 222, + 485, + 236 + ], + "spans": [ + { + "bbox": [ + 302, + 222, + 485, + 236 + ], + "score": 1.0, + "content": "because they also use uniform regularization.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 17.5 + } + ], + "index": 11.25 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "the training data is in fact a linear spline interpolation. Parhi & Nowak (2019) extend this result to a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 276, + 392, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 392, + 290 + ], + "score": 1.0, + "content": "broader family of neural networks with a broader family of activations.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 504, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 207, + 308 + ], + "score": 1.0, + "content": "Given a training dataset", + "type": "text" + }, + { + "bbox": [ + 207, + 293, + 260, + 306 + ], + "score": 0.93, + "content": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 292, + 506, + 308 + ], + "score": 1.0, + "content": ", nonparametric method with penalty works as follows. Let", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 303, + 501, + 318 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 154, + 315 + ], + "score": 0.91, + "content": "\\mathcal { F } : \\mathbb { R } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 303, + 501, + 318 + ], + "score": 1.0, + "content": "be a twice-differentiable model family. We aim to fit the data with smoothness penalty", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 321, + 394, + 354 + ], + "lines": [ + { + "bbox": [ + 217, + 321, + 394, + 354 + ], + "spans": [ + { + "bbox": [ + 217, + 321, + 394, + 354 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { f } { \\ } { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int ( f ^ { \\prime } ( x ) ) ^ { 2 } d x", + "type": "interline_equation", + "image_path": "1751915e4717c596fc2cbe14189e3caed5fc245ba2a2e06d1bdf3e706fe7a006.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 321, + 394, + 337.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 217, + 337.5, + 394, + 354.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "score": 1.0, + "content": "Lipschitz regularization for neural networks. Lipschitz regularization has been shown to be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "effective for deep neural networks as well. Wei & Ma (2019a) proves a generalization bound of neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "networks dependent on the Lipschitzness of each layer with respect to all intermediate layers on the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "training data, and show that, empirically, regularizing the Lipschitzness improve the generalization.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "Sokolic et al. ´ (2017) shows similar results in data-limited settings. In Section 2.3, we extend the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 419, + 350, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 350, + 433 + ], + "score": 1.0, + "content": "Lipschitz regularization technique to heteroskedastic setting.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 506, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Regularization strength as a function of noise level and sample size. Finally, we briefly review", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "existing theoretical insights on the optimal choice of regularization strength. Generally, the optimal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "regularization strength for a given model family increases with the label noise level and decreases in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 102, + 464, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 102, + 464, + 390, + 487 + ], + "score": 1.0, + "content": "the sample size. As a simple example, consider linear ridge regression", + "type": "text" + }, + { + "bbox": [ + 390, + 469, + 507, + 483 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\theta } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } { ( x _ { i } ^ { \\top } \\theta - y _ { i } ) ^ { 2 } } + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 480, + 507, + 496 + ], + "spans": [ + { + "bbox": [ + 107, + 482, + 132, + 495 + ], + "score": 0.91, + "content": "\\lambda \\| \\theta \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 480, + 162, + 496 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 162, + 483, + 173, + 493 + ], + "score": 0.6, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 480, + 176, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 176, + 481, + 206, + 493 + ], + "score": 0.84, + "content": "\\theta \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 480, + 223, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 223, + 482, + 252, + 494 + ], + "score": 0.91, + "content": "y _ { i } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 480, + 302, + 496 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + }, + { + "bbox": [ + 303, + 481, + 362, + 495 + ], + "score": 0.93, + "content": "y _ { i } = x _ { i } ^ { \\top } \\theta ^ { * } + \\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 480, + 491, + 496 + ], + "score": 1.0, + "content": "for some ground truth parameter", + "type": "text" + }, + { + "bbox": [ + 492, + 483, + 502, + 493 + ], + "score": 0.83, + "content": "\\theta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 480, + 507, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 123, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 493, + 180, + 505 + ], + "score": 0.95, + "content": "\\Dot { \\xi } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 492, + 346, + 506 + ], + "score": 1.0, + "content": ". Then the optimal regularization strength", + "type": "text" + }, + { + "bbox": [ + 347, + 493, + 428, + 505 + ], + "score": 0.92, + "content": "\\lambda _ { o p t } = d \\sigma ^ { 2 } / \\bar { n } \\| \\theta ^ { * } \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 492, + 506, + 506 + ], + "score": 1.0, + "content": ". Results of similar", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 504, + 487, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 487, + 517 + ], + "score": 1.0, + "content": "nature can also be found in nonparametric statistics (Wang et al., 2013; Tibshirani et al., 2014).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 106, + 528, + 496, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 497, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 497, + 542 + ], + "score": 1.0, + "content": "2.2 HETEROSKEDASTIC NONPARAMETRIC CLASSIFICATION ON ONE-DIMENSIONAL DATA", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 503, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 369, + 563 + ], + "score": 1.0, + "content": "We consider a one-dimensional binary classification problem where", + "type": "text" + }, + { + "bbox": [ + 369, + 550, + 432, + 561 + ], + "score": 0.92, + "content": "\\mathcal { X } = [ 0 , 1 ] \\subset \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 547, + 449, + 563 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 550, + 503, + 562 + ], + "score": 0.92, + "content": "\\mathcal { V } = \\{ - 1 , 1 \\}", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 560, + 437, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 153, + 573 + ], + "score": 1.0, + "content": "We assume", + "type": "text" + }, + { + "bbox": [ + 154, + 561, + 163, + 571 + ], + "score": 0.82, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 560, + 188, + 573 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 188, + 561, + 198, + 571 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 560, + 407, + 573 + ], + "score": 1.0, + "content": "follows a logistic model with ground-truth function", + "type": "text" + }, + { + "bbox": [ + 407, + 561, + 418, + 573 + ], + "score": 0.89, + "content": "f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 560, + 437, + 573 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 577, + 392, + 604 + ], + "lines": [ + { + "bbox": [ + 218, + 577, + 392, + 604 + ], + "spans": [ + { + "bbox": [ + 218, + 577, + 392, + 604 + ], + "score": 0.94, + "content": "\\operatorname* { P r } \\left[ Y = y | X = x \\right] = { \\frac { 1 } { 1 + \\exp ( - y f ^ { \\star } ( x ) ) } } .", + "type": "interline_equation", + "image_path": "e0c56091aa38ee67473106ccb5ad7073c2ca99f8218de48fbdd7db070a37abdd.jpg" + } + ] + } + ], + "index": 47.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 577, + 392, + 590.5 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 218, + 590.5, + 392, + 604.0 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 412, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 413, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 413, + 623 + ], + "score": 1.0, + "content": "The training objective is cross-entropy loss plus Lipschitz regularization, i.e.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 49 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 624, + 441, + 658 + ], + "lines": [ + { + "bbox": [ + 169, + 624, + 441, + 658 + ], + "spans": [ + { + "bbox": [ + 169, + 624, + 441, + 658 + ], + "score": 0.94, + "content": "\\widehat { f } = \\mathrm { a r g m i n } _ { f } \\widehat { L } ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int _ { 0 } ^ { 1 } \\rho ( x ) ( f ^ { \\prime } ( x ) ) ^ { 2 } d x ,", + "type": "interline_equation", + "image_path": "9885407285e56151abf867dd47a02aeb31f1d5f4aac06c2b5936c3636135b79f.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 169, + 624, + 441, + 635.3333333333334 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 169, + 635.3333333333334, + 441, + 646.6666666666667 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 169, + 646.6666666666667, + 441, + 658.0000000000001 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 134, + 676 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 663, + 267, + 675 + ], + "score": 0.93, + "content": "\\ell ( a , y ) = - \\log ( 1 + \\exp ( - y a ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 662, + 291, + 676 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 291, + 663, + 311, + 675 + ], + "score": 0.93, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 662, + 506, + 676 + ], + "score": 1.0, + "content": "is a smoothing parameter as a function of the", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 673, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 211, + 687 + ], + "score": 1.0, + "content": "noise level and density of", + "type": "text" + }, + { + "bbox": [ + 211, + 677, + 218, + 684 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 673, + 238, + 687 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 239, + 675, + 258, + 686 + ], + "score": 0.89, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 673, + 506, + 687 + ], + "score": 1.0, + "content": "be the fisher information matrix conditioned on the input, i.e.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 684, + 487, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 261, + 700 + ], + "score": 0.9, + "content": "I ( x ) \\triangleq \\mathbb { E } [ \\nabla _ { a } ^ { 2 } \\ell ( a , Y ) | _ { a = f ^ { \\star } ( X ) } | X = x ]", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 684, + 292, + 700 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 292, + 686, + 321, + 699 + ], + "score": 0.91, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 684, + 487, + 700 + ], + "score": 1.0, + "content": "follows the logistic model in equation 2,", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 704, + 434, + 731 + ], + "lines": [ + { + "bbox": [ + 176, + 704, + 434, + 731 + ], + "spans": [ + { + "bbox": [ + 176, + 704, + 434, + 731 + ], + "score": 0.93, + "content": "I ( x ) = { \\frac { 1 } { ( 1 + \\exp ( f ^ { \\star } ( x ) ) ( 1 + \\exp ( - f ^ { \\star } ( x ) ) } } = \\mathrm { V a r } ( Y | X = x ) .", + "type": "interline_equation", + "image_path": "d3dbb5e0813dd9fdb189f51f81497cdf7b8cd7d59f804cf99f227c66c1e23380.jpg" + } + ] + } + ], + "index": 57, + "virtual_lines": [ + { + "bbox": [ + 176, + 704, + 434, + 713.0 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 176, + 713.0, + 434, + 722.0 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 176, + 722.0, + 434, + 731.0 + ], + "spans": [], + "index": 58 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 113, + 88, + 295, + 237 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 88, + 295, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 88, + 295, + 237 + ], + "spans": [ + { + "bbox": [ + 113, + 88, + 295, + 237 + ], + "score": 0.966, + "type": "image", + "image_path": "9f6b9f919811d48d690fed50dff8093090a7d6a6528fc0487af6d4f5ee64ac11.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 113, + 88, + 295, + 101.54545454545455 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 101.54545454545455, + 295, + 115.0909090909091 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 115.0909090909091, + 295, + 128.63636363636363 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 113, + 128.63636363636363, + 295, + 142.18181818181816 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 113, + 142.18181818181816, + 295, + 155.7272727272727 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 113, + 155.7272727272727, + 295, + 169.27272727272722 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 113, + 169.27272727272722, + 295, + 182.81818181818176 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 113, + 182.81818181818176, + 295, + 196.3636363636363 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 113, + 196.3636363636363, + 295, + 209.90909090909082 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 113, + 209.90909090909082, + 295, + 223.45454545454535 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 113, + 223.45454545454535, + 295, + 236.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 303, + 80, + 500, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 302, + 80, + 500, + 92 + ], + "spans": [ + { + "bbox": [ + 302, + 80, + 500, + 92 + ], + "score": 1.0, + "content": "Figure 3: A one-dimensional example with a", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 303, + 91, + 499, + 102 + ], + "spans": [ + { + "bbox": [ + 303, + 91, + 499, + 102 + ], + "score": 1.0, + "content": "three-layer neural network in heteroskedastic and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 303, + 101, + 499, + 114 + ], + "spans": [ + { + "bbox": [ + 303, + 101, + 499, + 114 + ], + "score": 1.0, + "content": "imbalanced regression setting. The curve in blue", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 302, + 113, + 500, + 125 + ], + "spans": [ + { + "bbox": [ + 302, + 113, + 500, + 125 + ], + "score": 1.0, + "content": "is the underlying ground truth and the dots are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 302, + 124, + 501, + 136 + ], + "spans": [ + { + "bbox": [ + 302, + 124, + 501, + 136 + ], + "score": 1.0, + "content": "observations with heteroskedastic noise. This ex-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 303, + 135, + 500, + 147 + ], + "spans": [ + { + "bbox": [ + 303, + 135, + 500, + 147 + ], + "score": 1.0, + "content": "ample shows that uniformly weak regularization", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 303, + 146, + 500, + 158 + ], + "spans": [ + { + "bbox": [ + 303, + 146, + 500, + 158 + ], + "score": 1.0, + "content": "overfits on noisy and rare data (on the right half),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 303, + 157, + 500, + 169 + ], + "spans": [ + { + "bbox": [ + 303, + 157, + 500, + 169 + ], + "score": 1.0, + "content": "whereas uniformly strong regularization causes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 302, + 168, + 500, + 180 + ], + "spans": [ + { + "bbox": [ + 302, + 168, + 500, + 180 + ], + "score": 1.0, + "content": "underfitting on the frequent and oscillating data", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 302, + 179, + 500, + 191 + ], + "spans": [ + { + "bbox": [ + 302, + 179, + 500, + 191 + ], + "score": 1.0, + "content": "(on the left half). The adaptive regularization does", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 302, + 190, + 500, + 201 + ], + "spans": [ + { + "bbox": [ + 302, + 190, + 500, + 201 + ], + "score": 1.0, + "content": "not underfit the oscillating data but still denoise", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 302, + 201, + 501, + 213 + ], + "spans": [ + { + "bbox": [ + 302, + 201, + 501, + 213 + ], + "score": 1.0, + "content": "the noisy data. We note that standard nonparamet-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 302, + 212, + 500, + 224 + ], + "spans": [ + { + "bbox": [ + 302, + 212, + 500, + 224 + ], + "score": 1.0, + "content": "ric methods such as cubic spline do not work here", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 302, + 222, + 485, + 236 + ], + "spans": [ + { + "bbox": [ + 302, + 222, + 485, + 236 + ], + "score": 1.0, + "content": "because they also use uniform regularization.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 17.5 + } + ], + "index": 11.25 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 506, + 278 + ], + "score": 1.0, + "content": "the training data is in fact a linear spline interpolation. Parhi & Nowak (2019) extend this result to a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 276, + 392, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 392, + 290 + ], + "score": 1.0, + "content": "broader family of neural networks with a broader family of activations.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 265, + 506, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 504, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 292, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 207, + 308 + ], + "score": 1.0, + "content": "Given a training dataset", + "type": "text" + }, + { + "bbox": [ + 207, + 293, + 260, + 306 + ], + "score": 0.93, + "content": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 292, + 506, + 308 + ], + "score": 1.0, + "content": ", nonparametric method with penalty works as follows. Let", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 303, + 501, + 318 + ], + "spans": [ + { + "bbox": [ + 107, + 305, + 154, + 315 + ], + "score": 0.91, + "content": "\\mathcal { F } : \\mathbb { R } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 303, + 501, + 318 + ], + "score": 1.0, + "content": "be a twice-differentiable model family. We aim to fit the data with smoothness penalty", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 292, + 506, + 318 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 321, + 394, + 354 + ], + "lines": [ + { + "bbox": [ + 217, + 321, + 394, + 354 + ], + "spans": [ + { + "bbox": [ + 217, + 321, + 394, + 354 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { f } { \\ } { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int ( f ^ { \\prime } ( x ) ) ^ { 2 } d x", + "type": "interline_equation", + "image_path": "1751915e4717c596fc2cbe14189e3caed5fc245ba2a2e06d1bdf3e706fe7a006.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 321, + 394, + 337.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 217, + 337.5, + 394, + 354.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "score": 1.0, + "content": "Lipschitz regularization for neural networks. Lipschitz regularization has been shown to be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "effective for deep neural networks as well. Wei & Ma (2019a) proves a generalization bound of neural", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "networks dependent on the Lipschitzness of each layer with respect to all intermediate layers on the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "training data, and show that, empirically, regularizing the Lipschitzness improve the generalization.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 421 + ], + "score": 1.0, + "content": "Sokolic et al. ´ (2017) shows similar results in data-limited settings. In Section 2.3, we extend the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 419, + 350, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 350, + 433 + ], + "score": 1.0, + "content": "Lipschitz regularization technique to heteroskedastic setting.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 365, + 506, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 506, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Regularization strength as a function of noise level and sample size. Finally, we briefly review", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "existing theoretical insights on the optimal choice of regularization strength. Generally, the optimal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "regularization strength for a given model family increases with the label noise level and decreases in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 102, + 464, + 507, + 487 + ], + "spans": [ + { + "bbox": [ + 102, + 464, + 390, + 487 + ], + "score": 1.0, + "content": "the sample size. As a simple example, consider linear ridge regression", + "type": "text" + }, + { + "bbox": [ + 390, + 469, + 507, + 483 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\theta } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } { ( x _ { i } ^ { \\top } \\theta - y _ { i } ) ^ { 2 } } + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 480, + 507, + 496 + ], + "spans": [ + { + "bbox": [ + 107, + 482, + 132, + 495 + ], + "score": 0.91, + "content": "\\lambda \\| \\theta \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 480, + 162, + 496 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 162, + 483, + 173, + 493 + ], + "score": 0.6, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 480, + 176, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 176, + 481, + 206, + 493 + ], + "score": 0.84, + "content": "\\theta \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 480, + 223, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 223, + 482, + 252, + 494 + ], + "score": 0.91, + "content": "y _ { i } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 480, + 302, + 496 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + }, + { + "bbox": [ + 303, + 481, + 362, + 495 + ], + "score": 0.93, + "content": "y _ { i } = x _ { i } ^ { \\top } \\theta ^ { * } + \\xi", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 480, + 491, + 496 + ], + "score": 1.0, + "content": "for some ground truth parameter", + "type": "text" + }, + { + "bbox": [ + 492, + 483, + 502, + 493 + ], + "score": 0.83, + "content": "\\theta ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 480, + 507, + 496 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 123, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 493, + 180, + 505 + ], + "score": 0.95, + "content": "\\Dot { \\xi } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 492, + 346, + 506 + ], + "score": 1.0, + "content": ". Then the optimal regularization strength", + "type": "text" + }, + { + "bbox": [ + 347, + 493, + 428, + 505 + ], + "score": 0.92, + "content": "\\lambda _ { o p t } = d \\sigma ^ { 2 } / \\bar { n } \\| \\theta ^ { * } \\| _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 492, + 506, + 506 + ], + "score": 1.0, + "content": ". Results of similar", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 504, + 487, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 487, + 517 + ], + "score": 1.0, + "content": "nature can also be found in nonparametric statistics (Wang et al., 2013; Tibshirani et al., 2014).", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 102, + 436, + 507, + 517 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 528, + 496, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 497, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 497, + 542 + ], + "score": 1.0, + "content": "2.2 HETEROSKEDASTIC NONPARAMETRIC CLASSIFICATION ON ONE-DIMENSIONAL DATA", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 503, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 369, + 563 + ], + "score": 1.0, + "content": "We consider a one-dimensional binary classification problem where", + "type": "text" + }, + { + "bbox": [ + 369, + 550, + 432, + 561 + ], + "score": 0.92, + "content": "\\mathcal { X } = [ 0 , 1 ] \\subset \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 547, + 449, + 563 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 550, + 503, + 562 + ], + "score": 0.92, + "content": "\\mathcal { V } = \\{ - 1 , 1 \\}", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 560, + 437, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 153, + 573 + ], + "score": 1.0, + "content": "We assume", + "type": "text" + }, + { + "bbox": [ + 154, + 561, + 163, + 571 + ], + "score": 0.82, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 560, + 188, + 573 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 188, + 561, + 198, + 571 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 560, + 407, + 573 + ], + "score": 1.0, + "content": "follows a logistic model with ground-truth function", + "type": "text" + }, + { + "bbox": [ + 407, + 561, + 418, + 573 + ], + "score": 0.89, + "content": "f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 560, + 437, + 573 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 547, + 503, + 573 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 577, + 392, + 604 + ], + "lines": [ + { + "bbox": [ + 218, + 577, + 392, + 604 + ], + "spans": [ + { + "bbox": [ + 218, + 577, + 392, + 604 + ], + "score": 0.94, + "content": "\\operatorname* { P r } \\left[ Y = y | X = x \\right] = { \\frac { 1 } { 1 + \\exp ( - y f ^ { \\star } ( x ) ) } } .", + "type": "interline_equation", + "image_path": "e0c56091aa38ee67473106ccb5ad7073c2ca99f8218de48fbdd7db070a37abdd.jpg" + } + ] + } + ], + "index": 47.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 577, + 392, + 590.5 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 218, + 590.5, + 392, + 604.0 + ], + "spans": [], + "index": 48 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 412, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 413, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 413, + 623 + ], + "score": 1.0, + "content": "The training objective is cross-entropy loss plus Lipschitz regularization, i.e.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 49, + "bbox_fs": [ + 105, + 606, + 413, + 623 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 624, + 441, + 658 + ], + "lines": [ + { + "bbox": [ + 169, + 624, + 441, + 658 + ], + "spans": [ + { + "bbox": [ + 169, + 624, + 441, + 658 + ], + "score": 0.94, + "content": "\\widehat { f } = \\mathrm { a r g m i n } _ { f } \\widehat { L } ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int _ { 0 } ^ { 1 } \\rho ( x ) ( f ^ { \\prime } ( x ) ) ^ { 2 } d x ,", + "type": "interline_equation", + "image_path": "9885407285e56151abf867dd47a02aeb31f1d5f4aac06c2b5936c3636135b79f.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 169, + 624, + 441, + 635.3333333333334 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 169, + 635.3333333333334, + 441, + 646.6666666666667 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 169, + 646.6666666666667, + 441, + 658.0000000000001 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 134, + 676 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 663, + 267, + 675 + ], + "score": 0.93, + "content": "\\ell ( a , y ) = - \\log ( 1 + \\exp ( - y a ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 662, + 291, + 676 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 291, + 663, + 311, + 675 + ], + "score": 0.93, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 662, + 506, + 676 + ], + "score": 1.0, + "content": "is a smoothing parameter as a function of the", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 673, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 211, + 687 + ], + "score": 1.0, + "content": "noise level and density of", + "type": "text" + }, + { + "bbox": [ + 211, + 677, + 218, + 684 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 673, + 238, + 687 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 239, + 675, + 258, + 686 + ], + "score": 0.89, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 673, + 506, + 687 + ], + "score": 1.0, + "content": "be the fisher information matrix conditioned on the input, i.e.", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 684, + 487, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 261, + 700 + ], + "score": 0.9, + "content": "I ( x ) \\triangleq \\mathbb { E } [ \\nabla _ { a } ^ { 2 } \\ell ( a , Y ) | _ { a = f ^ { \\star } ( X ) } | X = x ]", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 684, + 292, + 700 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 292, + 686, + 321, + 699 + ], + "score": 0.91, + "content": "( X , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 684, + 487, + 700 + ], + "score": 1.0, + "content": "follows the logistic model in equation 2,", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54, + "bbox_fs": [ + 105, + 662, + 506, + 700 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 704, + 434, + 731 + ], + "lines": [ + { + "bbox": [ + 176, + 704, + 434, + 731 + ], + "spans": [ + { + "bbox": [ + 176, + 704, + 434, + 731 + ], + "score": 0.93, + "content": "I ( x ) = { \\frac { 1 } { ( 1 + \\exp ( f ^ { \\star } ( x ) ) ( 1 + \\exp ( - f ^ { \\star } ( x ) ) } } = \\mathrm { V a r } ( Y | X = x ) .", + "type": "interline_equation", + "image_path": "d3dbb5e0813dd9fdb189f51f81497cdf7b8cd7d59f804cf99f227c66c1e23380.jpg" + } + ] + } + ], + "index": 57, + "virtual_lines": [ + { + "bbox": [ + 176, + 704, + 434, + 713.0 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 176, + 713.0, + 434, + 722.0 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 176, + 722.0, + 434, + 731.0 + ], + "spans": [], + "index": 58 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 153, + 96 + ], + "score": 1.0, + "content": "Therefore,", + "type": "text" + }, + { + "bbox": [ + 153, + 82, + 172, + 95 + ], + "score": 0.92, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 81, + 328, + 96 + ], + "score": 1.0, + "content": "captures the aleatoric uncertainty of", + "type": "text" + }, + { + "bbox": [ + 329, + 85, + 335, + 92 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 81, + 427, + 96 + ], + "score": 1.0, + "content": ". For example, when", + "type": "text" + }, + { + "bbox": [ + 427, + 83, + 437, + 92 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "is deterministic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 390, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 168, + 107 + ], + "score": 1.0, + "content": "conditioned on", + "type": "text" + }, + { + "bbox": [ + 169, + 94, + 198, + 104 + ], + "score": 0.9, + "content": "X = x", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 92, + 236, + 107 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 236, + 93, + 275, + 106 + ], + "score": 0.93, + "content": "I ( x ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 92, + 390, + 107 + ], + "score": 1.0, + "content": ", indicating perfect certainty.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 436, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 435, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 358, + 124 + ], + "score": 1.0, + "content": "Define the test metric as the mean-squared-error on the test set", + "type": "text" + }, + { + "bbox": [ + 358, + 110, + 412, + 123 + ], + "score": 0.92, + "content": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 109, + 435, + 124 + ], + "score": 1.0, + "content": ", i.e.,1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 124, + 396, + 154 + ], + "lines": [ + { + "bbox": [ + 214, + 124, + 396, + 154 + ], + "spans": [ + { + "bbox": [ + 214, + 124, + 396, + 154 + ], + "score": 0.94, + "content": "\\operatorname { M S E } ( \\hat { f } ) \\triangleq \\operatorname * { \\mathbb { E } } _ { \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n } } \\int _ { 0 } ^ { 1 } ( \\hat { f } ( t ) - f ^ { \\star } ( t ) ) ^ { 2 } d t", + "type": "interline_equation", + "image_path": "dc65b3d0381b17b7227b7e0887d508a8f14cd239093f208efd3c6d380930865b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 124, + 396, + 139.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 139.0, + 396, + 154.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 161, + 506, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 308, + 175 + ], + "score": 1.0, + "content": "Our main goal is to derive the optimal choice of", + "type": "text" + }, + { + "bbox": [ + 308, + 162, + 328, + 174 + ], + "score": 0.91, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "that minimizes the MSE. We start with an", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 171, + 507, + 188 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 290, + 188 + ], + "score": 1.0, + "content": "analytical characterization of the test error. Let", + "type": "text" + }, + { + "bbox": [ + 290, + 174, + 333, + 186 + ], + "score": 0.92, + "content": "W _ { 2 } ^ { 2 } = \\{ f ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 171, + 443, + 188 + ], + "score": 1.0, + "content": "is absolute continuous and", + "type": "text" + }, + { + "bbox": [ + 443, + 173, + 503, + 186 + ], + "score": 0.93, + "content": "f ^ { \\prime \\prime } \\in L ^ { 2 } [ 0 , 1 ] \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 171, + 507, + 188 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 208, + 196 + ], + "score": 1.0, + "content": "We denote the density of", + "type": "text" + }, + { + "bbox": [ + 209, + 185, + 219, + 195 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 184, + 231, + 196 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 231, + 185, + 250, + 196 + ], + "score": 0.91, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 184, + 506, + 196 + ], + "score": 1.0, + "content": ". The following theorem analytically computes the MSE under", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 211, + 208 + ], + "score": 1.0, + "content": "the regularization strength", + "type": "text" + }, + { + "bbox": [ + 211, + 196, + 228, + 208 + ], + "score": 0.9, + "content": "\\rho ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 195, + 506, + 208 + ], + "score": 1.0, + "content": ", building upon (Wang et al., 2013) for regression problems. The proof", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 280, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 280, + 219 + ], + "score": 1.0, + "content": "of the Theorem is deferred to Appendix A.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 104, + 219, + 504, + 246 + ], + "lines": [ + { + "bbox": [ + 104, + 216, + 503, + 236 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 210, + 236 + ], + "score": 1.0, + "content": "Theorem 1. Assume that", + "type": "text" + }, + { + "bbox": [ + 210, + 219, + 268, + 232 + ], + "score": 0.93, + "content": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 216, + 287, + 236 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 288, + 219, + 375, + 232 + ], + "score": 0.92, + "content": "r ( t ) = - 1 / ( q ( t ) I ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 216, + 394, + 236 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 219, + 503, + 234 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t } \\end{array}", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 477, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 158, + 248 + ], + "score": 1.0, + "content": "If we choose", + "type": "text" + }, + { + "bbox": [ + 159, + 233, + 214, + 245 + ], + "score": 0.93, + "content": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 231, + 290, + 248 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 290, + 234, + 321, + 245 + ], + "score": 0.91, + "content": "C _ { 0 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 231, + 477, + 248 + ], + "score": 1.0, + "content": ", the asymptotic mean squared error is", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 248, + 463, + 277 + ], + "lines": [ + { + "bbox": [ + 148, + 248, + 463, + 277 + ], + "spans": [ + { + "bbox": [ + 148, + 248, + 463, + 277 + ], + "score": 0.93, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "98777cadf03fe227c6b48fbefae5d79c1864cbea2f9861fd994c07066c9f0efb.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 148, + 248, + 463, + 257.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 148, + 257.6666666666667, + 463, + 267.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 148, + 267.33333333333337, + 463, + 277.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 345, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 343, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 191, + 292 + ], + "score": 1.0, + "content": "in probability, where", + "type": "text" + }, + { + "bbox": [ + 192, + 279, + 205, + 289 + ], + "score": 0.88, + "content": "C _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 277, + 335, + 292 + ], + "score": 1.0, + "content": "is a scalar that only depends on", + "type": "text" + }, + { + "bbox": [ + 336, + 281, + 343, + 288 + ], + "score": 0.55, + "content": "n", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Using the analytical formula of the test error above, we want to derive an approximately optimal", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 146, + 321 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 147, + 309, + 166, + 321 + ], + "score": 0.92, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 309, + 485, + 321 + ], + "score": 1.0, + "content": ". A precise computation is infeasible, so we restrict ourselves to consider only", + "type": "text" + }, + { + "bbox": [ + 486, + 310, + 505, + 321 + ], + "score": 0.9, + "content": "\\rho ( x )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 321, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 332 + ], + "score": 1.0, + "content": "that is constant within groups of examples. We introduce an additional structure – we assume the data", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 184, + 345 + ], + "score": 1.0, + "content": "can be divided into", + "type": "text" + }, + { + "bbox": [ + 184, + 331, + 191, + 341 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 330, + 221, + 345 + ], + "score": 1.0, + "content": "groups", + "type": "text" + }, + { + "bbox": [ + 222, + 331, + 354, + 343 + ], + "score": 0.85, + "content": "[ a _ { 0 } , a _ { 1 } ) , \\bar { [ } a _ { 1 } , a _ { 2 } ) , \\cdot \\cdot \\cdot , [ a _ { k - 1 } , a _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 330, + 406, + 345 + ], + "score": 1.0, + "content": ". Each group", + "type": "text" + }, + { + "bbox": [ + 407, + 331, + 447, + 343 + ], + "score": 0.92, + "content": "[ a _ { j } , a _ { j + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 330, + 506, + 345 + ], + "score": 1.0, + "content": "consists of an", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 441, + 354 + ], + "score": 1.0, + "content": "interval of data with approximately the same aleatoric uncertainty. We approximate", + "type": "text" + }, + { + "bbox": [ + 442, + 342, + 459, + 354 + ], + "score": 0.91, + "content": "\\rho ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "is constant", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 189, + 366 + ], + "score": 1.0, + "content": "on each of the group", + "type": "text" + }, + { + "bbox": [ + 190, + 353, + 228, + 365 + ], + "score": 0.91, + "content": "[ a _ { i } , a _ { i + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 353, + 272, + 366 + ], + "score": 1.0, + "content": "with value", + "type": "text" + }, + { + "bbox": [ + 273, + 354, + 282, + 365 + ], + "score": 0.84, + "content": "\\rho _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 353, + 420, + 366 + ], + "score": 1.0, + "content": ". Plugging this piece-wise constant", + "type": "text" + }, + { + "bbox": [ + 420, + 355, + 427, + 365 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "into the asymptotic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 230, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 230, + 375 + ], + "score": 1.0, + "content": "MSE in Theorem 1, we obtain", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 376, + 478, + 411 + ], + "lines": [ + { + "bbox": [ + 132, + 376, + 478, + 411 + ], + "spans": [ + { + "bbox": [ + 132, + 376, + 478, + 411 + ], + "score": 0.91, + "content": "\\underset { n \\infty } { \\operatorname* { l i m } } \\mathrm { M S E } ( \\hat { f } ) = \\sum _ { j } [ \\rho _ { j } ^ { 2 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) [ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) ] ^ { 2 } d t + \\rho _ { j } ^ { - 1 / 2 } L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 1 / 2 } ( t ) d t ] .", + "type": "interline_equation", + "image_path": "5587924fdba5e89247fe3f42a6f90416d13bf1d281e1d1ed0d6f3c0c3f4118d0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 132, + 376, + 478, + 387.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 132, + 387.6666666666667, + 478, + 399.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 132, + 399.33333333333337, + 478, + 411.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 506, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 258, + 427 + ], + "score": 1.0, + "content": "Minimizing the above formula over", + "type": "text" + }, + { + "bbox": [ + 258, + 415, + 300, + 425 + ], + "score": 0.91, + "content": "\\rho _ { 1 } , \\ldots , \\rho _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 410, + 481, + 427 + ], + "score": 1.0, + "content": "separately, we derive the optimal weights,", + "type": "text" + }, + { + "bbox": [ + 481, + 414, + 505, + 425 + ], + "score": 0.85, + "content": "\\rho _ { j } =", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 108, + 423, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 108, + 424, + 225, + 459 + ], + "score": 0.78, + "content": "\\left[ \\frac { L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ( t ) ^ { 1 / 2 } d t } { 4 \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) \\left[ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) \\right] ^ { 2 } d t } \\right] ^ { 2 / }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 423, + 232, + 435 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 230, + 436, + 348, + 450 + ], + "score": 1.0, + "content": ". In practice, we do not know", + "type": "text" + }, + { + "bbox": [ + 348, + 437, + 360, + 449 + ], + "score": 0.89, + "content": "f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 436, + 378, + 450 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 437, + 397, + 449 + ], + "score": 0.91, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 436, + 505, + 450 + ], + "score": 1.0, + "content": ", so we make the following", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 232, + 471 + ], + "score": 1.0, + "content": "simplifications. We assume that", + "type": "text" + }, + { + "bbox": [ + 233, + 458, + 250, + 470 + ], + "score": 0.91, + "content": "q ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 457, + 267, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 458, + 285, + 470 + ], + "score": 0.91, + "content": "I ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 457, + 400, + 471 + ], + "score": 1.0, + "content": "are constant on each interval", + "type": "text" + }, + { + "bbox": [ + 401, + 458, + 440, + 470 + ], + "score": 0.92, + "content": "[ a _ { j } , a _ { j + 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 457, + 506, + 471 + ], + "score": 1.0, + "content": ". In other words,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 101, + 468, + 509, + 489 + ], + "spans": [ + { + "bbox": [ + 101, + 468, + 171, + 489 + ], + "score": 1.0, + "content": "we assume that", + "type": "text" + }, + { + "bbox": [ + 172, + 472, + 211, + 484 + ], + "score": 0.93, + "content": "q ( t ) = q _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 468, + 230, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 471, + 270, + 484 + ], + "score": 0.92, + "content": "I ( t ) = I _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 468, + 299, + 489 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 299, + 471, + 356, + 484 + ], + "score": 0.93, + "content": "t \\in [ a _ { j } , a _ { j + 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 468, + 458, + 489 + ], + "score": 1.0, + "content": ". We further assume that", + "type": "text" + }, + { + "bbox": [ + 459, + 469, + 494, + 485 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { d ^ { 2 } } { d t ^ { 2 } } } f ^ { \\star } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 468, + 509, + 489 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "score": 1.0, + "content": "close to a constant on the entire space, because estimating the curvature in high dimension is difficult.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 210, + 517 + ], + "score": 1.0, + "content": "This simplification yields", + "type": "text" + }, + { + "bbox": [ + 210, + 493, + 349, + 523 + ], + "score": 0.94, + "content": "\\rho _ { j } \\propto \\left[ \\frac { q _ { j } ^ { - 1 / 2 } I _ { j } ^ { - 1 / 2 } } { q _ { j } ^ { - 2 } I _ { j } ^ { - 2 } } \\right] ^ { 2 / 5 } = q _ { j } ^ { 3 / 5 } I _ { j } ^ { 3 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 498, + 507, + 518 + ], + "score": 1.0, + "content": "q3/5j I3/5j . We find the simplification works well", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 155, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 155, + 533 + ], + "score": 1.0, + "content": "in practice.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "Adaptive regularization with importance sampling. It is practically infeasible to implement the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "integration in equation 3 for high-dimensional data. We use importance sampling to approximate the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 559, + 142, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 142, + 572 + ], + "score": 1.0, + "content": "integral:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 572, + 423, + 605 + ], + "lines": [ + { + "bbox": [ + 187, + 572, + 423, + 605 + ], + "spans": [ + { + "bbox": [ + 187, + 572, + 423, + 605 + ], + "score": 0.94, + "content": "{ \\mathrm { m i n i m i z e } } _ { f } L ( f ) \\triangleq { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } \\tau _ { i } f ^ { \\prime } ( x _ { i } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "2e1a6787dd6550c48149ec5dcb7d9acd394ea64aa6edf08473a3b48b21a5a890.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 572, + 423, + 588.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 187, + 588.5, + 423, + 605.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 142, + 621 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 607, + 205, + 620 + ], + "score": 0.92, + "content": "x _ { i } \\in [ a _ { j } , a _ { j + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 606, + 261, + 621 + ], + "score": 1.0, + "content": ", we have that", + "type": "text" + }, + { + "bbox": [ + 261, + 609, + 270, + 618 + ], + "score": 0.86, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 606, + 346, + 621 + ], + "score": 1.0, + "content": "should satisfy that", + "type": "text" + }, + { + "bbox": [ + 347, + 609, + 387, + 619 + ], + "score": 0.91, + "content": "\\tau _ { i } q _ { j } = \\rho _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "so that the expectation of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 389, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 389, + 632 + ], + "score": 1.0, + "content": "regularization term in equation 5 is equal to that in equation 3. Hence,", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 631, + 383, + 650 + ], + "lines": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "spans": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "score": 0.92, + "content": "\\tau _ { i } = I _ { j } ^ { 3 / 5 } q _ { j } ^ { - 2 / 5 } = I ( x _ { i } ) ^ { 3 / 5 } q ( x _ { i } ) ^ { - 2 / 5 } .", + "type": "interline_equation", + "image_path": "e07633c49d25d6bffcf960cf99ca3e0f38f2d0e6eed54789f39998d3cc6781ba.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Adaptive regularization for multi-class classification and regression. In fact, the proof of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 264, + 681 + ], + "score": 1.0, + "content": "Theorem 1 is proved for general loss", + "type": "text" + }, + { + "bbox": [ + 264, + 668, + 292, + 680 + ], + "score": 0.92, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 667, + 506, + 681 + ], + "score": 1.0, + "content": ". Therefore, we can directly generalize it to multi-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 401, + 693 + ], + "score": 1.0, + "content": "class classification and regression problems. For a regression problem,", + "type": "text" + }, + { + "bbox": [ + 401, + 680, + 429, + 691 + ], + "score": 0.93, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "is the square loss:", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 195, + 702 + ], + "score": 0.93, + "content": "\\ell ( y , a ) = 0 . 5 ( y - a ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 689, + 289, + 704 + ], + "score": 1.0, + "content": ", the Fisher information", + "type": "text" + }, + { + "bbox": [ + 289, + 690, + 327, + 702 + ], + "score": 0.92, + "content": "I ( x ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 689, + 506, + 704 + ], + "score": 1.0, + "content": ". Therefore, for a regression problem, we can", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 701, + 291, + 716 + ], + "spans": [ + { + "bbox": [ + 104, + 701, + 224, + 716 + ], + "score": 1.0, + "content": "choose regularization weight", + "type": "text" + }, + { + "bbox": [ + 224, + 701, + 286, + 714 + ], + "score": 0.92, + "content": "\\tau _ { i } = q ( x _ { i } ) ^ { - 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 701, + 291, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 113, + 721, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "1Note that we integrate the error without weighting because we are interested in the balanced test performance.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 153, + 96 + ], + "score": 1.0, + "content": "Therefore,", + "type": "text" + }, + { + "bbox": [ + 153, + 82, + 172, + 95 + ], + "score": 0.92, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 81, + 328, + 96 + ], + "score": 1.0, + "content": "captures the aleatoric uncertainty of", + "type": "text" + }, + { + "bbox": [ + 329, + 85, + 335, + 92 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 81, + 427, + 96 + ], + "score": 1.0, + "content": ". For example, when", + "type": "text" + }, + { + "bbox": [ + 427, + 83, + 437, + 92 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "is deterministic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 390, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 168, + 107 + ], + "score": 1.0, + "content": "conditioned on", + "type": "text" + }, + { + "bbox": [ + 169, + 94, + 198, + 104 + ], + "score": 0.9, + "content": "X = x", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 92, + 236, + 107 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 236, + 93, + 275, + 106 + ], + "score": 0.93, + "content": "I ( x ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 92, + 390, + 107 + ], + "score": 1.0, + "content": ", indicating perfect certainty.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 107 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 110, + 436, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 435, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 358, + 124 + ], + "score": 1.0, + "content": "Define the test metric as the mean-squared-error on the test set", + "type": "text" + }, + { + "bbox": [ + 358, + 110, + 412, + 123 + ], + "score": 0.92, + "content": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 109, + 435, + 124 + ], + "score": 1.0, + "content": ", i.e.,1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 109, + 435, + 124 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 124, + 396, + 154 + ], + "lines": [ + { + "bbox": [ + 214, + 124, + 396, + 154 + ], + "spans": [ + { + "bbox": [ + 214, + 124, + 396, + 154 + ], + "score": 0.94, + "content": "\\operatorname { M S E } ( \\hat { f } ) \\triangleq \\operatorname * { \\mathbb { E } } _ { \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n } } \\int _ { 0 } ^ { 1 } ( \\hat { f } ( t ) - f ^ { \\star } ( t ) ) ^ { 2 } d t", + "type": "interline_equation", + "image_path": "dc65b3d0381b17b7227b7e0887d508a8f14cd239093f208efd3c6d380930865b.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 124, + 396, + 139.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 139.0, + 396, + 154.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 161, + 506, + 218 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 308, + 175 + ], + "score": 1.0, + "content": "Our main goal is to derive the optimal choice of", + "type": "text" + }, + { + "bbox": [ + 308, + 162, + 328, + 174 + ], + "score": 0.91, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 162, + 506, + 175 + ], + "score": 1.0, + "content": "that minimizes the MSE. We start with an", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 171, + 507, + 188 + ], + "spans": [ + { + "bbox": [ + 104, + 171, + 290, + 188 + ], + "score": 1.0, + "content": "analytical characterization of the test error. Let", + "type": "text" + }, + { + "bbox": [ + 290, + 174, + 333, + 186 + ], + "score": 0.92, + "content": "W _ { 2 } ^ { 2 } = \\{ f ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 171, + 443, + 188 + ], + "score": 1.0, + "content": "is absolute continuous and", + "type": "text" + }, + { + "bbox": [ + 443, + 173, + 503, + 186 + ], + "score": 0.93, + "content": "f ^ { \\prime \\prime } \\in L ^ { 2 } [ 0 , 1 ] \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 171, + 507, + 188 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 184, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 208, + 196 + ], + "score": 1.0, + "content": "We denote the density of", + "type": "text" + }, + { + "bbox": [ + 209, + 185, + 219, + 195 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 184, + 231, + 196 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 231, + 185, + 250, + 196 + ], + "score": 0.91, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 184, + 506, + 196 + ], + "score": 1.0, + "content": ". The following theorem analytically computes the MSE under", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 211, + 208 + ], + "score": 1.0, + "content": "the regularization strength", + "type": "text" + }, + { + "bbox": [ + 211, + 196, + 228, + 208 + ], + "score": 0.9, + "content": "\\rho ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 195, + 506, + 208 + ], + "score": 1.0, + "content": ", building upon (Wang et al., 2013) for regression problems. The proof", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 205, + 280, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 280, + 219 + ], + "score": 1.0, + "content": "of the Theorem is deferred to Appendix A.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 162, + 507, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 219, + 504, + 246 + ], + "lines": [ + { + "bbox": [ + 104, + 216, + 503, + 236 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 210, + 236 + ], + "score": 1.0, + "content": "Theorem 1. Assume that", + "type": "text" + }, + { + "bbox": [ + 210, + 219, + 268, + 232 + ], + "score": 0.93, + "content": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 216, + 287, + 236 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 288, + 219, + 375, + 232 + ], + "score": 0.92, + "content": "r ( t ) = - 1 / ( q ( t ) I ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 216, + 394, + 236 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 219, + 503, + 234 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t } \\end{array}", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 477, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 158, + 248 + ], + "score": 1.0, + "content": "If we choose", + "type": "text" + }, + { + "bbox": [ + 159, + 233, + 214, + 245 + ], + "score": 0.93, + "content": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 231, + 290, + 248 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 290, + 234, + 321, + 245 + ], + "score": 0.91, + "content": "C _ { 0 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 231, + 477, + 248 + ], + "score": 1.0, + "content": ", the asymptotic mean squared error is", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 216, + 503, + 248 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 248, + 463, + 277 + ], + "lines": [ + { + "bbox": [ + 148, + 248, + 463, + 277 + ], + "spans": [ + { + "bbox": [ + 148, + 248, + 463, + 277 + ], + "score": 0.93, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "98777cadf03fe227c6b48fbefae5d79c1864cbea2f9861fd994c07066c9f0efb.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 148, + 248, + 463, + 257.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 148, + 257.6666666666667, + 463, + 267.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 148, + 267.33333333333337, + 463, + 277.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 345, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 343, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 191, + 292 + ], + "score": 1.0, + "content": "in probability, where", + "type": "text" + }, + { + "bbox": [ + 192, + 279, + 205, + 289 + ], + "score": 0.88, + "content": "C _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 277, + 335, + 292 + ], + "score": 1.0, + "content": "is a scalar that only depends on", + "type": "text" + }, + { + "bbox": [ + 336, + 281, + 343, + 288 + ], + "score": 0.55, + "content": "n", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 277, + 343, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 506, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 310 + ], + "score": 1.0, + "content": "Using the analytical formula of the test error above, we want to derive an approximately optimal", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 146, + 321 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 147, + 309, + 166, + 321 + ], + "score": 0.92, + "content": "\\rho ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 309, + 485, + 321 + ], + "score": 1.0, + "content": ". A precise computation is infeasible, so we restrict ourselves to consider only", + "type": "text" + }, + { + "bbox": [ + 486, + 310, + 505, + 321 + ], + "score": 0.9, + "content": "\\rho ( x )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 321, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 505, + 332 + ], + "score": 1.0, + "content": "that is constant within groups of examples. We introduce an additional structure – we assume the data", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 184, + 345 + ], + "score": 1.0, + "content": "can be divided into", + "type": "text" + }, + { + "bbox": [ + 184, + 331, + 191, + 341 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 330, + 221, + 345 + ], + "score": 1.0, + "content": "groups", + "type": "text" + }, + { + "bbox": [ + 222, + 331, + 354, + 343 + ], + "score": 0.85, + "content": "[ a _ { 0 } , a _ { 1 } ) , \\bar { [ } a _ { 1 } , a _ { 2 } ) , \\cdot \\cdot \\cdot , [ a _ { k - 1 } , a _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 330, + 406, + 345 + ], + "score": 1.0, + "content": ". Each group", + "type": "text" + }, + { + "bbox": [ + 407, + 331, + 447, + 343 + ], + "score": 0.92, + "content": "[ a _ { j } , a _ { j + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 330, + 506, + 345 + ], + "score": 1.0, + "content": "consists of an", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 441, + 354 + ], + "score": 1.0, + "content": "interval of data with approximately the same aleatoric uncertainty. We approximate", + "type": "text" + }, + { + "bbox": [ + 442, + 342, + 459, + 354 + ], + "score": 0.91, + "content": "\\rho ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "is constant", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 353, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 189, + 366 + ], + "score": 1.0, + "content": "on each of the group", + "type": "text" + }, + { + "bbox": [ + 190, + 353, + 228, + 365 + ], + "score": 0.91, + "content": "[ a _ { i } , a _ { i + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 353, + 272, + 366 + ], + "score": 1.0, + "content": "with value", + "type": "text" + }, + { + "bbox": [ + 273, + 354, + 282, + 365 + ], + "score": 0.84, + "content": "\\rho _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 353, + 420, + 366 + ], + "score": 1.0, + "content": ". Plugging this piece-wise constant", + "type": "text" + }, + { + "bbox": [ + 420, + 355, + 427, + 365 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 353, + 506, + 366 + ], + "score": 1.0, + "content": "into the asymptotic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 363, + 230, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 230, + 375 + ], + "score": 1.0, + "content": "MSE in Theorem 1, we obtain", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 298, + 506, + 375 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 132, + 376, + 478, + 411 + ], + "lines": [ + { + "bbox": [ + 132, + 376, + 478, + 411 + ], + "spans": [ + { + "bbox": [ + 132, + 376, + 478, + 411 + ], + "score": 0.91, + "content": "\\underset { n \\infty } { \\operatorname* { l i m } } \\mathrm { M S E } ( \\hat { f } ) = \\sum _ { j } [ \\rho _ { j } ^ { 2 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) [ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) ] ^ { 2 } d t + \\rho _ { j } ^ { - 1 / 2 } L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 1 / 2 } ( t ) d t ] .", + "type": "interline_equation", + "image_path": "5587924fdba5e89247fe3f42a6f90416d13bf1d281e1d1ed0d6f3c0c3f4118d0.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 132, + 376, + 478, + 387.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 132, + 387.6666666666667, + 478, + 399.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 132, + 399.33333333333337, + 478, + 411.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 506, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 258, + 427 + ], + "score": 1.0, + "content": "Minimizing the above formula over", + "type": "text" + }, + { + "bbox": [ + 258, + 415, + 300, + 425 + ], + "score": 0.91, + "content": "\\rho _ { 1 } , \\ldots , \\rho _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 410, + 481, + 427 + ], + "score": 1.0, + "content": "separately, we derive the optimal weights,", + "type": "text" + }, + { + "bbox": [ + 481, + 414, + 505, + 425 + ], + "score": 0.85, + "content": "\\rho _ { j } =", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 108, + 423, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 108, + 424, + 225, + 459 + ], + "score": 0.78, + "content": "\\left[ \\frac { L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ( t ) ^ { 1 / 2 } d t } { 4 \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) \\left[ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) \\right] ^ { 2 } d t } \\right] ^ { 2 / }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 423, + 232, + 435 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 230, + 436, + 348, + 450 + ], + "score": 1.0, + "content": ". In practice, we do not know", + "type": "text" + }, + { + "bbox": [ + 348, + 437, + 360, + 449 + ], + "score": 0.89, + "content": "f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 436, + 378, + 450 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 378, + 437, + 397, + 449 + ], + "score": 0.91, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 436, + 505, + 450 + ], + "score": 1.0, + "content": ", so we make the following", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 232, + 471 + ], + "score": 1.0, + "content": "simplifications. We assume that", + "type": "text" + }, + { + "bbox": [ + 233, + 458, + 250, + 470 + ], + "score": 0.91, + "content": "q ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 457, + 267, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 458, + 285, + 470 + ], + "score": 0.91, + "content": "I ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 457, + 400, + 471 + ], + "score": 1.0, + "content": "are constant on each interval", + "type": "text" + }, + { + "bbox": [ + 401, + 458, + 440, + 470 + ], + "score": 0.92, + "content": "[ a _ { j } , a _ { j + 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 457, + 506, + 471 + ], + "score": 1.0, + "content": ". In other words,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 101, + 468, + 509, + 489 + ], + "spans": [ + { + "bbox": [ + 101, + 468, + 171, + 489 + ], + "score": 1.0, + "content": "we assume that", + "type": "text" + }, + { + "bbox": [ + 172, + 472, + 211, + 484 + ], + "score": 0.93, + "content": "q ( t ) = q _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 468, + 230, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 471, + 270, + 484 + ], + "score": 0.92, + "content": "I ( t ) = I _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 468, + 299, + 489 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 299, + 471, + 356, + 484 + ], + "score": 0.93, + "content": "t \\in [ a _ { j } , a _ { j + 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 468, + 458, + 489 + ], + "score": 1.0, + "content": ". We further assume that", + "type": "text" + }, + { + "bbox": [ + 459, + 469, + 494, + 485 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { d ^ { 2 } } { d t ^ { 2 } } } f ^ { \\star } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 468, + 509, + 489 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 495 + ], + "score": 1.0, + "content": "close to a constant on the entire space, because estimating the curvature in high dimension is difficult.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 210, + 517 + ], + "score": 1.0, + "content": "This simplification yields", + "type": "text" + }, + { + "bbox": [ + 210, + 493, + 349, + 523 + ], + "score": 0.94, + "content": "\\rho _ { j } \\propto \\left[ \\frac { q _ { j } ^ { - 1 / 2 } I _ { j } ^ { - 1 / 2 } } { q _ { j } ^ { - 2 } I _ { j } ^ { - 2 } } \\right] ^ { 2 / 5 } = q _ { j } ^ { 3 / 5 } I _ { j } ^ { 3 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 498, + 507, + 518 + ], + "score": 1.0, + "content": "q3/5j I3/5j . We find the simplification works well", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 155, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 155, + 533 + ], + "score": 1.0, + "content": "in practice.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 101, + 410, + 509, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "score": 1.0, + "content": "Adaptive regularization with importance sampling. It is practically infeasible to implement the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 548, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 561 + ], + "score": 1.0, + "content": "integration in equation 3 for high-dimensional data. We use importance sampling to approximate the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 559, + 142, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 142, + 572 + ], + "score": 1.0, + "content": "integral:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 537, + 506, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 572, + 423, + 605 + ], + "lines": [ + { + "bbox": [ + 187, + 572, + 423, + 605 + ], + "spans": [ + { + "bbox": [ + 187, + 572, + 423, + 605 + ], + "score": 0.94, + "content": "{ \\mathrm { m i n i m i z e } } _ { f } L ( f ) \\triangleq { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } \\tau _ { i } f ^ { \\prime } ( x _ { i } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "2e1a6787dd6550c48149ec5dcb7d9acd394ea64aa6edf08473a3b48b21a5a890.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 572, + 423, + 588.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 187, + 588.5, + 423, + 605.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 142, + 621 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 607, + 205, + 620 + ], + "score": 0.92, + "content": "x _ { i } \\in [ a _ { j } , a _ { j + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 606, + 261, + 621 + ], + "score": 1.0, + "content": ", we have that", + "type": "text" + }, + { + "bbox": [ + 261, + 609, + 270, + 618 + ], + "score": 0.86, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 606, + 346, + 621 + ], + "score": 1.0, + "content": "should satisfy that", + "type": "text" + }, + { + "bbox": [ + 347, + 609, + 387, + 619 + ], + "score": 0.91, + "content": "\\tau _ { i } q _ { j } = \\rho _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "so that the expectation of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 618, + 389, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 389, + 632 + ], + "score": 1.0, + "content": "regularization term in equation 5 is equal to that in equation 3. Hence,", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 606, + 506, + 632 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 631, + 383, + 650 + ], + "lines": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "spans": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "score": 0.92, + "content": "\\tau _ { i } = I _ { j } ^ { 3 / 5 } q _ { j } ^ { - 2 / 5 } = I ( x _ { i } ) ^ { 3 / 5 } q ( x _ { i } ) ^ { - 2 / 5 } .", + "type": "interline_equation", + "image_path": "e07633c49d25d6bffcf960cf99ca3e0f38f2d0e6eed54789f39998d3cc6781ba.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 227, + 631, + 383, + 650 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 715 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Adaptive regularization for multi-class classification and regression. In fact, the proof of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 264, + 681 + ], + "score": 1.0, + "content": "Theorem 1 is proved for general loss", + "type": "text" + }, + { + "bbox": [ + 264, + 668, + 292, + 680 + ], + "score": 0.92, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 667, + 506, + 681 + ], + "score": 1.0, + "content": ". Therefore, we can directly generalize it to multi-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 679, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 401, + 693 + ], + "score": 1.0, + "content": "class classification and regression problems. For a regression problem,", + "type": "text" + }, + { + "bbox": [ + 401, + 680, + 429, + 691 + ], + "score": 0.93, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 679, + 506, + 693 + ], + "score": 1.0, + "content": "is the square loss:", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 689, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 195, + 702 + ], + "score": 0.93, + "content": "\\ell ( y , a ) = 0 . 5 ( y - a ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 689, + 289, + 704 + ], + "score": 1.0, + "content": ", the Fisher information", + "type": "text" + }, + { + "bbox": [ + 289, + 690, + 327, + 702 + ], + "score": 0.92, + "content": "I ( x ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 689, + 506, + 704 + ], + "score": 1.0, + "content": ". Therefore, for a regression problem, we can", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 701, + 291, + 716 + ], + "spans": [ + { + "bbox": [ + 104, + 701, + 224, + 716 + ], + "score": 1.0, + "content": "choose regularization weight", + "type": "text" + }, + { + "bbox": [ + 224, + 701, + 286, + 714 + ], + "score": 0.92, + "content": "\\tau _ { i } = q ( x _ { i } ) ^ { - 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 701, + 291, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43, + "bbox_fs": [ + 104, + 657, + 506, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 507, + 116 + ], + "score": 1.0, + "content": "We heuristically extend the Lipschitz regularization technique discussed in Section 2.2 from non-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 397, + 127 + ], + "score": 1.0, + "content": "parametric models to over-parameterized deep neural networks. Let", + "type": "text" + }, + { + "bbox": [ + 397, + 114, + 420, + 126 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "be an example and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 124, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 127, + 117, + 138 + ], + "score": 0.84, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 124, + 146, + 141 + ], + "score": 1.0, + "content": "be an", + "type": "text" + }, + { + "bbox": [ + 146, + 128, + 152, + 136 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 124, + 312, + 141 + ], + "score": 1.0, + "content": "-layer neural network. We denote by", + "type": "text" + }, + { + "bbox": [ + 313, + 125, + 330, + 137 + ], + "score": 0.89, + "content": "h ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 124, + 348, + 141 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 349, + 127, + 355, + 138 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 124, + 506, + 141 + ], + "score": 1.0, + "content": "-th hidden layer of the network, by", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 135, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 218, + 153 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { J } ^ { ( j ) } ( x ) \\triangleq \\frac { \\hat { \\partial } } { \\partial h ^ { ( j ) } } \\mathcal { L } ( f ( x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 135, + 359, + 153 + ], + "score": 1.0, + "content": ", i.e., the Jacobian of the loss w.r.t", + "type": "text" + }, + { + "bbox": [ + 359, + 137, + 376, + 149 + ], + "score": 0.89, + "content": "h ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 135, + 506, + 153 + ], + "score": 1.0, + "content": ". We replace the regularization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 102, + 150, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 102, + 150, + 127, + 174 + ], + "score": 1.0, + "content": "term", + "type": "text" + }, + { + "bbox": [ + 127, + 157, + 155, + 170 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 150, + 223, + 174 + ], + "score": 1.0, + "content": "in equation 5 by", + "type": "text" + }, + { + "bbox": [ + 224, + 151, + 356, + 173 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ( x ) = { \\left( \\sum _ { j = 1 } ^ { r } | | J ^ { ( j ) } ( x ) | | _ { F } ^ { 2 } \\right) } ^ { 1 / 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 150, + 506, + 174 + ], + "score": 1.0, + "content": ", which was proposed by (Wei & Ma,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "score": 1.0, + "content": "2019a). As a proof of concept, we visualize the behavior of our algorithm in Figure 3, where we ob-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "serve that the rare and noisy examples have significantly improved error due to stronger regularization.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 429, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 429, + 206 + ], + "score": 1.0, + "content": "In contrast, a uniform regularization either overfits or underfits different subsets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "score": 1.0, + "content": "Note that the differences from the 1-D case include the following three aspects. 1. The derivative", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "is taken w.r.t to all the hidden layers for deep models, which has been shown to have superior", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "generalization guarantees for neural networks by (Wei & Ma, 2019a;b). 2. An additional square root", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 195, + 256 + ], + "score": 1.0, + "content": "is taken in computing", + "type": "text" + }, + { + "bbox": [ + 195, + 244, + 217, + 255 + ], + "score": 0.92, + "content": "R ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 245, + 506, + 256 + ], + "score": 1.0, + "content": ". This modified version may have milder curvature and be easier to tune.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 460, + 266 + ], + "score": 1.0, + "content": "3. We take the derivative of the loss instead of the derivative of the model, which outputs", + "type": "text" + }, + { + "bbox": [ + 461, + 255, + 467, + 264 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "numbers", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 430, + 278 + ], + "score": 1.0, + "content": "for multi-class classification. This is because the derivative of the model requires", + "type": "text" + }, + { + "bbox": [ + 430, + 266, + 437, + 276 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "times more time", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 277, + 357, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 357, + 289 + ], + "score": 1.0, + "content": "to compute. The regularized training objective is consequently", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 290, + 415, + 322 + ], + "lines": [ + { + "bbox": [ + 194, + 290, + 415, + 322 + ], + "spans": [ + { + "bbox": [ + 194, + 290, + 415, + 322 + ], + "score": 0.93, + "content": "\\mathrm { m i n i m i z e } _ { f } L ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left( \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\tau _ { i } R ( x _ { i } ) \\right) ,", + "type": "interline_equation", + "image_path": "9c0f87a88a7df27d97e5a419a545e647849d7ceef67136637f7d116cf57bf9ae.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 290, + 415, + 306.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 194, + 306.0, + 415, + 322.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 104, + 324, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 324, + 132, + 340 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 329, + 141, + 338 + ], + "score": 0.84, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 324, + 203, + 340 + ], + "score": 1.0, + "content": "is chosen to be", + "type": "text" + }, + { + "bbox": [ + 204, + 325, + 298, + 339 + ], + "score": 0.93, + "content": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 324, + 506, + 340 + ], + "score": 1.0, + "content": "following the formula equation 5 in Section 2.2 and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 338, + 114, + 347 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "is a hyperparameter to control the overall scale of the regularization strength. We note that we do", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 208, + 360 + ], + "score": 1.0, + "content": "not expect this choice of", + "type": "text" + }, + { + "bbox": [ + 209, + 350, + 217, + 360 + ], + "score": 0.85, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "to be optimal for the high-dimensional case with all the modifications", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "above – the optimal choice does depend on the nuances. However, we also observe that the empirical", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 275, + 383 + ], + "score": 1.0, + "content": "performance is not sensitive to the form of", + "type": "text" + }, + { + "bbox": [ + 275, + 372, + 282, + 380 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 370, + 391, + 383 + ], + "score": 1.0, + "content": "as long as it’s increasing in", + "type": "text" + }, + { + "bbox": [ + 392, + 370, + 411, + 382 + ], + "score": 0.92, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 370, + 484, + 383 + ], + "score": 1.0, + "content": "and decreasing in", + "type": "text" + }, + { + "bbox": [ + 484, + 372, + 503, + 382 + ], + "score": 0.92, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 370, + 506, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 380, + 486, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 486, + 394 + ], + "score": 1.0, + "content": "That is, the more uncertain or rare an example is, the stronger regularization should be applied.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 331, + 411 + ], + "score": 1.0, + "content": "In order to estimate the relative regularization strength", + "type": "text" + }, + { + "bbox": [ + 332, + 400, + 341, + 409 + ], + "score": 0.84, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 397, + 505, + 411 + ], + "score": 1.0, + "content": ", the key difficulty lies in the estimation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 165, + 423 + ], + "score": 1.0, + "content": "of uncertainty", + "type": "text" + }, + { + "bbox": [ + 166, + 409, + 185, + 421 + ], + "score": 0.91, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 408, + 395, + 423 + ], + "score": 1.0, + "content": ". As in the 1-D setting, we divide the examples into", + "type": "text" + }, + { + "bbox": [ + 395, + 410, + 402, + 419 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 408, + 433, + 423 + ], + "score": 1.0, + "content": "groups", + "type": "text" + }, + { + "bbox": [ + 434, + 409, + 482, + 420 + ], + "score": 0.92, + "content": "G _ { 1 } , \\ldots , G _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "each group can correspond to a class), and estimate the uncertainty on each group. In the binary", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 140, + 444 + ], + "score": 1.0, + "content": "setting,", + "type": "text" + }, + { + "bbox": [ + 140, + 431, + 399, + 443 + ], + "score": 0.89, + "content": "I ( x ) = \\mathrm { \\mathrm { V a r } } ( { \\bar { Y } } | X = x ) = \\operatorname* { P r } [ Y = 1 \\mid X ] \\cdot \\operatorname* { P r } [ Y = 0 \\ { \\bar { | } } \\ X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "can be approximated by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 441, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 285, + 456 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\tilde { I } ( x ) = 1 - \\operatorname* { m a x } _ { k \\in \\{ 0 , 1 \\} } \\operatorname* { P r } [ Y = k \\mid X = x ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 441, + 507, + 459 + ], + "score": 1.0, + "content": "up to a factor of at most 2. We use the same formula for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 434, + 467 + ], + "score": 1.0, + "content": "multi-class setting as the approximation of the uncertainty. (As a sanity check, when", + "type": "text" + }, + { + "bbox": [ + 434, + 455, + 443, + 465 + ], + "score": 0.59, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "is concentrated", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 316, + 479 + ], + "score": 1.0, + "content": "on a single outcome, the uncertainty is 0.) Note that", + "type": "text" + }, + { + "bbox": [ + 317, + 465, + 336, + 479 + ], + "score": 0.92, + "content": "\\tilde { I } ( \\stackrel { \\cdot } { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "is essentially the minimum possible error", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 308, + 491 + ], + "score": 1.0, + "content": "of any deterministic prediction on the data point", + "type": "text" + }, + { + "bbox": [ + 309, + 480, + 315, + 488 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ". Assume that we have a sufficiently accurate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 489, + 375, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 350, + 503 + ], + "score": 1.0, + "content": "pre-trained model, we can use its validation error to estimate", + "type": "text" + }, + { + "bbox": [ + 351, + 489, + 370, + 502 + ], + "score": 0.92, + "content": "\\tilde { I } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 489, + 375, + 503 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 311, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 311, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 155, + 522 + ], + "score": 1.0, + "content": "Then for all", + "type": "text" + }, + { + "bbox": [ + 156, + 507, + 186, + 520 + ], + "score": 0.92, + "content": "x \\in G _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 504, + 240, + 522 + ], + "score": 1.0, + "content": ", we estimate", + "type": "text" + }, + { + "bbox": [ + 240, + 507, + 260, + 519 + ], + "score": 0.92, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 504, + 278, + 522 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 278, + 507, + 298, + 519 + ], + "score": 0.91, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 504, + 311, + 522 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 119, + 522, + 474, + 534 + ], + "lines": [ + { + "bbox": [ + 120, + 520, + 475, + 536 + ], + "spans": [ + { + "bbox": [ + 120, + 521, + 222, + 535 + ], + "score": 0.53, + "content": "\\forall x \\in G _ { j } , q ( x ) \\propto | G _ { j } | , I", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 522, + 248, + 534 + ], + "score": 0.77, + "content": "I ( x ) \\propto", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 520, + 437, + 536 + ], + "score": 1.0, + "content": "average validation error of a pre-trained model", + "type": "text" + }, + { + "bbox": [ + 437, + 522, + 448, + 534 + ], + "score": 0.85, + "content": "f _ { \\tilde { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 520, + 461, + 536 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 462, + 522, + 475, + 534 + ], + "score": 0.84, + "content": "G _ { j }", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 343, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 344, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 344, + 556 + ], + "score": 1.0, + "content": "The whole training pipeline is summarized in Algorithm 1.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 106, + 565, + 356, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 357, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 357, + 580 + ], + "score": 1.0, + "content": "Algorithm 1 Heteroskedastic Adaptive Regularization (HAR)", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 581, + 491, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 367, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 181, + 595 + ], + "score": 1.0, + "content": "Require: Dataset", + "type": "text" + }, + { + "bbox": [ + 182, + 581, + 257, + 593 + ], + "score": 0.9, + "content": "\\mathcal { D } = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 579, + 357, + 595 + ], + "score": 1.0, + "content": ". A parameterized model", + "type": "text" + }, + { + "bbox": [ + 357, + 582, + 367, + 593 + ], + "score": 0.67, + "content": "f _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 110, + 592, + 278, + 605 + ], + "spans": [ + { + "bbox": [ + 110, + 592, + 191, + 605 + ], + "score": 1.0, + "content": "1: Split training set", + "type": "text" + }, + { + "bbox": [ + 192, + 593, + 201, + 602 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 592, + 220, + 605 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 220, + 594, + 243, + 603 + ], + "score": 0.89, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 592, + 260, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 593, + 278, + 603 + ], + "score": 0.87, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 109, + 602, + 280, + 618 + ], + "spans": [ + { + "bbox": [ + 109, + 602, + 123, + 618 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 123, + 604, + 147, + 616 + ], + "score": 0.83, + "content": "f _ { \\tilde { \\theta } } \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 602, + 257, + 618 + ], + "score": 1.0, + "content": "Standard SGD Training on", + "type": "text" + }, + { + "bbox": [ + 258, + 604, + 280, + 615 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 108, + 613, + 488, + 630 + ], + "spans": [ + { + "bbox": [ + 108, + 613, + 160, + 630 + ], + "score": 1.0, + "content": "3: Estimate", + "type": "text" + }, + { + "bbox": [ + 161, + 616, + 203, + 628 + ], + "score": 0.92, + "content": "I ( x ) , q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 613, + 293, + 630 + ], + "score": 1.0, + "content": "with equation 7 using", + "type": "text" + }, + { + "bbox": [ + 293, + 616, + 304, + 629 + ], + "score": 0.89, + "content": "f _ { \\tilde { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 613, + 317, + 630 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 317, + 617, + 335, + 628 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 613, + 392, + 630 + ], + "score": 1.0, + "content": ", and compute", + "type": "text" + }, + { + "bbox": [ + 393, + 614, + 488, + 628 + ], + "score": 0.91, + "content": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 110, + 627, + 122, + 639 + ], + "spans": [ + { + "bbox": [ + 110, + 627, + 122, + 639 + ], + "score": 1.0, + "content": "4:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 110, + 638, + 298, + 651 + ], + "spans": [ + { + "bbox": [ + 110, + 638, + 249, + 651 + ], + "score": 1.0, + "content": "5: Initialize the model parameters", + "type": "text" + }, + { + "bbox": [ + 250, + 639, + 256, + 648 + ], + "score": 0.75, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 638, + 298, + 651 + ], + "score": 1.0, + "content": "randomly", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 110, + 648, + 440, + 662 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 123, + 662 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 124, + 649, + 170, + 661 + ], + "score": 0.89, + "content": "f _ { \\boldsymbol { \\theta } } \\gets \\mathsf { S G D }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 648, + 430, + 662 + ], + "score": 1.0, + "content": "with the regularized objective as in equation 6 on the full dataset", + "type": "text" + }, + { + "bbox": [ + 430, + 650, + 440, + 659 + ], + "score": 0.7, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 201, + 698 + ], + "lines": [ + { + "bbox": [ + 104, + 684, + 202, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 202, + 700 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "We experimentally show that our proposed algorithm HAR(Algorithm 1) improves the test perfor-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "mance of the noisier and rarer groups of examples (by stronger regularization) without negatively", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 82, + 504, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "2.3 PRACTICAL IMPLEMENTATION ON NEURAL NETWORKS WITH HIGH-DIMENSIONAL DATA", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 507, + 116 + ], + "score": 1.0, + "content": "We heuristically extend the Lipschitz regularization technique discussed in Section 2.2 from non-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 397, + 127 + ], + "score": 1.0, + "content": "parametric models to over-parameterized deep neural networks. Let", + "type": "text" + }, + { + "bbox": [ + 397, + 114, + 420, + 126 + ], + "score": 0.92, + "content": "( x , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "be an example and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 124, + 506, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 127, + 117, + 138 + ], + "score": 0.84, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 124, + 146, + 141 + ], + "score": 1.0, + "content": "be an", + "type": "text" + }, + { + "bbox": [ + 146, + 128, + 152, + 136 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 124, + 312, + 141 + ], + "score": 1.0, + "content": "-layer neural network. We denote by", + "type": "text" + }, + { + "bbox": [ + 313, + 125, + 330, + 137 + ], + "score": 0.89, + "content": "h ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 124, + 348, + 141 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 349, + 127, + 355, + 138 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 124, + 506, + 141 + ], + "score": 1.0, + "content": "-th hidden layer of the network, by", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 135, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 218, + 153 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { J } ^ { ( j ) } ( x ) \\triangleq \\frac { \\hat { \\partial } } { \\partial h ^ { ( j ) } } \\mathcal { L } ( f ( x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 135, + 359, + 153 + ], + "score": 1.0, + "content": ", i.e., the Jacobian of the loss w.r.t", + "type": "text" + }, + { + "bbox": [ + 359, + 137, + 376, + 149 + ], + "score": 0.89, + "content": "h ^ { ( j ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 135, + 506, + 153 + ], + "score": 1.0, + "content": ". We replace the regularization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 102, + 150, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 102, + 150, + 127, + 174 + ], + "score": 1.0, + "content": "term", + "type": "text" + }, + { + "bbox": [ + 127, + 157, + 155, + 170 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 150, + 223, + 174 + ], + "score": 1.0, + "content": "in equation 5 by", + "type": "text" + }, + { + "bbox": [ + 224, + 151, + 356, + 173 + ], + "score": 0.93, + "content": "\\begin{array} { r } { R ( x ) = { \\left( \\sum _ { j = 1 } ^ { r } | | J ^ { ( j ) } ( x ) | | _ { F } ^ { 2 } \\right) } ^ { 1 / 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 150, + 506, + 174 + ], + "score": 1.0, + "content": ", which was proposed by (Wei & Ma,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 507, + 185 + ], + "score": 1.0, + "content": "2019a). As a proof of concept, we visualize the behavior of our algorithm in Figure 3, where we ob-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 195 + ], + "score": 1.0, + "content": "serve that the rare and noisy examples have significantly improved error due to stronger regularization.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 194, + 429, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 429, + 206 + ], + "score": 1.0, + "content": "In contrast, a uniform regularization either overfits or underfits different subsets.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 102, + 102, + 507, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 210, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 222 + ], + "score": 1.0, + "content": "Note that the differences from the 1-D case include the following three aspects. 1. The derivative", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "is taken w.r.t to all the hidden layers for deep models, which has been shown to have superior", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "generalization guarantees for neural networks by (Wei & Ma, 2019a;b). 2. An additional square root", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 195, + 256 + ], + "score": 1.0, + "content": "is taken in computing", + "type": "text" + }, + { + "bbox": [ + 195, + 244, + 217, + 255 + ], + "score": 0.92, + "content": "R ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 245, + 506, + 256 + ], + "score": 1.0, + "content": ". This modified version may have milder curvature and be easier to tune.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 254, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 460, + 266 + ], + "score": 1.0, + "content": "3. We take the derivative of the loss instead of the derivative of the model, which outputs", + "type": "text" + }, + { + "bbox": [ + 461, + 255, + 467, + 264 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 254, + 505, + 266 + ], + "score": 1.0, + "content": "numbers", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 430, + 278 + ], + "score": 1.0, + "content": "for multi-class classification. This is because the derivative of the model requires", + "type": "text" + }, + { + "bbox": [ + 430, + 266, + 437, + 276 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "times more time", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 277, + 357, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 357, + 289 + ], + "score": 1.0, + "content": "to compute. The regularized training objective is consequently", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 211, + 506, + 289 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 290, + 415, + 322 + ], + "lines": [ + { + "bbox": [ + 194, + 290, + 415, + 322 + ], + "spans": [ + { + "bbox": [ + 194, + 290, + 415, + 322 + ], + "score": 0.93, + "content": "\\mathrm { m i n i m i z e } _ { f } L ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left( \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\tau _ { i } R ( x _ { i } ) \\right) ,", + "type": "interline_equation", + "image_path": "9c0f87a88a7df27d97e5a419a545e647849d7ceef67136637f7d116cf57bf9ae.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 290, + 415, + 306.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 194, + 306.0, + 415, + 322.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 104, + 324, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 324, + 132, + 340 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 329, + 141, + 338 + ], + "score": 0.84, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 324, + 203, + 340 + ], + "score": 1.0, + "content": "is chosen to be", + "type": "text" + }, + { + "bbox": [ + 204, + 325, + 298, + 339 + ], + "score": 0.93, + "content": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 324, + 506, + 340 + ], + "score": 1.0, + "content": "following the formula equation 5 in Section 2.2 and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 338, + 114, + 347 + ], + "score": 0.8, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "is a hyperparameter to control the overall scale of the regularization strength. We note that we do", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 208, + 360 + ], + "score": 1.0, + "content": "not expect this choice of", + "type": "text" + }, + { + "bbox": [ + 209, + 350, + 217, + 360 + ], + "score": 0.85, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "to be optimal for the high-dimensional case with all the modifications", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "above – the optimal choice does depend on the nuances. However, we also observe that the empirical", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 275, + 383 + ], + "score": 1.0, + "content": "performance is not sensitive to the form of", + "type": "text" + }, + { + "bbox": [ + 275, + 372, + 282, + 380 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 370, + 391, + 383 + ], + "score": 1.0, + "content": "as long as it’s increasing in", + "type": "text" + }, + { + "bbox": [ + 392, + 370, + 411, + 382 + ], + "score": 0.92, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 370, + 484, + 383 + ], + "score": 1.0, + "content": "and decreasing in", + "type": "text" + }, + { + "bbox": [ + 484, + 372, + 503, + 382 + ], + "score": 0.92, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 370, + 506, + 383 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 380, + 486, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 486, + 394 + ], + "score": 1.0, + "content": "That is, the more uncertain or rare an example is, the stronger regularization should be applied.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 324, + 506, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 331, + 411 + ], + "score": 1.0, + "content": "In order to estimate the relative regularization strength", + "type": "text" + }, + { + "bbox": [ + 332, + 400, + 341, + 409 + ], + "score": 0.84, + "content": "\\tau _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 397, + 505, + 411 + ], + "score": 1.0, + "content": ", the key difficulty lies in the estimation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 408, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 165, + 423 + ], + "score": 1.0, + "content": "of uncertainty", + "type": "text" + }, + { + "bbox": [ + 166, + 409, + 185, + 421 + ], + "score": 0.91, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 408, + 395, + 423 + ], + "score": 1.0, + "content": ". As in the 1-D setting, we divide the examples into", + "type": "text" + }, + { + "bbox": [ + 395, + 410, + 402, + 419 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 408, + 433, + 423 + ], + "score": 1.0, + "content": "groups", + "type": "text" + }, + { + "bbox": [ + 434, + 409, + 482, + 420 + ], + "score": 0.92, + "content": "G _ { 1 } , \\ldots , G _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 408, + 506, + 423 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 434 + ], + "score": 1.0, + "content": "each group can correspond to a class), and estimate the uncertainty on each group. In the binary", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 104, + 430, + 140, + 444 + ], + "score": 1.0, + "content": "setting,", + "type": "text" + }, + { + "bbox": [ + 140, + 431, + 399, + 443 + ], + "score": 0.89, + "content": "I ( x ) = \\mathrm { \\mathrm { V a r } } ( { \\bar { Y } } | X = x ) = \\operatorname* { P r } [ Y = 1 \\mid X ] \\cdot \\operatorname* { P r } [ Y = 0 \\ { \\bar { | } } \\ X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "can be approximated by", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 441, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 285, + 456 + ], + "score": 0.85, + "content": "\\begin{array} { r } { \\tilde { I } ( x ) = 1 - \\operatorname* { m a x } _ { k \\in \\{ 0 , 1 \\} } \\operatorname* { P r } [ Y = k \\mid X = x ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 441, + 507, + 459 + ], + "score": 1.0, + "content": "up to a factor of at most 2. We use the same formula for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 434, + 467 + ], + "score": 1.0, + "content": "multi-class setting as the approximation of the uncertainty. (As a sanity check, when", + "type": "text" + }, + { + "bbox": [ + 434, + 455, + 443, + 465 + ], + "score": 0.59, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "is concentrated", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 316, + 479 + ], + "score": 1.0, + "content": "on a single outcome, the uncertainty is 0.) Note that", + "type": "text" + }, + { + "bbox": [ + 317, + 465, + 336, + 479 + ], + "score": 0.92, + "content": "\\tilde { I } ( \\stackrel { \\cdot } { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "is essentially the minimum possible error", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 308, + 491 + ], + "score": 1.0, + "content": "of any deterministic prediction on the data point", + "type": "text" + }, + { + "bbox": [ + 309, + 480, + 315, + 488 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ". Assume that we have a sufficiently accurate", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 489, + 375, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 350, + 503 + ], + "score": 1.0, + "content": "pre-trained model, we can use its validation error to estimate", + "type": "text" + }, + { + "bbox": [ + 351, + 489, + 370, + 502 + ], + "score": 0.92, + "content": "\\tilde { I } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 489, + 375, + 503 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 397, + 507, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 507, + 311, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 504, + 311, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 155, + 522 + ], + "score": 1.0, + "content": "Then for all", + "type": "text" + }, + { + "bbox": [ + 156, + 507, + 186, + 520 + ], + "score": 0.92, + "content": "x \\in G _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 504, + 240, + 522 + ], + "score": 1.0, + "content": ", we estimate", + "type": "text" + }, + { + "bbox": [ + 240, + 507, + 260, + 519 + ], + "score": 0.92, + "content": "q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 504, + 278, + 522 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 278, + 507, + 298, + 519 + ], + "score": 0.91, + "content": "I ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 504, + 311, + 522 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 120, + 520, + 475, + 536 + ], + "spans": [ + { + "bbox": [ + 120, + 521, + 222, + 535 + ], + "score": 0.53, + "content": "\\forall x \\in G _ { j } , q ( x ) \\propto | G _ { j } | , I", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 522, + 248, + 534 + ], + "score": 0.77, + "content": "I ( x ) \\propto", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 520, + 437, + 536 + ], + "score": 1.0, + "content": "average validation error of a pre-trained model", + "type": "text" + }, + { + "bbox": [ + 437, + 522, + 448, + 534 + ], + "score": 0.85, + "content": "f _ { \\tilde { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 520, + 461, + 536 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 462, + 522, + 475, + 534 + ], + "score": 0.84, + "content": "G _ { j }", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 504, + 311, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 119, + 522, + 474, + 534 + ], + "lines": [], + "index": 33, + "bbox_fs": [ + 120, + 520, + 475, + 536 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 542, + 343, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 344, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 344, + 556 + ], + "score": 1.0, + "content": "The whole training pipeline is summarized in Algorithm 1.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 541, + 344, + 556 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 565, + 356, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 357, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 357, + 580 + ], + "score": 1.0, + "content": "Algorithm 1 Heteroskedastic Adaptive Regularization (HAR)", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "index", + "bbox": [ + 108, + 581, + 491, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 367, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 181, + 595 + ], + "score": 1.0, + "content": "Require: Dataset", + "type": "text" + }, + { + "bbox": [ + 182, + 581, + 257, + 593 + ], + "score": 0.9, + "content": "\\mathcal { D } = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 579, + 357, + 595 + ], + "score": 1.0, + "content": ". A parameterized model", + "type": "text" + }, + { + "bbox": [ + 357, + 582, + 367, + 593 + ], + "score": 0.67, + "content": "f _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 592, + 278, + 605 + ], + "spans": [ + { + "bbox": [ + 110, + 592, + 191, + 605 + ], + "score": 1.0, + "content": "1: Split training set", + "type": "text" + }, + { + "bbox": [ + 192, + 593, + 201, + 602 + ], + "score": 0.76, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 592, + 220, + 605 + ], + "score": 1.0, + "content": "into", + "type": "text" + }, + { + "bbox": [ + 220, + 594, + 243, + 603 + ], + "score": 0.89, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 592, + 260, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 593, + 278, + 603 + ], + "score": 0.87, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 602, + 280, + 618 + ], + "spans": [ + { + "bbox": [ + 109, + 602, + 123, + 618 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 123, + 604, + 147, + 616 + ], + "score": 0.83, + "content": "f _ { \\tilde { \\theta } } \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 602, + 257, + 618 + ], + "score": 1.0, + "content": "Standard SGD Training on", + "type": "text" + }, + { + "bbox": [ + 258, + 604, + 280, + 615 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 613, + 488, + 630 + ], + "spans": [ + { + "bbox": [ + 108, + 613, + 160, + 630 + ], + "score": 1.0, + "content": "3: Estimate", + "type": "text" + }, + { + "bbox": [ + 161, + 616, + 203, + 628 + ], + "score": 0.92, + "content": "I ( x ) , q ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 613, + 293, + 630 + ], + "score": 1.0, + "content": "with equation 7 using", + "type": "text" + }, + { + "bbox": [ + 293, + 616, + 304, + 629 + ], + "score": 0.89, + "content": "f _ { \\tilde { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 613, + 317, + 630 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 317, + 617, + 335, + 628 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 613, + 392, + 630 + ], + "score": 1.0, + "content": ", and compute", + "type": "text" + }, + { + "bbox": [ + 393, + 614, + 488, + 628 + ], + "score": 0.91, + "content": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }", + "type": "inline_equation" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 627, + 122, + 639 + ], + "spans": [ + { + "bbox": [ + 110, + 627, + 122, + 639 + ], + "score": 1.0, + "content": "4:", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 638, + 298, + 651 + ], + "spans": [ + { + "bbox": [ + 110, + 638, + 249, + 651 + ], + "score": 1.0, + "content": "5: Initialize the model parameters", + "type": "text" + }, + { + "bbox": [ + 250, + 639, + 256, + 648 + ], + "score": 0.75, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 638, + 298, + 651 + ], + "score": 1.0, + "content": "randomly", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 648, + 440, + 662 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 123, + 662 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 124, + 649, + 170, + 661 + ], + "score": 0.89, + "content": "f _ { \\boldsymbol { \\theta } } \\gets \\mathsf { S G D }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 648, + 430, + 662 + ], + "score": 1.0, + "content": "with the regularized objective as in equation 6 on the full dataset", + "type": "text" + }, + { + "bbox": [ + 430, + 650, + 440, + 659 + ], + "score": 0.7, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 42, + "is_list_start_line": true + } + ], + "index": 39, + "bbox_fs": [ + 105, + 579, + 488, + 662 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 201, + 698 + ], + "lines": [ + { + "bbox": [ + 104, + 684, + 202, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 202, + 700 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "We experimentally show that our proposed algorithm HAR(Algorithm 1) improves the test perfor-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "mance of the noisier and rarer groups of examples (by stronger regularization) without negatively", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "affecting the training and test performance of the other groups. We evaluate our algorithms on", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "three vision datasets and one NLP dataset: CIFAR-10 and CIFAR-100 (Krizhevsky et al., 2009),", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "IMDB-review (Maas et al., 2011) (see Appendix C.1), and WebVision (Li et al., 2017), a real-world", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "heteroskedastic and imbalanced dataset. Please refer to Appendix B for low-level implementation", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 138, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 138, + 138 + ], + "score": 1.0, + "content": "details.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 709, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "affecting the training and test performance of the other groups. We evaluate our algorithms on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "three vision datasets and one NLP dataset: CIFAR-10 and CIFAR-100 (Krizhevsky et al., 2009),", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "IMDB-review (Maas et al., 2011) (see Appendix C.1), and WebVision (Li et al., 2017), a real-world", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "heteroskedastic and imbalanced dataset. Please refer to Appendix B for low-level implementation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 138, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 138, + 138 + ], + "score": 1.0, + "content": "details.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "Baselines. We compare our proposed HAR with the following baselines. The simplest one is (1)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 506, + 166 + ], + "score": 1.0, + "content": "Empirical risk minimization (ERM): the vanilla cross-entropy loss with all examples having the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "same weights of losses. We select two representatives from the noise-cleaning line of approach. (2)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "Co-teaching (Han et al., 2018): two deep networks are trained simultaneously. Each network aims", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "to identify clean data points that have small losses and use them to guide the training of the other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "network. (3) INCV (Chen et al., 2019): it extends Co-teacing to an interative version to estimate the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "noise ratio and select data. We consider three representatives from the reweighting-based methods,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "including two that learn the weighting using meta-learning. (4) MentorNet (Jiang et al., 2018): it", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "pretrains a teacher network that outputs weights for examples that are used to train the student network", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 243, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 506, + 254 + ], + "score": 1.0, + "content": "with reweighting. (5) L2RW (Ren et al., 2018): it directly optimizes weights of each example in the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "training set by minimizing its corresponding loss on a small meta validation set. (6) MW-Net (Shu", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "et al., 2019): it extends L2RW by explicitly defining a weighting function which depends only on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "the loss of the example. We also compare against two representatives from the robust loss function.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 286, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 506, + 298 + ], + "score": 1.0, + "content": "(7) GCE (Zhang & Sabuncu, 2018): it generalizes mean average error and cross-entropy loss to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 266, + 309 + ], + "score": 1.0, + "content": "obtain a new loss function. (8) DMI (", + "type": "text" + }, + { + "bbox": [ + 266, + 297, + 280, + 307 + ], + "score": 0.28, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "et al., 2019): it designs a new loss function based on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "generalized mutual information. In addition, as an essential ablation study, we consider vanilla", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "uniform regularization. (9) Unif-reg: we apply the Jacobian regularizer on all examples with equal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 329, + 405, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 405, + 343 + ], + "score": 1.0, + "content": "strength, and tune the strength to get the best possible validation accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 109, + 363, + 444, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 447, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 447, + 374 + ], + "score": 1.0, + "content": "3.1 SIMULATING HETEROSKEDASTIC AND IMBALANCED DATASETS ON CIFAR", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "Setting. Unlike previous works that test on uniform random or asymmetric noise, which is often not", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "the case in reality, in this paper we test our method on more realistic noisy settings, as suggested", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "by Patrini et al. (2017); Zhang & Sabuncu (2018). In order to simulate heteroskedasticity, we only", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 368, + 432 + ], + "score": 1.0, + "content": "corrupt semantically-similar classes. For CIFAR-10, we exchange", + "type": "text" + }, + { + "bbox": [ + 369, + 419, + 388, + 429 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "of the labels between classes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "‘cat’ and ‘dog’, and between ‘truck’ and ‘automobile’. CIFAR-100 has 100 classes grouped into", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 426, + 453 + ], + "score": 1.0, + "content": "20 super classes. For each class of the 5 classes under the super class ‘vehicles", + "type": "text" + }, + { + "bbox": [ + 426, + 441, + 436, + 451 + ], + "score": 0.26, + "content": "_ { 1 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 441, + 492, + 453 + ], + "score": 1.0, + "content": "and ‘vehicles", + "type": "text" + }, + { + "bbox": [ + 493, + 441, + 502, + 451 + ], + "score": 0.57, + "content": "_ { 2 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 441, + 506, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 212, + 464 + ], + "score": 1.0, + "content": "we corrupt the labels with", + "type": "text" + }, + { + "bbox": [ + 212, + 452, + 232, + 462 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "probability uniformly randomly to the rest of four classes under the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 461, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 461, + 390, + 476 + ], + "score": 1.0, + "content": "same super class. As a result, the 10 classes under super class ‘vehicle", + "type": "text" + }, + { + "bbox": [ + 390, + 463, + 400, + 473 + ], + "score": 0.39, + "content": "_ { 1 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 461, + 452, + 476 + ], + "score": 1.0, + "content": "and ‘vehicle", + "type": "text" + }, + { + "bbox": [ + 452, + 463, + 462, + 473 + ], + "score": 0.53, + "content": "_ { 2 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 461, + 505, + 476 + ], + "score": 1.0, + "content": "have high", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "label noise level and the corruption are only within the same super class. Heteroskedasticity of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "labels and imbalance of the inputs commonly coexist in the real world settings. HAR can take both of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "them into account. To understand the challenge imposed by the entanglements of heteroskedasticity", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "and imbalance, and compare HAR with the aforementioned baselines, we inject data imbalance", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "concurrently with the heteroskedastic noise. We remove samples from the corrupted classes to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "simulate the most difficult scenario — the rare and noisy groups overfit significantly. (A more benign", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "interaction between the noises and imbalance is that the rare classes have lower noise level, we defer", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "it to Appendix C.3.) We use the imbalance ratio to denote the frequency ratio between the frequent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "(and clean) classes to the rare (and corrupted) classes. We consider imbalance ratio to be 10 and 100.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 591 + ], + "score": 1.0, + "content": "Result. Table 1 summarizes the results. Since examples from rare classes tend to have larger training", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "score": 1.0, + "content": "and validation loss regardless of whether the labels are correct or not, noise-cleaning based methods", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "might drop excessive examples with correct labels. We examined the noise ratio of dropped samples", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "for INCV under the setting of imbalance ratio equals 10. Among all dropped examples, there is", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 127, + 634 + ], + "score": 1.0, + "content": "only", + "type": "text" + }, + { + "bbox": [ + 128, + 622, + 155, + 632 + ], + "score": 0.86, + "content": "1 9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 622, + 477, + 634 + ], + "score": 1.0, + "content": "of true noise examples. In addition, the rare class examples selected still have", + "type": "text" + }, + { + "bbox": [ + 477, + 622, + 505, + 632 + ], + "score": 0.86, + "content": "2 9 . 8 \\%", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "of label noise. This explains that the significant decrease of accuracies of Co-teaching and INCV", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "on corrupted and rare classes. Reweighting-based methods tend to suffer from the loss of accuracy", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "in other more frequent classes, which is aligned with the findings in Cao et al. (2019). While the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "aforementioned baselines struggle to deal with heteroskedasticity and imbalance together, HAR is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "able to put them under the same regularization framework and achieve significant improvements.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Notably, HAR also shows improvement over uniform regularization with optimally tuned strength.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "This clearly demonstrates the importance of introducing adaptive regularization among all examples", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "for a better trade-off. A more detailed ablation study on the trade-off between training accuracy and", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 299, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 299, + 732 + ], + "score": 1.0, + "content": "validation accuracy can be found in Section 3.3.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 47.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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, + 137 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 505, + 138 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 506, + 156 + ], + "score": 1.0, + "content": "Baselines. We compare our proposed HAR with the following baselines. The simplest one is (1)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 155, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 506, + 166 + ], + "score": 1.0, + "content": "Empirical risk minimization (ERM): the vanilla cross-entropy loss with all examples having the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "same weights of losses. We select two representatives from the noise-cleaning line of approach. (2)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "Co-teaching (Han et al., 2018): two deep networks are trained simultaneously. Each network aims", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "to identify clean data points that have small losses and use them to guide the training of the other", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "network. (3) INCV (Chen et al., 2019): it extends Co-teacing to an interative version to estimate the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "noise ratio and select data. We consider three representatives from the reweighting-based methods,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "including two that learn the weighting using meta-learning. (4) MentorNet (Jiang et al., 2018): it", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "pretrains a teacher network that outputs weights for examples that are used to train the student network", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 243, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 506, + 254 + ], + "score": 1.0, + "content": "with reweighting. (5) L2RW (Ren et al., 2018): it directly optimizes weights of each example in the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "training set by minimizing its corresponding loss on a small meta validation set. (6) MW-Net (Shu", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "et al., 2019): it extends L2RW by explicitly defining a weighting function which depends only on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "the loss of the example. We also compare against two representatives from the robust loss function.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 286, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 506, + 298 + ], + "score": 1.0, + "content": "(7) GCE (Zhang & Sabuncu, 2018): it generalizes mean average error and cross-entropy loss to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 266, + 309 + ], + "score": 1.0, + "content": "obtain a new loss function. (8) DMI (", + "type": "text" + }, + { + "bbox": [ + 266, + 297, + 280, + 307 + ], + "score": 0.28, + "content": "\\mathrm { X u }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "et al., 2019): it designs a new loss function based on", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "generalized mutual information. In addition, as an essential ablation study, we consider vanilla", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "uniform regularization. (9) Unif-reg: we apply the Jacobian regularizer on all examples with equal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 329, + 405, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 405, + 343 + ], + "score": 1.0, + "content": "strength, and tune the strength to get the best possible validation accuracy.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 142, + 506, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 363, + 444, + 373 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 447, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 447, + 374 + ], + "score": 1.0, + "content": "3.1 SIMULATING HETEROSKEDASTIC AND IMBALANCED DATASETS ON CIFAR", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 386, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "Setting. Unlike previous works that test on uniform random or asymmetric noise, which is often not", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "the case in reality, in this paper we test our method on more realistic noisy settings, as suggested", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "by Patrini et al. (2017); Zhang & Sabuncu (2018). In order to simulate heteroskedasticity, we only", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 368, + 432 + ], + "score": 1.0, + "content": "corrupt semantically-similar classes. For CIFAR-10, we exchange", + "type": "text" + }, + { + "bbox": [ + 369, + 419, + 388, + 429 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "of the labels between classes", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "‘cat’ and ‘dog’, and between ‘truck’ and ‘automobile’. CIFAR-100 has 100 classes grouped into", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 426, + 453 + ], + "score": 1.0, + "content": "20 super classes. For each class of the 5 classes under the super class ‘vehicles", + "type": "text" + }, + { + "bbox": [ + 426, + 441, + 436, + 451 + ], + "score": 0.26, + "content": "_ { 1 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 441, + 492, + 453 + ], + "score": 1.0, + "content": "and ‘vehicles", + "type": "text" + }, + { + "bbox": [ + 493, + 441, + 502, + 451 + ], + "score": 0.57, + "content": "_ { 2 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 441, + 506, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 212, + 464 + ], + "score": 1.0, + "content": "we corrupt the labels with", + "type": "text" + }, + { + "bbox": [ + 212, + 452, + 232, + 462 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "probability uniformly randomly to the rest of four classes under the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 461, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 461, + 390, + 476 + ], + "score": 1.0, + "content": "same super class. As a result, the 10 classes under super class ‘vehicle", + "type": "text" + }, + { + "bbox": [ + 390, + 463, + 400, + 473 + ], + "score": 0.39, + "content": "_ { 1 } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 461, + 452, + 476 + ], + "score": 1.0, + "content": "and ‘vehicle", + "type": "text" + }, + { + "bbox": [ + 452, + 463, + 462, + 473 + ], + "score": 0.53, + "content": "_ { 2 } \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 461, + 505, + 476 + ], + "score": 1.0, + "content": "have high", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "label noise level and the corruption are only within the same super class. Heteroskedasticity of the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "labels and imbalance of the inputs commonly coexist in the real world settings. HAR can take both of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "them into account. To understand the challenge imposed by the entanglements of heteroskedasticity", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "and imbalance, and compare HAR with the aforementioned baselines, we inject data imbalance", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "concurrently with the heteroskedastic noise. We remove samples from the corrupted classes to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "simulate the most difficult scenario — the rare and noisy groups overfit significantly. (A more benign", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "interaction between the noises and imbalance is that the rare classes have lower noise level, we defer", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "it to Appendix C.3.) We use the imbalance ratio to denote the frequency ratio between the frequent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "(and clean) classes to the rare (and corrupted) classes. We consider imbalance ratio to be 10 and 100.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 386, + 506, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 505, + 591 + ], + "score": 1.0, + "content": "Result. Table 1 summarizes the results. Since examples from rare classes tend to have larger training", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 504, + 601 + ], + "score": 1.0, + "content": "and validation loss regardless of whether the labels are correct or not, noise-cleaning based methods", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "might drop excessive examples with correct labels. We examined the noise ratio of dropped samples", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "for INCV under the setting of imbalance ratio equals 10. Among all dropped examples, there is", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 127, + 634 + ], + "score": 1.0, + "content": "only", + "type": "text" + }, + { + "bbox": [ + 128, + 622, + 155, + 632 + ], + "score": 0.86, + "content": "1 9 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 622, + 477, + 634 + ], + "score": 1.0, + "content": "of true noise examples. In addition, the rare class examples selected still have", + "type": "text" + }, + { + "bbox": [ + 477, + 622, + 505, + 632 + ], + "score": 0.86, + "content": "2 9 . 8 \\%", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "of label noise. This explains that the significant decrease of accuracies of Co-teaching and INCV", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "on corrupted and rare classes. Reweighting-based methods tend to suffer from the loss of accuracy", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "in other more frequent classes, which is aligned with the findings in Cao et al. (2019). While the", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "aforementioned baselines struggle to deal with heteroskedasticity and imbalance together, HAR is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "able to put them under the same regularization framework and achieve significant improvements.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Notably, HAR also shows improvement over uniform regularization with optimally tuned strength.", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "This clearly demonstrates the importance of introducing adaptive regularization among all examples", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "for a better trade-off. A more detailed ablation study on the trade-off between training accuracy and", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 299, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 299, + 732 + ], + "score": 1.0, + "content": "validation accuracy can be found in Section 3.3.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 47.5, + "bbox_fs": [ + 104, + 576, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 136, + 123, + 475, + 261 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 92 + ], + "score": 1.0, + "content": "Table 1: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "imbalanced CIFAR-10. HAR significantly improves noisy and rare classes, while keeping the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 285, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 285, + 114 + ], + "score": 1.0, + "content": "accuracy on other classes almost unaffected.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 136, + 123, + 475, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 123, + 475, + 261 + ], + "spans": [ + { + "bbox": [ + 136, + 123, + 475, + 261 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy&Rare Cls.Clean Cls.Noisy&Rare Cls.Clean Cls.
ERM52.9 ±1.294.4 ± 0.118.9 ± 1.094.2 ± 0.1
Co-teaching30.2 ± 2.388.9± 0.315.4± 2.886.4± 0.7
INCV48.9 ± 1.794.0± 0.225.8 ± 1.893.8 ± 0.2
MentorNet54.1 ± 1.090.3 ± 0.528.3 ± 1.590.2 ±0.4
L2RW44.3 ± 2.090.1± 0.531.2 ± 1.989.7±0.7
MW-Net55.4 ± 1.191.7 ± 0.535.6 ± 1.692.3 ± 0.5
GCE48.2±0.691.6 ± 0.314.1 ± 2.091.7 ± 0.4
DMI44.7 ± 2.390.7 ±0.814.0 ± 2.191.8 ± 0.6
Unif-reg (optimal)53.9 ± 0.992.1± 0.236.7 ± 1.092.4± 0.3
Ours (HAR)63.5 ± 0.894.3 ± 0.242.4±0.794.0±0.2
", + "type": "table", + "image_path": "0925ad5ac39325ab86f25dafa4c34eda39aa731e7e0496f7aa29d570620eacad.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 136, + 123, + 475, + 169.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 136, + 169.0, + 475, + 215.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 136, + 215.0, + 475, + 261.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 281, + 257, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 258, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 258, + 295 + ], + "score": 1.0, + "content": "3.2 ABLATION STUDY ON CIFAR", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 455, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 456, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 456, + 315 + ], + "score": 1.0, + "content": "We disentangle the problem setting to show the effectiveness of our unified framework.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "score": 1.0, + "content": "Simulating heteroskedastic noise on CIFAR. We study the uncertainty part of HAR by testing under", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 330, + 498, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 498, + 343 + ], + "score": 1.0, + "content": "the setting with only heteroskedastic noise. The type of noise injection is the same as Section 3.1.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "We report the top-1 validation accuracy of various methods in Table 2. Aligned with our analysis in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "Section 4, we observe that both noise-cleaning and reweighting based methods don’t get a comparable", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 359, + 382 + ], + "score": 1.0, + "content": "accuracy on noisy classes with applying strong regularization", + "type": "text" + }, + { + "bbox": [ + 359, + 370, + 393, + 381 + ], + "score": 0.84, + "content": "\\lambda = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 370, + 505, + 382 + ], + "score": 1.0, + "content": ") under this heteroskedastic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "score": 1.0, + "content": "setting. We observe the behavior that too strong regularization impede the model from fitting", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "informative samples, thus it could lead to a decrease on clean classes’ accuracy. On the contrary, too", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "weak regularization leads to overfitting the noisy examples thus the accuracy on noisy classes do not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 181, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 181, + 425 + ], + "score": 1.0, + "content": "reach the optimal.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 429, + 503, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "Interestingly, we find that even the well-studied CIFAR-100 dataset has intrinsic heteroskedasticity", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "and HAR can improve over uniform regularization to some extent. Please refer to Appendix C.2 for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 452, + 402, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 402, + 464 + ], + "score": 1.0, + "content": "the results on CIFAR-100 and Appendix C.1 for results on IMDB-review.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "table", + "bbox": [ + 125, + 506, + 485, + 653 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 474, + 504, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Table 2: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 486, + 343, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 343, + 497 + ], + "score": 1.0, + "content": "and CIFAR-100 for the noisy classes and the clean classes.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "table_body", + "bbox": [ + 125, + 506, + 485, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 125, + 506, + 485, + 653 + ], + "spans": [ + { + "bbox": [ + 125, + 506, + 485, + 653 + ], + "score": 0.985, + "html": "
Dataset MethodCIFAR-10CIFAR-100
Avg. Noisy Cls.Avg. Clean Cls.Avg. Noisy Cls.Avg. Clean Cls.
ERM68.6±0.293.6±0.265.3 ± 0.367.8 ± 0.2
Co-teaching64.7 ± 0.489.1± 0.359.8 ± 0.465.3± 0.3
INCV76.7 ± 0.693.0±0.266.2±0.368.6 ±0.2
MentorNet71.1 ± 0.493.7± 0.265.9 ± 0.367.5 ± 0.3
L2RW70.1± 0.392.5 ± 0.365.1± 0.567.0± 0.3
MW-Net75.0± 0.394.4± 0.265.7 ± 0.369.1± 0.2
GCE62.6 ±1.190.2±0.261.2 ±0.666.9 ±0.2
DMI73.2 ± 0.790.8 ± 0.264.8 ± 0.567.1 ± 0.2
Unif-reg (入= 0.1)77.5 ± 0.692.3± 0.269.3 ± 0.566.6 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1±0.268.5 ± 0.368.6 ±0.2
Ours (HAR)80.7 ± 0.394.5 ± 0.274.2 ± 0.369.3±0.2
", + "type": "table", + "image_path": "74ceeaf106f364eaae7ce788d873447dcbe93d01bc6ee4833908bc8686f25d51.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 125, + 506, + 485, + 555.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 125, + 555.0, + 485, + 604.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 125, + 604.0, + 485, + 653.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 21.75 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Simulating data imbalance on CIFAR. We study the density part of HAR by testing under the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "setting with only data imbalance. We follow the same setting as Cao et al. (2019) to create imbalanced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 687, + 507, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 507, + 700 + ], + "score": 1.0, + "content": "CIFAR. Long-tailed imbalance follows an exponential decay in sample sizes across different classes.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "For step imbalance setting, all rare classes have the same sample size, as do all frequent classes.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach achieves better results than LDAM-DRW and is comparable to recent state-of-the-art", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 719, + 263, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 263, + 734 + ], + "score": 1.0, + "content": "methods under the imbalanced setting.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 136, + 123, + 475, + 261 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 92 + ], + "score": 1.0, + "content": "Table 1: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 505, + 103 + ], + "score": 1.0, + "content": "imbalanced CIFAR-10. HAR significantly improves noisy and rare classes, while keeping the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 102, + 285, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 285, + 114 + ], + "score": 1.0, + "content": "accuracy on other classes almost unaffected.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 136, + 123, + 475, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 123, + 475, + 261 + ], + "spans": [ + { + "bbox": [ + 136, + 123, + 475, + 261 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy&Rare Cls.Clean Cls.Noisy&Rare Cls.Clean Cls.
ERM52.9 ±1.294.4 ± 0.118.9 ± 1.094.2 ± 0.1
Co-teaching30.2 ± 2.388.9± 0.315.4± 2.886.4± 0.7
INCV48.9 ± 1.794.0± 0.225.8 ± 1.893.8 ± 0.2
MentorNet54.1 ± 1.090.3 ± 0.528.3 ± 1.590.2 ±0.4
L2RW44.3 ± 2.090.1± 0.531.2 ± 1.989.7±0.7
MW-Net55.4 ± 1.191.7 ± 0.535.6 ± 1.692.3 ± 0.5
GCE48.2±0.691.6 ± 0.314.1 ± 2.091.7 ± 0.4
DMI44.7 ± 2.390.7 ±0.814.0 ± 2.191.8 ± 0.6
Unif-reg (optimal)53.9 ± 0.992.1± 0.236.7 ± 1.092.4± 0.3
Ours (HAR)63.5 ± 0.894.3 ± 0.242.4±0.794.0±0.2
", + "type": "table", + "image_path": "0925ad5ac39325ab86f25dafa4c34eda39aa731e7e0496f7aa29d570620eacad.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 136, + 123, + 475, + 169.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 136, + 169.0, + 475, + 215.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 136, + 215.0, + 475, + 261.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 281, + 257, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 258, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 258, + 295 + ], + "score": 1.0, + "content": "3.2 ABLATION STUDY ON CIFAR", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 455, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 456, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 456, + 315 + ], + "score": 1.0, + "content": "We disentangle the problem setting to show the effectiveness of our unified framework.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 301, + 456, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 319, + 504, + 342 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "score": 1.0, + "content": "Simulating heteroskedastic noise on CIFAR. We study the uncertainty part of HAR by testing under", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 330, + 498, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 498, + 343 + ], + "score": 1.0, + "content": "the setting with only heteroskedastic noise. The type of noise injection is the same as Section 3.1.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 319, + 504, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "We report the top-1 validation accuracy of various methods in Table 2. Aligned with our analysis in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "Section 4, we observe that both noise-cleaning and reweighting based methods don’t get a comparable", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 359, + 382 + ], + "score": 1.0, + "content": "accuracy on noisy classes with applying strong regularization", + "type": "text" + }, + { + "bbox": [ + 359, + 370, + 393, + 381 + ], + "score": 0.84, + "content": "\\lambda = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 370, + 505, + 382 + ], + "score": 1.0, + "content": ") under this heteroskedastic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 394 + ], + "score": 1.0, + "content": "setting. We observe the behavior that too strong regularization impede the model from fitting", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "informative samples, thus it could lead to a decrease on clean classes’ accuracy. On the contrary, too", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "weak regularization leads to overfitting the noisy examples thus the accuracy on noisy classes do not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 181, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 181, + 425 + ], + "score": 1.0, + "content": "reach the optimal.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 348, + 506, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 429, + 503, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "Interestingly, we find that even the well-studied CIFAR-100 dataset has intrinsic heteroskedasticity", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "and HAR can improve over uniform regularization to some extent. Please refer to Appendix C.2 for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 452, + 402, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 402, + 464 + ], + "score": 1.0, + "content": "the results on CIFAR-100 and Appendix C.1 for results on IMDB-review.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 429, + 505, + 464 + ] + }, + { + "type": "table", + "bbox": [ + 125, + 506, + 485, + 653 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 474, + 504, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Table 2: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 486, + 343, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 343, + 497 + ], + "score": 1.0, + "content": "and CIFAR-100 for the noisy classes and the clean classes.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "table_body", + "bbox": [ + 125, + 506, + 485, + 653 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 125, + 506, + 485, + 653 + ], + "spans": [ + { + "bbox": [ + 125, + 506, + 485, + 653 + ], + "score": 0.985, + "html": "
Dataset MethodCIFAR-10CIFAR-100
Avg. Noisy Cls.Avg. Clean Cls.Avg. Noisy Cls.Avg. Clean Cls.
ERM68.6±0.293.6±0.265.3 ± 0.367.8 ± 0.2
Co-teaching64.7 ± 0.489.1± 0.359.8 ± 0.465.3± 0.3
INCV76.7 ± 0.693.0±0.266.2±0.368.6 ±0.2
MentorNet71.1 ± 0.493.7± 0.265.9 ± 0.367.5 ± 0.3
L2RW70.1± 0.392.5 ± 0.365.1± 0.567.0± 0.3
MW-Net75.0± 0.394.4± 0.265.7 ± 0.369.1± 0.2
GCE62.6 ±1.190.2±0.261.2 ±0.666.9 ±0.2
DMI73.2 ± 0.790.8 ± 0.264.8 ± 0.567.1 ± 0.2
Unif-reg (入= 0.1)77.5 ± 0.692.3± 0.269.3 ± 0.566.6 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1±0.268.5 ± 0.368.6 ±0.2
Ours (HAR)80.7 ± 0.394.5 ± 0.274.2 ± 0.369.3±0.2
", + "type": "table", + "image_path": "74ceeaf106f364eaae7ce788d873447dcbe93d01bc6ee4833908bc8686f25d51.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 125, + 506, + 485, + 555.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 125, + 555.0, + 485, + 604.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 125, + 604.0, + 485, + 653.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 21.75 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Simulating data imbalance on CIFAR. We study the density part of HAR by testing under the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "setting with only data imbalance. We follow the same setting as Cao et al. (2019) to create imbalanced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 687, + 507, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 507, + 700 + ], + "score": 1.0, + "content": "CIFAR. Long-tailed imbalance follows an exponential decay in sample sizes across different classes.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 712 + ], + "score": 1.0, + "content": "For step imbalance setting, all rare classes have the same sample size, as do all frequent classes.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach achieves better results than LDAM-DRW and is comparable to recent state-of-the-art", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 719, + 263, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 263, + 734 + ], + "score": 1.0, + "content": "methods under the imbalanced setting.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 665, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 125, + 101, + 486, + 214 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 80, + 484, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 79, + 485, + 92 + ], + "spans": [ + { + "bbox": [ + 125, + 79, + 485, + 92 + ], + "score": 1.0, + "content": "Table 3: Top-1 validation errors of ResNet-32 on imbalanced CIFAR-10 and CIFAR-100.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 125, + 101, + 486, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 101, + 486, + 214 + ], + "spans": [ + { + "bbox": [ + 125, + 101, + 486, + 214 + ], + "score": 0.983, + "html": "
DatasetImbalanced CIFAR-10Imbalanced CIFAR-100
Imbalance Typelong-tailedsteplong-tailedstep
Imbalance Ratio10010100101001010010
ERM29.6413.6136.7017.5061.6844.3061.4545.37
Focal29.6213.3436.0916.3661.5944.2261.4346.54
CB Focal25.4312.9039.7316.5463.9842.0180.2449.98
LDAM-DRW22.9711.8423.0812.1957.9641.2954.6440.54
BBN (Zhou et al., 2020)20.1811.6821.6411.9957.4440.8857.4440.36
HAR-DRW20.4610.6220.2711.5855.3538.9851.7337.54
", + "type": "table", + "image_path": "f742ad4dae7372693001d94c3f17026d72ec63c55bd3190cf9813b46aba88127.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 125, + 101, + 486, + 138.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 125, + 138.66666666666666, + 486, + 176.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 125, + 176.33333333333331, + 486, + 213.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 198, + 256, + 413, + 349 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 225, + 506, + 248 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 223, + 507, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 507, + 237 + ], + "score": 1.0, + "content": "Table 4: Validation accuracy of ResNet-50 when tuning the regularization strength on mini WebVision.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 235, + 392, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 392, + 249 + ], + "score": 1.0, + "content": "HAR stands out of the trade-off constraint of fitting and generalization.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 198, + 256, + 413, + 349 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 198, + 256, + 413, + 349 + ], + "spans": [ + { + "bbox": [ + 198, + 256, + 413, + 349 + ], + "score": 0.98, + "html": "
Train AccVal Acc
Reg StrengthTop1Top5Top1Top 5
069.0188.6459.4080.84
Unif-reg (入= 0.01)68.9688.5464.3286.11
Unif-reg (λ= 0.02)67.0287.5164.4085.92
Unif-reg (入= 0.05)65.1186.3365.8086.84
Unif-reg (λ = 0.1)63.3584.9865.0486.56
Adaptive (HAR)69.1288.4169.2088.96
", + "type": "table", + "image_path": "ae1989ab59fa908f6a93e08e6192c658ef0ac8e459c9608d4c224e971f100d7a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 198, + 256, + 413, + 269.2857142857143 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 198, + 269.2857142857143, + 413, + 282.57142857142856 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 198, + 282.57142857142856, + 413, + 295.85714285714283 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 198, + 295.85714285714283, + 413, + 309.1428571428571 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 198, + 309.1428571428571, + 413, + 322.4285714285714 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 198, + 322.4285714285714, + 413, + 335.71428571428567 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 198, + 335.71428571428567, + 413, + 348.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 417, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 420, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 420, + 383 + ], + "score": 1.0, + "content": "3.3 EVALUATION ON WEBVISION WITH REAL-WORLD HETEROGENEITY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "WebVision (Li et al., 2017) contains 2.4 million images crawled from Google and Flickr using 1,000", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "labels shared with the ImageNet dataset. Its training set is both heteroskedastic and imbalanced", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "(detailed statistics can be found in (Li et al., 2017)), and it is considered as a popular benchmark", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "for noise robust learning. As the full dataset is very large, we follow (Jiang et al., 2018) to use a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "mini version, which contains the first 50 classes of the Google subset of the data. Following the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "score": 1.0, + "content": "standard protocol (Jiang et al., 2018), we test the trained model on the WebVision validation set and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "the ImageNet validation set. We use ResNet-50 for ablation study and InceptionResNet-v2 for a fair", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "comparison with the baselines. We report results comparing against other state-of-the-art approaches", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 478, + 357, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 357, + 492 + ], + "score": 1.0, + "content": "in Table 5. Strikingly, HAR achieves significant improvement.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Ablation study. We demonstrate the trade-off between training accuracy and validation accuracy on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "mini WebVision with various uniform regularization strength and HAR in Table 4. It’s evident that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "when we gradually increase the overall uniform regularization strength, the training accuracy contin-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "ues to decrease, and the validation accuracy reaches its peak at 5e-2. While a strong regularization", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 539, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 507, + 554 + ], + "score": 1.0, + "content": "could improve generalization, it reduces deep networks’ capacity to fit the training data. However,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "with our proposed HAR, we only enforce strong regularization on a subset so that we improve the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 562, + 479, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 479, + 574 + ], + "score": 1.0, + "content": "generalization on noisier groups while maintaining the overall training accuracy not affected.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 590, + 211, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 213, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 213, + 604 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 379, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 380, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 380, + 628 + ], + "score": 1.0, + "content": "Our work is closely related to the following methods and directions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Noise-cleaning. The key idea of noise-cleaning is to identify and remove (or re-label) examples", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "with wrong annotations. The general procedure for identifying mislabeled instances has a long", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "history (Brodley & Friedl, 1999; Wilson & Martinez, 1997; Zhao & Nishida, 1995). Some recent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "works tailored this idea for deep neural networks. Veit et al. (2017) trains a label cleaning network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "on a small set of data with clean labels, and uses this model to identify noises in large datasets. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "circumvent the requirement of a clean subset, Malach & Shalev-Shwartz (2017) train two networks", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "simultaneously and perform update steps only in case of disagreement. Similarly, in co-teaching (Han", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "et al., 2018), each network selects a certain number of small-loss samples and feeds them to its peer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "network. Chen et al. (2019) further extends the co-training strategy and comes up with an iterative", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 125, + 101, + 486, + 214 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 80, + 484, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 79, + 485, + 92 + ], + "spans": [ + { + "bbox": [ + 125, + 79, + 485, + 92 + ], + "score": 1.0, + "content": "Table 3: Top-1 validation errors of ResNet-32 on imbalanced CIFAR-10 and CIFAR-100.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 125, + 101, + 486, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 125, + 101, + 486, + 214 + ], + "spans": [ + { + "bbox": [ + 125, + 101, + 486, + 214 + ], + "score": 0.983, + "html": "
DatasetImbalanced CIFAR-10Imbalanced CIFAR-100
Imbalance Typelong-tailedsteplong-tailedstep
Imbalance Ratio10010100101001010010
ERM29.6413.6136.7017.5061.6844.3061.4545.37
Focal29.6213.3436.0916.3661.5944.2261.4346.54
CB Focal25.4312.9039.7316.5463.9842.0180.2449.98
LDAM-DRW22.9711.8423.0812.1957.9641.2954.6440.54
BBN (Zhou et al., 2020)20.1811.6821.6411.9957.4440.8857.4440.36
HAR-DRW20.4610.6220.2711.5855.3538.9851.7337.54
", + "type": "table", + "image_path": "f742ad4dae7372693001d94c3f17026d72ec63c55bd3190cf9813b46aba88127.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 125, + 101, + 486, + 138.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 125, + 138.66666666666666, + 486, + 176.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 125, + 176.33333333333331, + 486, + 213.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 198, + 256, + 413, + 349 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 225, + 506, + 248 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 223, + 507, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 507, + 237 + ], + "score": 1.0, + "content": "Table 4: Validation accuracy of ResNet-50 when tuning the regularization strength on mini WebVision.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 235, + 392, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 392, + 249 + ], + "score": 1.0, + "content": "HAR stands out of the trade-off constraint of fitting and generalization.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 198, + 256, + 413, + 349 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 198, + 256, + 413, + 349 + ], + "spans": [ + { + "bbox": [ + 198, + 256, + 413, + 349 + ], + "score": 0.98, + "html": "
Train AccVal Acc
Reg StrengthTop1Top5Top1Top 5
069.0188.6459.4080.84
Unif-reg (入= 0.01)68.9688.5464.3286.11
Unif-reg (λ= 0.02)67.0287.5164.4085.92
Unif-reg (入= 0.05)65.1186.3365.8086.84
Unif-reg (λ = 0.1)63.3584.9865.0486.56
Adaptive (HAR)69.1288.4169.2088.96
", + "type": "table", + "image_path": "ae1989ab59fa908f6a93e08e6192c658ef0ac8e459c9608d4c224e971f100d7a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 198, + 256, + 413, + 269.2857142857143 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 198, + 269.2857142857143, + 413, + 282.57142857142856 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 198, + 282.57142857142856, + 413, + 295.85714285714283 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 198, + 295.85714285714283, + 413, + 309.1428571428571 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 198, + 309.1428571428571, + 413, + 322.4285714285714 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 198, + 322.4285714285714, + 413, + 335.71428571428567 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 198, + 335.71428571428567, + 413, + 348.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 417, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 420, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 420, + 383 + ], + "score": 1.0, + "content": "3.3 EVALUATION ON WEBVISION WITH REAL-WORLD HETEROGENEITY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "WebVision (Li et al., 2017) contains 2.4 million images crawled from Google and Flickr using 1,000", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 505, + 414 + ], + "score": 1.0, + "content": "labels shared with the ImageNet dataset. Its training set is both heteroskedastic and imbalanced", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 425 + ], + "score": 1.0, + "content": "(detailed statistics can be found in (Li et al., 2017)), and it is considered as a popular benchmark", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "for noise robust learning. As the full dataset is very large, we follow (Jiang et al., 2018) to use a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "mini version, which contains the first 50 classes of the Google subset of the data. Following the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 504, + 457 + ], + "score": 1.0, + "content": "standard protocol (Jiang et al., 2018), we test the trained model on the WebVision validation set and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "the ImageNet validation set. We use ResNet-50 for ablation study and InceptionResNet-v2 for a fair", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "comparison with the baselines. We report results comparing against other state-of-the-art approaches", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 478, + 357, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 357, + 492 + ], + "score": 1.0, + "content": "in Table 5. Strikingly, HAR achieves significant improvement.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 390, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "Ablation study. We demonstrate the trade-off between training accuracy and validation accuracy on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "mini WebVision with various uniform regularization strength and HAR in Table 4. It’s evident that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "when we gradually increase the overall uniform regularization strength, the training accuracy contin-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "ues to decrease, and the validation accuracy reaches its peak at 5e-2. While a strong regularization", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 539, + 507, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 507, + 554 + ], + "score": 1.0, + "content": "could improve generalization, it reduces deep networks’ capacity to fit the training data. However,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "with our proposed HAR, we only enforce strong regularization on a subset so that we improve the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 562, + 479, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 479, + 574 + ], + "score": 1.0, + "content": "generalization on noisier groups while maintaining the overall training accuracy not affected.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 496, + 507, + 574 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 590, + 211, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 213, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 213, + 604 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 379, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 380, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 380, + 628 + ], + "score": 1.0, + "content": "Our work is closely related to the following methods and directions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 615, + 380, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Noise-cleaning. The key idea of noise-cleaning is to identify and remove (or re-label) examples", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 642, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 642, + 506, + 657 + ], + "score": 1.0, + "content": "with wrong annotations. The general procedure for identifying mislabeled instances has a long", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "history (Brodley & Friedl, 1999; Wilson & Martinez, 1997; Zhao & Nishida, 1995). Some recent", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "works tailored this idea for deep neural networks. Veit et al. (2017) trains a label cleaning network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "on a small set of data with clean labels, and uses this model to identify noises in large datasets. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "circumvent the requirement of a clean subset, Malach & Shalev-Shwartz (2017) train two networks", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 710 + ], + "score": 1.0, + "content": "simultaneously and perform update steps only in case of disagreement. Similarly, in co-teaching (Han", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "et al., 2018), each network selects a certain number of small-loss samples and feeds them to its peer", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "network. Chen et al. (2019) further extends the co-training strategy and comes up with an iterative", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "version that performs even better empirically. Recently Song et al. (2020) discovers that it is not", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "necessary to maintain two networks. Removing examples whose training loss exceeds a certain", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 250, + 384, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 384, + 263 + ], + "score": 1.0, + "content": "threshold before learning rate decay can also get robust performance.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 633, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 144, + 112, + 467, + 205 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "score": 1.0, + "content": "Table 5: Validation accuracy of InceptionResNet-v2 on WebVision and ImageNet validation sets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 428, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 428, + 103 + ], + "score": 1.0, + "content": "HAR demonstrates significant improvements over the previous state-of-the-arts.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 144, + 112, + 467, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 112, + 467, + 205 + ], + "spans": [ + { + "bbox": [ + 144, + 112, + 467, + 205 + ], + "score": 0.982, + "html": "
Train Test Methodmini WebVisionfull WebVision
WebVisionImageNetWebVisionImageNet
Top 1Top5Top 1Top 5Top 1Top 5Top 1Top 5
ERM62.580.858.581.869.787.062.983.6
Co-teaching63.685.261.584.71-11
INCV65.285.361.685.0--1-
MentorNet63.081.457.879.970.888.062.583.0
Ours (HAR)75.590.770.390.075.090.667.186.7
", + "type": "table", + "image_path": "98445b556671984cf4d9574355d3cd581207786a7f407bf0421a0b7507660b20.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 144, + 112, + 467, + 143.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 144, + 143.0, + 467, + 174.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 174.0, + 467, + 205.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 108, + 228, + 504, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "version that performs even better empirically. Recently Song et al. (2020) discovers that it is not", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "necessary to maintain two networks. Removing examples whose training loss exceeds a certain", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 250, + 384, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 384, + 263 + ], + "score": 1.0, + "content": "threshold before learning rate decay can also get robust performance.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "Reweighting. Reweighting training data has shown its effectiveness on noisy data (Liu & Tao, 2015).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Its challenge lies in the difficulty of weights estimation. Ren et al. (2018) proposes a meta-learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "algorithm to assign weights to training examples based on its gradient direction with the one on a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "clean validation set. Recently, Shu et al. (2019) proposes to learn an explicit loss-weight function", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "to mitigate the optimizing issue of (Ren et al., 2018). Another line of work resorts to curriculum", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "learning by either designing an easy-to-hard strategy of training (Guo et al., 2018) or introducing an", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 333, + 315, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 315, + 345 + ], + "score": 1.0, + "content": "extra network (Jiang et al., 2018) to assign weights.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "Noise-cleaning and reweighting methods usually rely on the empirical loss to determine if a sample", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "is noisy. However, when the dataset is heteroskedastic, each example’s training/validation loss no", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "longer correlates well with its noise level. In such cases, we argue that changing the strength of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "regularization is a more conservative adaption and suffers less from uncertain estimation, compared", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 394, + 465, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 465, + 406 + ], + "score": 1.0, + "content": "to changing the weights of losses (Please refer to Section C.4 for empirical justifications).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "Robust loss function. Another line of works has attempted to design robust loss functions (Ghosh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "et al., 2017; Xu et al., 2019; Zhang & Sabuncu, 2018; Patrini et al., 2017; Cheng et al., 2017; Menon", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "et al., 2016). They usually rely on prior assumption about latent transition matrix that might not hold", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 365, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 365, + 456 + ], + "score": 1.0, + "content": "in practice. On the contrary, we focus on more realistic settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Regularization. Regularization based techniques have also been explored to combat label noise. Li", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "et al. (2019) proves that SGD with early stopping is robust to label noise. Hu et al. (2020) provides", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "theoretical analysis of two additional regularization methods. While these methods consider a uniform", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "regularization on all training examples, our work emphasizes on adjusting the weights of regularizers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 351, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 351, + 518 + ], + "score": 1.0, + "content": "in search of a better generalization than uniform assignment.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 535, + 195, + 548 + ], + "lines": [ + { + "bbox": [ + 104, + 534, + 197, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 197, + 551 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "We propose a unified framework (HAR) for training on heteroskedastic and imbalanced datasets.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "Our method achieves significant improvements over the previous state-of-the-arts on a variety of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "benchmark vision and language tasks. We provide theoretical results as well as empirical justifications", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "by showing that ambiguous, mislabeled, and rare examples all benefit from stronger regularization.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "We further provide the formula for optimal weighting of regularization. Heteroskedasticity of datasets", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "is a fascinating direction worth exploring, and it is an important step towards a better understanding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 629, + 248, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 248, + 640 + ], + "score": 1.0, + "content": "of real-world scenarios in the wild.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 661, + 225, + 673 + ], + "lines": [ + { + "bbox": [ + 107, + 659, + 226, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 659, + 226, + 676 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Toyota Research Institute (\"TRI\") provided funds and computational resources to assist the authors", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "with their research but this article solely reflects the opinions and conclusions of its authors and not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "TRI or any other Toyota entity. YC is supported by Stanford Graduate Fellowship. TM acknowledges", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 507, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 507, + 732 + ], + "score": 1.0, + "content": "support of Google Faculty Award. The work is also partially supported by SDSI and SAIL at Stanford.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 144, + 112, + 467, + 205 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 103 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 92 + ], + "score": 1.0, + "content": "Table 5: Validation accuracy of InceptionResNet-v2 on WebVision and ImageNet validation sets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 428, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 428, + 103 + ], + "score": 1.0, + "content": "HAR demonstrates significant improvements over the previous state-of-the-arts.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 144, + 112, + 467, + 205 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 144, + 112, + 467, + 205 + ], + "spans": [ + { + "bbox": [ + 144, + 112, + 467, + 205 + ], + "score": 0.982, + "html": "
Train Test Methodmini WebVisionfull WebVision
WebVisionImageNetWebVisionImageNet
Top 1Top5Top 1Top 5Top 1Top 5Top 1Top 5
ERM62.580.858.581.869.787.062.983.6
Co-teaching63.685.261.584.71-11
INCV65.285.361.685.0--1-
MentorNet63.081.457.879.970.888.062.583.0
Ours (HAR)75.590.770.390.075.090.667.186.7
", + "type": "table", + "image_path": "98445b556671984cf4d9574355d3cd581207786a7f407bf0421a0b7507660b20.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 144, + 112, + 467, + 143.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 144, + 143.0, + 467, + 174.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 144, + 174.0, + 467, + 205.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 108, + 228, + 504, + 262 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 105, + 228, + 506, + 263 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "Reweighting. Reweighting training data has shown its effectiveness on noisy data (Liu & Tao, 2015).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Its challenge lies in the difficulty of weights estimation. Ren et al. (2018) proposes a meta-learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "algorithm to assign weights to training examples based on its gradient direction with the one on a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 312 + ], + "score": 1.0, + "content": "clean validation set. Recently, Shu et al. (2019) proposes to learn an explicit loss-weight function", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "to mitigate the optimizing issue of (Ren et al., 2018). Another line of work resorts to curriculum", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 505, + 334 + ], + "score": 1.0, + "content": "learning by either designing an easy-to-hard strategy of training (Guo et al., 2018) or introducing an", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 333, + 315, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 315, + 345 + ], + "score": 1.0, + "content": "extra network (Jiang et al., 2018) to assign weights.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 267, + 506, + 345 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "Noise-cleaning and reweighting methods usually rely on the empirical loss to determine if a sample", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "is noisy. However, when the dataset is heteroskedastic, each example’s training/validation loss no", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 371, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 371, + 506, + 385 + ], + "score": 1.0, + "content": "longer correlates well with its noise level. In such cases, we argue that changing the strength of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "regularization is a more conservative adaption and suffers less from uncertain estimation, compared", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 394, + 465, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 465, + 406 + ], + "score": 1.0, + "content": "to changing the weights of losses (Please refer to Section C.4 for empirical justifications).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 349, + 506, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "Robust loss function. Another line of works has attempted to design robust loss functions (Ghosh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "et al., 2017; Xu et al., 2019; Zhang & Sabuncu, 2018; Patrini et al., 2017; Cheng et al., 2017; Menon", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "et al., 2016). They usually rely on prior assumption about latent transition matrix that might not hold", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 443, + 365, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 365, + 456 + ], + "score": 1.0, + "content": "in practice. On the contrary, we focus on more realistic settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 410, + 506, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 461, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "Regularization. Regularization based techniques have also been explored to combat label noise. Li", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "et al. (2019) proves that SGD with early stopping is robust to label noise. Hu et al. (2020) provides", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "theoretical analysis of two additional regularization methods. While these methods consider a uniform", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "regularization on all training examples, our work emphasizes on adjusting the weights of regularizers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 351, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 351, + 518 + ], + "score": 1.0, + "content": "in search of a better generalization than uniform assignment.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 461, + 505, + 518 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 535, + 195, + 548 + ], + "lines": [ + { + "bbox": [ + 104, + 534, + 197, + 551 + ], + "spans": [ + { + "bbox": [ + 104, + 534, + 197, + 551 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "We propose a unified framework (HAR) for training on heteroskedastic and imbalanced datasets.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "Our method achieves significant improvements over the previous state-of-the-arts on a variety of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "benchmark vision and language tasks. We provide theoretical results as well as empirical justifications", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "by showing that ambiguous, mislabeled, and rare examples all benefit from stronger regularization.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "We further provide the formula for optimal weighting of regularization. Heteroskedasticity of datasets", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "is a fascinating direction worth exploring, and it is an important step towards a better understanding", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 629, + 248, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 248, + 640 + ], + "score": 1.0, + "content": "of real-world scenarios in the wild.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 563, + 506, + 640 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 661, + 225, + 673 + ], + "lines": [ + { + "bbox": [ + 107, + 659, + 226, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 659, + 226, + 676 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Toyota Research Institute (\"TRI\") provided funds and computational resources to assist the authors", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "with their research but this article solely reflects the opinions and conclusions of its authors and not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "TRI or any other Toyota entity. YC is supported by Stanford Graduate Fellowship. TM acknowledges", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 507, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 507, + 732 + ], + "score": 1.0, + "content": "support of Google Faculty Award. The work is also partially supported by SDSI and SAIL at Stanford.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 687, + 507, + 732 + ] + } + ] + }, + { + "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, + 506, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 506, + 112 + ], + "score": 1.0, + "content": "Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "score": 1.0, + "content": "Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A closer look at", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "memorization in deep networks. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 331, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 331, + 146 + ], + "score": 1.0, + "content": "Learning-Volume 70, pp. 233–242. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 151, + 504, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "Carla E Brodley and Mark A Friedl. Identifying mislabeled training data. Journal of artificial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 282, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 282, + 174 + ], + "score": 1.0, + "content": "intelligence research, 11:131–167, 1999.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 108, + 180, + 503, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 193 + ], + "score": 1.0, + "content": "Kaidi Cao, Colin Wei, Adrien Gaidon, Nikos Arechiga, and Tengyu Ma. Learning imbalanced", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 190, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 190, + 505, + 205 + ], + "score": 1.0, + "content": "datasets with label-distribution-aware margin loss. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 242, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 242, + 215 + ], + "score": 1.0, + "content": "Systems, pp. 1565–1576, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 105, + 220, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 235 + ], + "score": 1.0, + "content": "Pengfei Chen, Ben Ben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 507, + 246 + ], + "score": 1.0, + "content": "deep neural networks trained with noisy labels. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 207, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 207, + 254 + ], + "score": 1.0, + "content": "pp. 1062–1070, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 273 + ], + "score": 1.0, + "content": "Jiacheng Cheng, Tongliang Liu, Kotagiri Ramamohanarao, and Dacheng Tao. Learning with bounded", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 272, + 448, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 272, + 448, + 285 + ], + "score": 1.0, + "content": "instance-and label-dependent label noise. arXiv preprint arXiv:1709.03768, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 116, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "effective number of samples. In Proceedings of the IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 313, + 290, + 325 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 290, + 325 + ], + "score": 1.0, + "content": "Pattern Recognition, pp. 9268–9277, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "Benoît Frénay and Michel Verleysen. Classification in the presence of label noise: a survey. IEEE", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 342, + 425, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 342, + 425, + 354 + ], + "score": 1.0, + "content": "transactions on neural networks and learning systems, 25(5):845–869, 2013.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 105, + 360, + 503, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 375 + ], + "score": 1.0, + "content": "Aritra Ghosh, Himanshu Kumar, and PS Sastry. Robust loss functions under label noise for deep", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 371, + 446, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 446, + 384 + ], + "score": 1.0, + "content": "neural networks. In Thirty-First AAAI Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 109, + 389, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 107, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 107, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "Sheng Guo, Weilin Huang, Haozhi Zhang, Chenfan Zhuang, Dengke Dong, Matthew R Scott, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Dinglong Huang. Curriculumnet: Weakly supervised learning from large-scale web images. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 411, + 482, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 482, + 425 + ], + "score": 1.0, + "content": "Proceedings of the European Conference on Computer Vision (ECCV), pp. 135–150, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Guy Hacohen and Daphna Weinshall. On the power of curriculum learning in training deep networks.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 441, + 411, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 441, + 411, + 454 + ], + "score": 1.0, + "content": "In International Conference on Machine Learning, pp. 2535–2544, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 109, + 459, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor Tsang, and Masashi", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 115, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 481, + 416, + 495 + ], + "spans": [ + { + "bbox": [ + 114, + 481, + 416, + 495 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 8527–8537, 2018.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 499, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 522, + 196, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 196, + 534 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "W Hu, Z Li, and D Yu. Simple and effective regularization methods for training on noisily labeled", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 551, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 507, + 565 + ], + "score": 1.0, + "content": "data with generalization guarantee. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 143, + 575 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 143, + 575 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "score": 1.0, + "content": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 592, + 254, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 254, + 603 + ], + "score": 1.0, + "content": "preprint arXiv:1508.01991, 2015.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 105, + 609, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning data-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "driven curriculum for very deep neural networks on corrupted labels. In International Conference", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 632, + 297, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 297, + 644 + ], + "score": 1.0, + "content": "on Machine Learning, pp. 2304–2313, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 214, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 214, + 673 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 105, + 680, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 694 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "score": 1.0, + "content": "Mingchen Li, Mahdi Soltanolkotabi, and Samet Oymak. Gradient descent with early stopping is prov-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "ably robust to label noise for overparameterized neural networks. arXiv preprint arXiv:1903.11680,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "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, + 506, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 506, + 112 + ], + "score": 1.0, + "content": "Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 123 + ], + "score": 1.0, + "content": "Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A closer look at", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 116, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "memorization in deep networks. In Proceedings of the 34th International Conference on Machine", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 331, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 331, + 146 + ], + "score": 1.0, + "content": "Learning-Volume 70, pp. 233–242. JMLR. org, 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 100, + 506, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 151, + 504, + 174 + ], + "lines": [ + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 506, + 164 + ], + "score": 1.0, + "content": "Carla E Brodley and Mark A Friedl. Identifying mislabeled training data. Journal of artificial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 282, + 174 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 282, + 174 + ], + "score": 1.0, + "content": "intelligence research, 11:131–167, 1999.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 150, + 506, + 174 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 180, + 503, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 193 + ], + "score": 1.0, + "content": "Kaidi Cao, Colin Wei, Adrien Gaidon, Nikos Arechiga, and Tengyu Ma. Learning imbalanced", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 190, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 190, + 505, + 205 + ], + "score": 1.0, + "content": "datasets with label-distribution-aware margin loss. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 242, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 242, + 215 + ], + "score": 1.0, + "content": "Systems, pp. 1565–1576, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 179, + 505, + 215 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 220, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 235 + ], + "score": 1.0, + "content": "Pengfei Chen, Ben Ben Liao, Guangyong Chen, and Shengyu Zhang. Understanding and utilizing", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 231, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 231, + 507, + 246 + ], + "score": 1.0, + "content": "deep neural networks trained with noisy labels. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 207, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 207, + 254 + ], + "score": 1.0, + "content": "pp. 1062–1070, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 219, + 507, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 273 + ], + "score": 1.0, + "content": "Jiacheng Cheng, Tongliang Liu, Kotagiri Ramamohanarao, and Dacheng Tao. Learning with bounded", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 272, + 448, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 272, + 448, + 285 + ], + "score": 1.0, + "content": "instance-and label-dependent label noise. arXiv preprint arXiv:1709.03768, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 262, + 505, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Yin Cui, Menglin Jia, Tsung-Yi Lin, Yang Song, and Serge Belongie. Class-balanced loss based on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 116, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "effective number of samples. In Proceedings of the IEEE Conference on Computer Vision and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 313, + 290, + 325 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 290, + 325 + ], + "score": 1.0, + "content": "Pattern Recognition, pp. 9268–9277, 2019.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 290, + 505, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 344 + ], + "score": 1.0, + "content": "Benoît Frénay and Michel Verleysen. Classification in the presence of label noise: a survey. IEEE", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 342, + 425, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 342, + 425, + 354 + ], + "score": 1.0, + "content": "transactions on neural networks and learning systems, 25(5):845–869, 2013.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 331, + 505, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 360, + 503, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 359, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 375 + ], + "score": 1.0, + "content": "Aritra Ghosh, Himanshu Kumar, and PS Sastry. Robust loss functions under label noise for deep", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 371, + 446, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 371, + 446, + 384 + ], + "score": 1.0, + "content": "neural networks. In Thirty-First AAAI Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 359, + 505, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 389, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 107, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 107, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "Sheng Guo, Weilin Huang, Haozhi Zhang, Chenfan Zhuang, Dengke Dong, Matthew R Scott, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "Dinglong Huang. Curriculumnet: Weakly supervised learning from large-scale web images. In", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 411, + 482, + 425 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 482, + 425 + ], + "score": 1.0, + "content": "Proceedings of the European Conference on Computer Vision (ECCV), pp. 135–150, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 107, + 390, + 505, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Guy Hacohen and Daphna Weinshall. On the power of curriculum learning in training deep networks.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 441, + 411, + 454 + ], + "spans": [ + { + "bbox": [ + 115, + 441, + 411, + 454 + ], + "score": 1.0, + "content": "In International Conference on Machine Learning, pp. 2535–2544, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 430, + 506, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 459, + 504, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor Tsang, and Masashi", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 115, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. In", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 481, + 416, + 495 + ], + "spans": [ + { + "bbox": [ + 114, + 481, + 416, + 495 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 8527–8537, 2018.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 460, + 505, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 499, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 522, + 196, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 196, + 534 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 499, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "W Hu, Z Li, and D Yu. Simple and effective regularization methods for training on noisily labeled", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 551, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 507, + 565 + ], + "score": 1.0, + "content": "data with generalization guarantee. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 143, + 575 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 143, + 575 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 540, + 507, + 575 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 503, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 505, + 595 + ], + "score": 1.0, + "content": "Zhiheng Huang, Wei Xu, and Kai Yu. Bidirectional lstm-crf models for sequence tagging. arXiv", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 592, + 254, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 592, + 254, + 603 + ], + "score": 1.0, + "content": "preprint arXiv:1508.01991, 2015.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 579, + 505, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 609, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning data-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "driven curriculum for very deep neural networks on corrupted labels. In International Conference", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 632, + 297, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 632, + 297, + 644 + ], + "score": 1.0, + "content": "on Machine Learning, pp. 2304–2313, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 609, + 506, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 664 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 214, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 214, + 673 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 649, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 680, + 504, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 694 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 678, + 505, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 507, + 712 + ], + "score": 1.0, + "content": "Mingchen Li, Mahdi Soltanolkotabi, and Samet Oymak. Gradient descent with early stopping is prov-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "ably robust to label noise for overparameterized neural networks. arXiv preprint arXiv:1903.11680,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 697, + 507, + 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": "Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 453, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 453, + 106 + ], + "score": 1.0, + "content": "learning and understanding from web data. arXiv preprint arXiv:1708.02862, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Tongliang Liu and Dacheng Tao. Classification with noisy labels by importance reweighting. IEEE", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 443, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 443, + 136 + ], + "score": 1.0, + "content": "Transactions on pattern analysis and machine intelligence, 38(3):447–461, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 109, + 143, + 502, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X Yu. Large-scale", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 504, + 167 + ], + "score": 1.0, + "content": "long-tailed recognition in an open world. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 335, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 335, + 178 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 2537–2546, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 507, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 507, + 198 + ], + "score": 1.0, + "content": "Andrew L Maas, Raymond E Daly, Peter T Pham, Dan Huang, Andrew Y Ng, and Christopher Potts.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "Learning word vectors for sentiment analysis. In Proceedings of the 49th annual meeting of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "association for computational linguistics: Human language technologies-volume 1, pp. 142–150.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 316, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 316, + 230 + ], + "score": 1.0, + "content": "Association for Computational Linguistics, 2011.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Eran Malach and Shai Shalev-Shwartz. Decoupling\" when to update\" from\" how to update\". In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 248, + 410, + 261 + ], + "spans": [ + { + "bbox": [ + 114, + 248, + 410, + 261 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 960–970, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "Aditya Krishna Menon, Brendan Van Rooyen, and Nagarajan Natarajan. Learning from binary labels", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 279, + 425, + 291 + ], + "spans": [ + { + "bbox": [ + 116, + 279, + 425, + 291 + ], + "score": 1.0, + "content": "with instance-dependent corruption. arXiv preprint arXiv:1605.00751, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 504, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "Baharan Mirzasoleiman, Kaidi Cao, and Jure Leskovec. Coresets for robust training of neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 310, + 493, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 493, + 322 + ], + "score": 1.0, + "content": "networks against noisy labels. Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "Rahul Parhi and Robert D Nowak. Minimum\" norm\" neural networks are splines. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 340, + 219, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 219, + 351 + ], + "score": 1.0, + "content": "arXiv:1910.02333, 2019.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 373 + ], + "score": 1.0, + "content": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 383, + 178, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 383, + 178, + 393 + ], + "score": 1.0, + "content": "pytorch. 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "deep neural networks robust to label noise: A loss correction approach. In Proceedings of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 463, + 437 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 463, + 437 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition, pp. 1944–1952, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 503, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 457 + ], + "score": 1.0, + "content": "Alexandre Pintore, Paul Speckman, and Chris C Holmes. Spatially adaptive smoothing splines.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 454, + 254, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 454, + 254, + 465 + ], + "score": 1.0, + "content": "Biometrika, 93(1):113–125, 2006.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Mengye Ren, Wenyuan Zeng, Bin Yang, and Raquel Urtasun. Learning to reweight examples for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 484, + 498, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 498, + 497 + ], + "score": 1.0, + "content": "robust deep learning. In International Conference on Machine Learning, pp. 4334–4343, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Pedro H. P. Savarese, Itay Evron, Daniel Soudry, and Nathan Srebro. How do infinite width bounded", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 515, + 341, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 341, + 527 + ], + "score": 1.0, + "content": "norm networks look in function space? In COLT, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "Zuofeng Shang, Guang Cheng, et al. Local and global asymptotic inference in smoothing spline", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 546, + 349, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 349, + 558 + ], + "score": 1.0, + "content": "models. The Annals of Statistics, 41(5):2608–2638, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "Jun Shu, Qi Xie, Lixuan Yi, Qian Zhao, Sanping Zhou, Zongben Xu, and Deyu Meng. Meta-weight-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "net: Learning an explicit mapping for sample weighting. In Advances in Neural Information", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 587, + 289, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 289, + 599 + ], + "score": 1.0, + "content": "Processing Systems, pp. 1917–1928, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 104, + 606, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "J. Sokolic, R. Giryes, G. Sapiro, and M. R. D. Rodrigues. Robust large margin deep neural networks. ´", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 617, + 388, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 617, + 388, + 630 + ], + "score": 1.0, + "content": "IEEE Transactions on Signal Processing, 65(16):4265–4280, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 104, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "Jiaming Song, Lunjia Hu, Yann Dauphin, Michael Auli, and Tengyu Ma. Robust and on-the-fly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 449, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 449, + 661 + ], + "score": 1.0, + "content": "dataset denoising for image classification. arXiv preprint arXiv:2003.10647, 2020.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 507, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 507, + 681 + ], + "score": 1.0, + "content": "Ryan J Tibshirani et al. Adaptive piecewise polynomial estimation via trend filtering. The Annals of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 679, + 246, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 246, + 690 + ], + "score": 1.0, + "content": "Statistics, 42(1):285–323, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "score": 1.0, + "content": "Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge Belongie. Learning", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "from noisy large-scale datasets with minimal supervision. In Proceedings of the IEEE Conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 380, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 380, + 733 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition, pp. 839–847, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Wen Li, Limin Wang, Wei Li, Eirikur Agustsson, and Luc Van Gool. Webvision database: Visual", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 453, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 453, + 106 + ], + "score": 1.0, + "content": "learning and understanding from web data. arXiv preprint arXiv:1708.02862, 2017.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Tongliang Liu and Dacheng Tao. Classification with noisy labels by importance reweighting. IEEE", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 443, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 443, + 136 + ], + "score": 1.0, + "content": "Transactions on pattern analysis and machine intelligence, 38(3):447–461, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 113, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 143, + 502, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Ziwei Liu, Zhongqi Miao, Xiaohang Zhan, Jiayun Wang, Boqing Gong, and Stella X Yu. Large-scale", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 154, + 504, + 167 + ], + "spans": [ + { + "bbox": [ + 116, + 154, + 504, + 167 + ], + "score": 1.0, + "content": "long-tailed recognition in an open world. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 335, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 335, + 178 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 2537–2546, 2019.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 143, + 505, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 184, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 507, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 507, + 198 + ], + "score": 1.0, + "content": "Andrew L Maas, Raymond E Daly, Peter T Pham, Dan Huang, Andrew Y Ng, and Christopher Potts.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "Learning word vectors for sentiment analysis. In Proceedings of the 49th annual meeting of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 506, + 220 + ], + "score": 1.0, + "content": "association for computational linguistics: Human language technologies-volume 1, pp. 142–150.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 316, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 316, + 230 + ], + "score": 1.0, + "content": "Association for Computational Linguistics, 2011.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 184, + 507, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Eran Malach and Shai Shalev-Shwartz. Decoupling\" when to update\" from\" how to update\". In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 248, + 410, + 261 + ], + "spans": [ + { + "bbox": [ + 114, + 248, + 410, + 261 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 960–970, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 237, + 505, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "Aditya Krishna Menon, Brendan Van Rooyen, and Nagarajan Natarajan. Learning from binary labels", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 279, + 425, + 291 + ], + "spans": [ + { + "bbox": [ + 116, + 279, + 425, + 291 + ], + "score": 1.0, + "content": "with instance-dependent corruption. arXiv preprint arXiv:1605.00751, 2016.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 268, + 505, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 504, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "Baharan Mirzasoleiman, Kaidi Cao, and Jure Leskovec. Coresets for robust training of neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 310, + 493, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 310, + 493, + 322 + ], + "score": 1.0, + "content": "networks against noisy labels. Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 299, + 505, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "Rahul Parhi and Robert D Nowak. Minimum\" norm\" neural networks are splines. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 340, + 219, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 340, + 219, + 351 + ], + "score": 1.0, + "content": "arXiv:1910.02333, 2019.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 328, + 505, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 359, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 373 + ], + "score": 1.0, + "content": "Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 371, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 505, + 383 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 383, + 178, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 383, + 178, + 393 + ], + "score": 1.0, + "content": "pytorch. 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 358, + 506, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "Giorgio Patrini, Alessandro Rozza, Aditya Krishna Menon, Richard Nock, and Lizhen Qu. Making", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 116, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "deep neural networks robust to label noise: A loss correction approach. In Proceedings of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 463, + 437 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 463, + 437 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition, pp. 1944–1952, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 400, + 505, + 437 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 503, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 457 + ], + "score": 1.0, + "content": "Alexandre Pintore, Paul Speckman, and Chris C Holmes. Spatially adaptive smoothing splines.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 454, + 254, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 454, + 254, + 465 + ], + "score": 1.0, + "content": "Biometrika, 93(1):113–125, 2006.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 441, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Mengye Ren, Wenyuan Zeng, Bin Yang, and Raquel Urtasun. Learning to reweight examples for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 484, + 498, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 484, + 498, + 497 + ], + "score": 1.0, + "content": "robust deep learning. In International Conference on Machine Learning, pp. 4334–4343, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 474, + 505, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "Pedro H. P. Savarese, Itay Evron, Daniel Soudry, and Nathan Srebro. How do infinite width bounded", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 515, + 341, + 527 + ], + "spans": [ + { + "bbox": [ + 115, + 515, + 341, + 527 + ], + "score": 1.0, + "content": "norm networks look in function space? In COLT, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 504, + 505, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "Zuofeng Shang, Guang Cheng, et al. Local and global asymptotic inference in smoothing spline", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 546, + 349, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 546, + 349, + 558 + ], + "score": 1.0, + "content": "models. The Annals of Statistics, 41(5):2608–2638, 2013.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 534, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "Jun Shu, Qi Xie, Lixuan Yi, Qian Zhao, Sanping Zhou, Zongben Xu, and Deyu Meng. Meta-weight-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "net: Learning an explicit mapping for sample weighting. In Advances in Neural Information", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 587, + 289, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 289, + 599 + ], + "score": 1.0, + "content": "Processing Systems, pp. 1917–1928, 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 564, + 506, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 606, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "J. Sokolic, R. Giryes, G. Sapiro, and M. R. D. Rodrigues. Robust large margin deep neural networks. ´", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 617, + 388, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 617, + 388, + 630 + ], + "score": 1.0, + "content": "IEEE Transactions on Signal Processing, 65(16):4265–4280, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 607, + 506, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "Jiaming Song, Lunjia Hu, Yann Dauphin, Michael Auli, and Tengyu Ma. Robust and on-the-fly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 449, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 449, + 661 + ], + "score": 1.0, + "content": "dataset denoising for image classification. arXiv preprint arXiv:2003.10647, 2020.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 638, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 507, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 507, + 681 + ], + "score": 1.0, + "content": "Ryan J Tibshirani et al. Adaptive piecewise polynomial estimation via trend filtering. The Annals of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 679, + 246, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 246, + 690 + ], + "score": 1.0, + "content": "Statistics, 42(1):285–323, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 666, + 507, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 505, + 713 + ], + "score": 1.0, + "content": "Andreas Veit, Neil Alldrin, Gal Chechik, Ivan Krasin, Abhinav Gupta, and Serge Belongie. Learning", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "from noisy large-scale datasets with minimal supervision. In Proceedings of the IEEE Conference", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 380, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 380, + 733 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition, pp. 839–847, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 696, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 73, + 507, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "Xiao Wang, Pang Du, and Jinglai Shen. Smoothing splines with varying smoothing parameter.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 260, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 260, + 106 + ], + "score": 1.0, + "content": "Biometrika, 100(4):955–970, 2013.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "Yiru Wang, Weihao Gan, Jie Yang, Wei Wu, and Junjie Yan. Dynamic curriculum learning for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 138 + ], + "score": 1.0, + "content": "imbalanced data classification. In Proceedings of the IEEE International Conference on Computer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 236, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 236, + 147 + ], + "score": 1.0, + "content": "Vision, pp. 5017–5026, 2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Yu-Xiong Wang, Deva Ramanan, and Martial Hebert. Learning to model the tail. In Advances in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 164, + 369, + 177 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 369, + 177 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 7029–7039, 2017.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 197 + ], + "score": 1.0, + "content": "Colin Wei and Tengyu Ma. Data-dependent sample complexity of deep neural networks via lipschitz", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 195, + 495, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 495, + 207 + ], + "score": 1.0, + "content": "augmentation. In Advances in Neural Information Processing Systems, pp. 9722–9733, 2019a.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Colin Wei and Tengyu Ma. Improved sample complexities for deep networks and robust classification", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 225, + 379, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 379, + 237 + ], + "score": 1.0, + "content": "via an all-layer margin. arXiv preprint arXiv:1910.04284, 2019b.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 241, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 506, + 258 + ], + "score": 1.0, + "content": "D Randall Wilson and Tony R Martinez. Instance pruning techniques. In ICML, volume 97, pp.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 181, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 181, + 266 + ], + "score": 1.0, + "content": "400–411, 1997.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 272, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 287 + ], + "score": 1.0, + "content": "Yilun Xu, Peng Cao, Yuqing Kong, and Yizhou Wang. L_dmi: A novel information-theoretic loss", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 114, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "function for training deep nets robust to label noise. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 243, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 243, + 308 + ], + "score": 1.0, + "content": "Systems, pp. 6222–6233, 2019.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 325, + 476, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 476, + 339 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 358 + ], + "score": 1.0, + "content": "Zhilu Zhang and Mert Sabuncu. Generalized cross entropy loss for training deep neural networks", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 355, + 500, + 369 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 500, + 369 + ], + "score": 1.0, + "content": "with noisy labels. In Advances in neural information processing systems, pp. 8778–8788, 2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "Qi Zhao and Toyoaki Nishida. Using qualitative hypotheses to identify inaccurate data. Journal of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 384, + 318, + 398 + ], + "spans": [ + { + "bbox": [ + 114, + 384, + 318, + 398 + ], + "score": 1.0, + "content": "Artificial Intelligence Research, 3:119–145, 1995.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "Boyan Zhou, Quan Cui, Xiu-Shen Wei, and Zhao-Min Chen. Bbn: Bilateral-branch network with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "cumulative learning for long-tailed visual recognition. In Proceedings of the IEEE/CVF Conference", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 390, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 390, + 439 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition, pp. 9719–9728, 2020.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 12 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 73, + 507, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "Xiao Wang, Pang Du, and Jinglai Shen. Smoothing splines with varying smoothing parameter.", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 94, + 260, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 260, + 106 + ], + "score": 1.0, + "content": "Biometrika, 100(4):955–970, 2013.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "Yiru Wang, Weihao Gan, Jie Yang, Wei Wu, and Junjie Yan. Dynamic curriculum learning for", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 123, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 138 + ], + "score": 1.0, + "content": "imbalanced data classification. In Proceedings of the IEEE International Conference on Computer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 236, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 236, + 147 + ], + "score": 1.0, + "content": "Vision, pp. 5017–5026, 2019.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Yu-Xiong Wang, Deva Ramanan, and Martial Hebert. Learning to model the tail. In Advances in", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 164, + 369, + 177 + ], + "spans": [ + { + "bbox": [ + 114, + 164, + 369, + 177 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 7029–7039, 2017.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 182, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 197 + ], + "score": 1.0, + "content": "Colin Wei and Tengyu Ma. Data-dependent sample complexity of deep neural networks via lipschitz", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 195, + 495, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 495, + 207 + ], + "score": 1.0, + "content": "augmentation. In Advances in Neural Information Processing Systems, pp. 9722–9733, 2019a.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "Colin Wei and Tengyu Ma. Improved sample complexities for deep networks and robust classification", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 225, + 379, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 379, + 237 + ], + "score": 1.0, + "content": "via an all-layer margin. arXiv preprint arXiv:1910.04284, 2019b.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 241, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 506, + 258 + ], + "score": 1.0, + "content": "D Randall Wilson and Tony R Martinez. Instance pruning techniques. In ICML, volume 97, pp.", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 254, + 181, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 181, + 266 + ], + "score": 1.0, + "content": "400–411, 1997.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 272, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 287 + ], + "score": 1.0, + "content": "Yilun Xu, Peng Cao, Yuqing Kong, and Yizhou Wang. L_dmi: A novel information-theoretic loss", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 114, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "function for training deep nets robust to label noise. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 243, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 243, + 308 + ], + "score": 1.0, + "content": "Systems, pp. 6222–6233, 2019.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 328 + ], + "score": 1.0, + "content": "Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 325, + 476, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 476, + 339 + ], + "score": 1.0, + "content": "deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 343, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 506, + 358 + ], + "score": 1.0, + "content": "Zhilu Zhang and Mert Sabuncu. Generalized cross entropy loss for training deep neural networks", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 355, + 500, + 369 + ], + "spans": [ + { + "bbox": [ + 116, + 355, + 500, + 369 + ], + "score": 1.0, + "content": "with noisy labels. In Advances in neural information processing systems, pp. 8778–8788, 2018.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 387 + ], + "score": 1.0, + "content": "Qi Zhao and Toyoaki Nishida. Using qualitative hypotheses to identify inaccurate data. Journal of", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 384, + 318, + 398 + ], + "spans": [ + { + "bbox": [ + 114, + 384, + 318, + 398 + ], + "score": 1.0, + "content": "Artificial Intelligence Research, 3:119–145, 1995.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "Boyan Zhou, Quan Cui, Xiu-Shen Wei, and Zhao-Min Chen. Bbn: Bilateral-branch network with", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "cumulative learning for long-tailed visual recognition. In Proceedings of the IEEE/CVF Conference", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 390, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 390, + 439 + ], + "score": 1.0, + "content": "on Computer Vision and Pattern Recognition, pp. 9719–9728, 2020.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + } + ], + "index": 12, + "bbox_fs": [ + 104, + 81, + 506, + 439 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 249, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 251, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 251, + 95 + ], + "score": 1.0, + "content": "A PROOFS OF THEOREM 1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 105, + 442, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 442, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 442, + 119 + ], + "score": 1.0, + "content": "We prove a general theorem here. In particular, we have the general theorem below.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 211, + 132 + ], + "score": 1.0, + "content": "Theorem 2. Assume that", + "type": "text" + }, + { + "bbox": [ + 212, + 119, + 269, + 132 + ], + "score": 0.92, + "content": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 119, + 324, + 132 + ], + "score": 1.0, + "content": ". Suppose (1)", + "type": "text" + }, + { + "bbox": [ + 324, + 119, + 352, + 131 + ], + "score": 0.66, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 119, + 506, + 132 + ], + "score": 1.0, + "content": "is convex and three times continously", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 130, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 224, + 143 + ], + "score": 1.0, + "content": "differentiable with respect to", + "type": "text" + }, + { + "bbox": [ + 225, + 133, + 231, + 140 + ], + "score": 0.61, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 130, + 334, + 143 + ], + "score": 1.0, + "content": ", (2) there exist constants", + "type": "text" + }, + { + "bbox": [ + 334, + 131, + 402, + 141 + ], + "score": 0.89, + "content": "0 < c < C < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 130, + 442, + 143 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 442, + 130, + 504, + 142 + ], + "score": 0.9, + "content": "c \\leq I ( X ) \\leq \\bar { C }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 504, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 183, + 156 + ], + "score": 1.0, + "content": "almost surely, and", + "type": "text" + }, + { + "bbox": [ + 183, + 142, + 267, + 155 + ], + "score": 0.84, + "content": "\\epsilon \\triangleq \\nabla _ { a } \\ell ( f ^ { \\star } ( X ) , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 142, + 304, + 156 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 304, + 142, + 353, + 155 + ], + "score": 0.89, + "content": "\\mathbb { E } [ \\epsilon | X ] = 0 \\mathrm { \\it \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 142, + 357, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 357, + 142, + 426, + 155 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\epsilon ^ { 2 } | X ] = I ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 142, + 445, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 143, + 504, + 155 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\epsilon ^ { 4 } | X ] < \\infty", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 153, + 504, + 171 + ], + "spans": [ + { + "bbox": [ + 103, + 153, + 178, + 171 + ], + "score": 1.0, + "content": "almost surely. Let", + "type": "text" + }, + { + "bbox": [ + 178, + 155, + 266, + 168 + ], + "score": 0.91, + "content": "r ( t ) = - 1 / ( q ( t ) I ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 153, + 284, + 171 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 155, + 393, + 170 + ], + "score": 0.9, + "content": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 153, + 447, + 171 + ], + "score": 1.0, + "content": ". If we choose", + "type": "text" + }, + { + "bbox": [ + 447, + 155, + 504, + 167 + ], + "score": 0.89, + "content": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 169, + 442, + 183 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 180, + 183 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 180, + 171, + 211, + 182 + ], + "score": 0.91, + "content": "C _ { 0 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 169, + 367, + 183 + ], + "score": 1.0, + "content": ", the asymptotic mean squared error of", + "type": "text" + }, + { + "bbox": [ + 367, + 169, + 374, + 182 + ], + "score": 0.82, + "content": "\\hat { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 169, + 442, + 183 + ], + "score": 1.0, + "content": "by equation 4 is", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 184, + 463, + 214 + ], + "lines": [ + { + "bbox": [ + 148, + 184, + 463, + 214 + ], + "spans": [ + { + "bbox": [ + 148, + 184, + 463, + 214 + ], + "score": 0.92, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "c6a2f35daa2ba3524636b23ce7bd61b4395e2910afa2abf98b06bfe63130914d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 148, + 184, + 463, + 194.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 148, + 194.0, + 463, + 204.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 148, + 204.0, + 463, + 214.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 346, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 347, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 191, + 229 + ], + "score": 1.0, + "content": "in probability, where", + "type": "text" + }, + { + "bbox": [ + 192, + 216, + 205, + 227 + ], + "score": 0.89, + "content": "C _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 214, + 336, + 229 + ], + "score": 1.0, + "content": "is a scalar that only depends on", + "type": "text" + }, + { + "bbox": [ + 336, + 218, + 343, + 226 + ], + "score": 0.47, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 214, + 347, + 229 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 414, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 414, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 414, + 249 + ], + "score": 1.0, + "content": "It is easy to check that the logistic loss satisfies the condition of the theorem.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 252, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 266 + ], + "score": 1.0, + "content": "The proof strategy of Theorem 2 is adopted from the proof of Theorem 2 of (Wang et al., 2013) by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 333, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 333, + 276 + ], + "score": 1.0, + "content": "generalizing it from the least square loss to logistic loss.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 105, + 281, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 251, + 295 + ], + "score": 1.0, + "content": "The high level idea is to reformulate", + "type": "text" + }, + { + "bbox": [ + 251, + 280, + 258, + 294 + ], + "score": 0.86, + "content": "\\hat { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 279, + 459, + 295 + ], + "score": 1.0, + "content": "as solutions to ordinary differential equations. Let", + "type": "text" + }, + { + "bbox": [ + 459, + 282, + 492, + 294 + ], + "score": 0.94, + "content": "( \\gamma _ { v } , h _ { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 279, + 505, + 295 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 312, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 312, + 304 + ], + "score": 1.0, + "content": "the (normalized) solution of the following equation", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 306, + 398, + 342 + ], + "lines": [ + { + "bbox": [ + 212, + 306, + 398, + 342 + ], + "spans": [ + { + "bbox": [ + 212, + 306, + 398, + 342 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { - \\rho ( t ) h _ { v } ^ { \\prime \\prime } ( t ) = \\gamma _ { v } I ( t ) q ( t ) h _ { v } ( t ) , } \\\\ & { h _ { v } ^ { ' } ( 0 ) = h _ { v } ^ { ' } ( 1 ) = 0 , \\mathrm { ~ a n d ~ } h _ { v } ^ { ' \\prime } ( 0 ) = h _ { v } ^ { ' \\prime } ( 1 ) = 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "b8a4db4af9d6efa262b60416d90b62e4a53dee6d07c55dc04bfc06a007322697.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 306, + 398, + 324.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 212, + 324.0, + 398, + 342.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 334, + 364 + ], + "lines": [ + { + "bbox": [ + 104, + 347, + 334, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 241, + 367 + ], + "score": 1.0, + "content": "We define the the leading term of", + "type": "text" + }, + { + "bbox": [ + 241, + 349, + 271, + 363 + ], + "score": 0.93, + "content": "\\hat { f } - f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 347, + 283, + 367 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 283, + 351, + 321, + 364 + ], + "score": 0.93, + "content": "S _ { n , \\lambda } ( f ^ { \\star } )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 347, + 334, + 367 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 366, + 354, + 390 + ], + "lines": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "spans": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "score": 0.32, + "content": "S _ { n , \\lambda } ( f ^ { \\star } ) = { \\frac { 1 } { n } } \\epsilon _ { i } K _ { X _ { i } } - W _ { \\lambda } f ^ { \\star } ,", + "type": "interline_equation", + "image_path": "bd041acf74e6c9a42afed2581f43e5f369264f8f49037ab84b79a452afbac0d5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 392, + 425, + 422 + ], + "lines": [ + { + "bbox": [ + 186, + 392, + 425, + 422 + ], + "spans": [ + { + "bbox": [ + 186, + 392, + 425, + 422 + ], + "score": 0.66, + "content": "K _ { t } ( \\cdot ) = \\sum _ { v } \\frac { h _ { v } ( t ) } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) \\mathrm { a n d } W _ { \\lambda } h _ { v } ( \\cdot ) = \\frac { \\lambda \\gamma _ { v } } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) .", + "type": "interline_equation", + "image_path": "d12e0263c5f39d8811659ca77526544c8626609d53d42680e958dbc977ec72c4.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 392, + 425, + 407.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 186, + 407.0, + 425, + 422.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 381, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 381, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 381, + 441 + ], + "score": 1.0, + "content": "By Proposition 2.1 and Theorem 3.4 of Shang et al. (2013), we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 442, + 408, + 463 + ], + "lines": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "spans": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { x } | \\hat { f } ( x ) - f ^ { \\star } ( x ) - S _ { n , \\lambda } ( f ^ { \\star } ) ( x ) | = o _ { P } ( n ^ { - 1 / 3 } ) .", + "type": "interline_equation", + "image_path": "62438ae453c0a80b1ab26fe50451e68c366fc458f539c05e18075d90c2c08787.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 504, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 491, + 478 + ], + "score": 1.0, + "content": "Following the same proof of Theorem 2 of (Wang et al., 2013), we can simplify the definition of", + "type": "text" + }, + { + "bbox": [ + 491, + 466, + 504, + 477 + ], + "score": 0.87, + "content": "K _ { t }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 475, + 154, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 123, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 476, + 140, + 487 + ], + "score": 0.89, + "content": "W ^ { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 475, + 154, + 489 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 484, + 437, + 511 + ], + "lines": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "spans": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "score": 0.91, + "content": "K _ { t } ( x ) = \\frac { I ( t ) } { q ( t ) } J ( t , x ) \\mathrm { a n d } W _ { \\lambda } f ^ { \\star } ( t ) = \\lambda r ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ,", + "type": "interline_equation", + "image_path": "104042b649f6b38c434cebe849f9a404ec81eb4ebd35bb20c7ea2c3f45facc52.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 508, + 541 + ], + "lines": [ + { + "bbox": [ + 104, + 512, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 136, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 514, + 333, + 528 + ], + "score": 0.9, + "content": "J ( t , s ) ~ = ~ \\beta \\rho ( s ) Q _ { \\beta } ^ { \\prime } ( s ) L _ { 0 } ( \\beta | Q _ { \\beta } ( t ) - Q _ { \\beta } ( s ) | )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 512, + 356, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 513, + 506, + 528 + ], + "score": 0.9, + "content": "\\begin{array} { r } { Q _ { \\beta } ( t , s ) = \\int _ { 0 } ^ { t } ( r ( s ) \\rho ( s ) ) ^ { - 1 / 2 } ( 1 + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 527, + 434, + 543 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 154, + 541 + ], + "score": 0.92, + "content": "O ( \\beta ^ { - 1 } ) ) d s", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 527, + 172, + 543 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 172, + 528, + 217, + 541 + ], + "score": 0.93, + "content": "\\beta = 1 / \\sqrt { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 527, + 434, + 543 + ], + "score": 1.0, + "content": ". Plugging equation 11 into equation 10, we then have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 543, + 464, + 573 + ], + "lines": [ + { + "bbox": [ + 146, + 543, + 464, + 573 + ], + "spans": [ + { + "bbox": [ + 146, + 543, + 464, + 573 + ], + "score": 0.93, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } \\mathrm { M S E } ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "78e2e5122e513f455d07608408c2c552e1dcef3c0da025e83074f411c9401196.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 146, + 543, + 464, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 146, + 553.0, + 464, + 563.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 146, + 563.0, + 464, + 573.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 585, + 267, + 598 + ], + "lines": [ + { + "bbox": [ + 104, + 584, + 268, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 268, + 601 + ], + "score": 1.0, + "content": "B IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 363, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 364, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 364, + 622 + ], + "score": 1.0, + "content": "We develop our core algorithm in PyTorch (Paszke et al., 2017).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "Implementation details for CIFAR. We follow the simple data augmentation used in (He et al.,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "2016) with only random crop and horizontal flip. We use ResNet-32 as our base network and repeat", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 654, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 465, + 667 + ], + "score": 1.0, + "content": "all experiments for 3 runs. We use standard SGD with momentum of 0.9, weight decay of", + "type": "text" + }, + { + "bbox": [ + 465, + 654, + 504, + 666 + ], + "score": 0.91, + "content": "1 \\times \\bar { 1 0 } ^ { - 4 }", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "for training. The model is trained with a batch size of 128 for 120 epochs. We anneal the learning rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 676, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 494, + 690 + ], + "score": 1.0, + "content": "by a factor of 10 at 80 and 100 epochs. We group the data by class labels, and by default we split", + "type": "text" + }, + { + "bbox": [ + 495, + 677, + 504, + 687 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 212, + 701 + ], + "score": 1.0, + "content": "equally and randomly into", + "type": "text" + }, + { + "bbox": [ + 212, + 688, + 234, + 699 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 687, + 252, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 688, + 270, + 699 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 687, + 505, + 701 + ], + "score": 1.0, + "content": ". As for the Jacobian regularizer, we sum over the frobenius", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "norm of the gradients of all normalization layers’ (BN by default) activations with respect to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 325, + 722 + ], + "score": 1.0, + "content": "classification loss. For experiments of HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 325, + 710, + 333, + 720 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "so that the largest enforced regularization", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 435, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 141, + 732 + ], + "score": 1.0, + "content": "strength", + "type": "text" + }, + { + "bbox": [ + 141, + 721, + 162, + 732 + ], + "score": 0.87, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 720, + 435, + 732 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 249, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 251, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 251, + 95 + ], + "score": 1.0, + "content": "A PROOFS OF THEOREM 1", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 105, + 442, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 442, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 442, + 119 + ], + "score": 1.0, + "content": "We prove a general theorem here. In particular, we have the general theorem below.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 104, + 442, + 119 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 211, + 132 + ], + "score": 1.0, + "content": "Theorem 2. Assume that", + "type": "text" + }, + { + "bbox": [ + 212, + 119, + 269, + 132 + ], + "score": 0.92, + "content": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 119, + 324, + 132 + ], + "score": 1.0, + "content": ". Suppose (1)", + "type": "text" + }, + { + "bbox": [ + 324, + 119, + 352, + 131 + ], + "score": 0.66, + "content": "\\ell ( a , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 119, + 506, + 132 + ], + "score": 1.0, + "content": "is convex and three times continously", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 130, + 504, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 224, + 143 + ], + "score": 1.0, + "content": "differentiable with respect to", + "type": "text" + }, + { + "bbox": [ + 225, + 133, + 231, + 140 + ], + "score": 0.61, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 130, + 334, + 143 + ], + "score": 1.0, + "content": ", (2) there exist constants", + "type": "text" + }, + { + "bbox": [ + 334, + 131, + 402, + 141 + ], + "score": 0.89, + "content": "0 < c < C < \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 130, + 442, + 143 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 442, + 130, + 504, + 142 + ], + "score": 0.9, + "content": "c \\leq I ( X ) \\leq \\bar { C }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 504, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 183, + 156 + ], + "score": 1.0, + "content": "almost surely, and", + "type": "text" + }, + { + "bbox": [ + 183, + 142, + 267, + 155 + ], + "score": 0.84, + "content": "\\epsilon \\triangleq \\nabla _ { a } \\ell ( f ^ { \\star } ( X ) , Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 142, + 304, + 156 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 304, + 142, + 353, + 155 + ], + "score": 0.89, + "content": "\\mathbb { E } [ \\epsilon | X ] = 0 \\mathrm { \\it \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 142, + 357, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 357, + 142, + 426, + 155 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\epsilon ^ { 2 } | X ] = I ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 142, + 445, + 156 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 143, + 504, + 155 + ], + "score": 0.9, + "content": "\\mathbb { E } [ \\epsilon ^ { 4 } | X ] < \\infty", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 153, + 504, + 171 + ], + "spans": [ + { + "bbox": [ + 103, + 153, + 178, + 171 + ], + "score": 1.0, + "content": "almost surely. Let", + "type": "text" + }, + { + "bbox": [ + 178, + 155, + 266, + 168 + ], + "score": 0.91, + "content": "r ( t ) = - 1 / ( q ( t ) I ( t ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 153, + 284, + 171 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 155, + 393, + 170 + ], + "score": 0.9, + "content": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 153, + 447, + 171 + ], + "score": 1.0, + "content": ". If we choose", + "type": "text" + }, + { + "bbox": [ + 447, + 155, + 504, + 167 + ], + "score": 0.89, + "content": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 169, + 442, + 183 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 180, + 183 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 180, + 171, + 211, + 182 + ], + "score": 0.91, + "content": "C _ { 0 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 169, + 367, + 183 + ], + "score": 1.0, + "content": ", the asymptotic mean squared error of", + "type": "text" + }, + { + "bbox": [ + 367, + 169, + 374, + 182 + ], + "score": 0.82, + "content": "\\hat { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 169, + 442, + 183 + ], + "score": 1.0, + "content": "by equation 4 is", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 103, + 119, + 506, + 183 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 184, + 463, + 214 + ], + "lines": [ + { + "bbox": [ + 148, + 184, + 463, + 214 + ], + "spans": [ + { + "bbox": [ + 148, + 184, + 463, + 214 + ], + "score": 0.92, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "c6a2f35daa2ba3524636b23ce7bd61b4395e2910afa2abf98b06bfe63130914d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 148, + 184, + 463, + 194.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 148, + 194.0, + 463, + 204.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 148, + 204.0, + 463, + 214.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 216, + 346, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 347, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 191, + 229 + ], + "score": 1.0, + "content": "in probability, where", + "type": "text" + }, + { + "bbox": [ + 192, + 216, + 205, + 227 + ], + "score": 0.89, + "content": "C _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 214, + 336, + 229 + ], + "score": 1.0, + "content": "is a scalar that only depends on", + "type": "text" + }, + { + "bbox": [ + 336, + 218, + 343, + 226 + ], + "score": 0.47, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 214, + 347, + 229 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 214, + 347, + 229 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 235, + 414, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 235, + 414, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 414, + 249 + ], + "score": 1.0, + "content": "It is easy to check that the logistic loss satisfies the condition of the theorem.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 235, + 414, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 252, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 266 + ], + "score": 1.0, + "content": "The proof strategy of Theorem 2 is adopted from the proof of Theorem 2 of (Wang et al., 2013) by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 333, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 333, + 276 + ], + "score": 1.0, + "content": "generalizing it from the least square loss to logistic loss.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 250, + 505, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 281, + 504, + 305 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 251, + 295 + ], + "score": 1.0, + "content": "The high level idea is to reformulate", + "type": "text" + }, + { + "bbox": [ + 251, + 280, + 258, + 294 + ], + "score": 0.86, + "content": "\\hat { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 279, + 459, + 295 + ], + "score": 1.0, + "content": "as solutions to ordinary differential equations. Let", + "type": "text" + }, + { + "bbox": [ + 459, + 282, + 492, + 294 + ], + "score": 0.94, + "content": "( \\gamma _ { v } , h _ { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 279, + 505, + 295 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 312, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 312, + 304 + ], + "score": 1.0, + "content": "the (normalized) solution of the following equation", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 279, + 505, + 304 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 306, + 398, + 342 + ], + "lines": [ + { + "bbox": [ + 212, + 306, + 398, + 342 + ], + "spans": [ + { + "bbox": [ + 212, + 306, + 398, + 342 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { - \\rho ( t ) h _ { v } ^ { \\prime \\prime } ( t ) = \\gamma _ { v } I ( t ) q ( t ) h _ { v } ( t ) , } \\\\ & { h _ { v } ^ { ' } ( 0 ) = h _ { v } ^ { ' } ( 1 ) = 0 , \\mathrm { ~ a n d ~ } h _ { v } ^ { ' \\prime } ( 0 ) = h _ { v } ^ { ' \\prime } ( 1 ) = 0 . } \\end{array}", + "type": "interline_equation", + "image_path": "b8a4db4af9d6efa262b60416d90b62e4a53dee6d07c55dc04bfc06a007322697.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 306, + 398, + 324.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 212, + 324.0, + 398, + 342.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 334, + 364 + ], + "lines": [ + { + "bbox": [ + 104, + 347, + 334, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 241, + 367 + ], + "score": 1.0, + "content": "We define the the leading term of", + "type": "text" + }, + { + "bbox": [ + 241, + 349, + 271, + 363 + ], + "score": 0.93, + "content": "\\hat { f } - f ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 347, + 283, + 367 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 283, + 351, + 321, + 364 + ], + "score": 0.93, + "content": "S _ { n , \\lambda } ( f ^ { \\star } )", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 347, + 334, + 367 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 347, + 334, + 367 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 366, + 354, + 390 + ], + "lines": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "spans": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "score": 0.32, + "content": "S _ { n , \\lambda } ( f ^ { \\star } ) = { \\frac { 1 } { n } } \\epsilon _ { i } K _ { X _ { i } } - W _ { \\lambda } f ^ { \\star } ,", + "type": "interline_equation", + "image_path": "bd041acf74e6c9a42afed2581f43e5f369264f8f49037ab84b79a452afbac0d5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 228, + 366, + 354, + 390 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 392, + 425, + 422 + ], + "lines": [ + { + "bbox": [ + 186, + 392, + 425, + 422 + ], + "spans": [ + { + "bbox": [ + 186, + 392, + 425, + 422 + ], + "score": 0.66, + "content": "K _ { t } ( \\cdot ) = \\sum _ { v } \\frac { h _ { v } ( t ) } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) \\mathrm { a n d } W _ { \\lambda } h _ { v } ( \\cdot ) = \\frac { \\lambda \\gamma _ { v } } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) .", + "type": "interline_equation", + "image_path": "d12e0263c5f39d8811659ca77526544c8626609d53d42680e958dbc977ec72c4.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 392, + 425, + 407.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 186, + 407.0, + 425, + 422.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 381, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 381, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 381, + 441 + ], + "score": 1.0, + "content": "By Proposition 2.1 and Theorem 3.4 of Shang et al. (2013), we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 426, + 381, + 441 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 442, + 408, + 463 + ], + "lines": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "spans": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "score": 0.91, + "content": "\\operatorname* { s u p } _ { x } | \\hat { f } ( x ) - f ^ { \\star } ( x ) - S _ { n , \\lambda } ( f ^ { \\star } ) ( x ) | = o _ { P } ( n ^ { - 1 / 3 } ) .", + "type": "interline_equation", + "image_path": "62438ae453c0a80b1ab26fe50451e68c366fc458f539c05e18075d90c2c08787.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 204, + 442, + 408, + 463 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 465, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 504, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 491, + 478 + ], + "score": 1.0, + "content": "Following the same proof of Theorem 2 of (Wang et al., 2013), we can simplify the definition of", + "type": "text" + }, + { + "bbox": [ + 491, + 466, + 504, + 477 + ], + "score": 0.87, + "content": "K _ { t }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 475, + 154, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 123, + 489 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 476, + 140, + 487 + ], + "score": 0.89, + "content": "W ^ { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 475, + 154, + 489 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 464, + 504, + 489 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 484, + 437, + 511 + ], + "lines": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "spans": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "score": 0.91, + "content": "K _ { t } ( x ) = \\frac { I ( t ) } { q ( t ) } J ( t , x ) \\mathrm { a n d } W _ { \\lambda } f ^ { \\star } ( t ) = \\lambda r ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ,", + "type": "interline_equation", + "image_path": "104042b649f6b38c434cebe849f9a404ec81eb4ebd35bb20c7ea2c3f45facc52.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 173, + 484, + 437, + 511 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 508, + 541 + ], + "lines": [ + { + "bbox": [ + 104, + 512, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 104, + 512, + 136, + 529 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 514, + 333, + 528 + ], + "score": 0.9, + "content": "J ( t , s ) ~ = ~ \\beta \\rho ( s ) Q _ { \\beta } ^ { \\prime } ( s ) L _ { 0 } ( \\beta | Q _ { \\beta } ( t ) - Q _ { \\beta } ( s ) | )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 512, + 356, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 356, + 513, + 506, + 528 + ], + "score": 0.9, + "content": "\\begin{array} { r } { Q _ { \\beta } ( t , s ) = \\int _ { 0 } ^ { t } ( r ( s ) \\rho ( s ) ) ^ { - 1 / 2 } ( 1 + } \\end{array}", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 107, + 527, + 434, + 543 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 154, + 541 + ], + "score": 0.92, + "content": "O ( \\beta ^ { - 1 } ) ) d s", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 527, + 172, + 543 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 172, + 528, + 217, + 541 + ], + "score": 0.93, + "content": "\\beta = 1 / \\sqrt { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 527, + 434, + 543 + ], + "score": 1.0, + "content": ". Plugging equation 11 into equation 10, we then have", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 512, + 506, + 543 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 543, + 464, + 573 + ], + "lines": [ + { + "bbox": [ + 146, + 543, + 464, + 573 + ], + "spans": [ + { + "bbox": [ + 146, + 543, + 464, + 573 + ], + "score": 0.93, + "content": "\\operatorname* { l i m } _ { n \\to \\infty } \\mathrm { M S E } ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t", + "type": "interline_equation", + "image_path": "78e2e5122e513f455d07608408c2c552e1dcef3c0da025e83074f411c9401196.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 146, + 543, + 464, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 146, + 553.0, + 464, + 563.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 146, + 563.0, + 464, + 573.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 585, + 267, + 598 + ], + "lines": [ + { + "bbox": [ + 104, + 584, + 268, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 268, + 601 + ], + "score": 1.0, + "content": "B IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 363, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 364, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 364, + 622 + ], + "score": 1.0, + "content": "We develop our core algorithm in PyTorch (Paszke et al., 2017).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 608, + 364, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "Implementation details for CIFAR. We follow the simple data augmentation used in (He et al.,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "2016) with only random crop and horizontal flip. We use ResNet-32 as our base network and repeat", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 654, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 465, + 667 + ], + "score": 1.0, + "content": "all experiments for 3 runs. We use standard SGD with momentum of 0.9, weight decay of", + "type": "text" + }, + { + "bbox": [ + 465, + 654, + 504, + 666 + ], + "score": 0.91, + "content": "1 \\times \\bar { 1 0 } ^ { - 4 }", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "for training. The model is trained with a batch size of 128 for 120 epochs. We anneal the learning rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 676, + 504, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 494, + 690 + ], + "score": 1.0, + "content": "by a factor of 10 at 80 and 100 epochs. We group the data by class labels, and by default we split", + "type": "text" + }, + { + "bbox": [ + 495, + 677, + 504, + 687 + ], + "score": 0.79, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 212, + 701 + ], + "score": 1.0, + "content": "equally and randomly into", + "type": "text" + }, + { + "bbox": [ + 212, + 688, + 234, + 699 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { t r a i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 687, + 252, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 252, + 688, + 270, + 699 + ], + "score": 0.9, + "content": "\\mathcal { D } _ { \\mathrm { v a l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 687, + 505, + 701 + ], + "score": 1.0, + "content": ". As for the Jacobian regularizer, we sum over the frobenius", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "norm of the gradients of all normalization layers’ (BN by default) activations with respect to the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 325, + 722 + ], + "score": 1.0, + "content": "classification loss. For experiments of HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 325, + 710, + 333, + 720 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "so that the largest enforced regularization", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 435, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 141, + 732 + ], + "score": 1.0, + "content": "strength", + "type": "text" + }, + { + "bbox": [ + 141, + 721, + 162, + 732 + ], + "score": 0.87, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 720, + 435, + 732 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 1 NVIDIA GeForce RTX 2080 Ti.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 632, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "Implementation details for IMDB-review. We train a two-layer bidirectional LSTM (Huang et al.,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "2015) with 256 units followed with 0.5 dropout before the linear classifier. The network is trained", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 423, + 117 + ], + "score": 1.0, + "content": "for 20 epochs with Adam optimizer (Kingma & Ba, 2014). For HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 424, + 105, + 431, + 114 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "so that the largest", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 239, + 129 + ], + "score": 1.0, + "content": "enforced regularization strength", + "type": "text" + }, + { + "bbox": [ + 240, + 116, + 261, + 127 + ], + "score": 0.88, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 1 NVIDIA GeForce RTX", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 124, + 142, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 124, + 142, + 138 + ], + "score": 1.0, + "content": "2080 Ti.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 152, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Implementation details for WebVision. We use the standard data augmentation same as (He et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "2016) including random crop and horizontal flip. For mini WebVision, We train the network for 90", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 174, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 186 + ], + "score": 1.0, + "content": "epochs using standard SGD with a batch size of 128. The initial learning rate is 0.1 and is annealed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "score": 1.0, + "content": "by a factor of 10 at epoch 60 and 90. For full WebVision, We train the network for 50 epochs using", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "standard SGD with a batch size of 256. The initial learning rate is 0.1 and is annealed by a factor of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 332, + 219 + ], + "score": 1.0, + "content": "10 at epoch 30 and 40. For experiments of HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 333, + 208, + 340, + 217 + ], + "score": 0.64, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "so that the largest enforced regularization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 218, + 418, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 141, + 230 + ], + "score": 1.0, + "content": "strength", + "type": "text" + }, + { + "bbox": [ + 141, + 218, + 162, + 229 + ], + "score": 0.85, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 218, + 418, + 230 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 8 NVIDIA Tesla V100 GPUs.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Runtime analysis. Because the pre-trained model only trains on half of the training data and is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "only done once, the run-time of HAR is at most twice of the time for ERM. Many baselines in our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "paper use sophisticated pipelines and are slower than HAR. For example, INCV trains 2 models", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 291 + ], + "score": 1.0, + "content": "simultaneously for 4 times from random initialization to get a clean training set. MW-Net has a very", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 287, + 376, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 376, + 301 + ], + "score": 1.0, + "content": "slow convergence rate, which is a common issue for meta-learning.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 317, + 244, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 246, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 246, + 332 + ], + "score": 1.0, + "content": "C ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 343, + 386, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 388, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 388, + 356 + ], + "score": 1.0, + "content": "C.1 SIMULATING HETEROSKEDASTIC NOISE ON IMDB-REVIEW.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "IMDB-review dataset has a total of 50,000 (25,000 positive and 25,000 negative reviews) movie", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "reviews for binary sentiment classification (Maas et al., 2011). To simulate heteroskedastic noise for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 291, + 400 + ], + "score": 1.0, + "content": "this binary classification problem, we project", + "type": "text" + }, + { + "bbox": [ + 291, + 387, + 307, + 398 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "of the labels of negative reviews to positive, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 398, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 126, + 408 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 398, + 504, + 410 + ], + "score": 1.0, + "content": "in the reverse direction. Table 6 summarizes the results. The proposed HAR outperforms the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 408, + 357, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 357, + 421 + ], + "score": 1.0, + "content": "ERM baseline with various strength of uniform regularization.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 151, + 453, + 459, + 516 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 432, + 503, + 444 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 431, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 445 + ], + "score": 1.0, + "content": "Table 6: Top-1 validation accuracy (averaged over 3 runs) on heteroskedastic IMDB-review dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 151, + 453, + 459, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 453, + 459, + 516 + ], + "spans": [ + { + "bbox": [ + 151, + 453, + 459, + 516 + ], + "score": 0.979, + "html": "
Reg StrengthAcc. of neg. reviewsAcc. of pos. reviewsMean Acc
091.9 ± 2.050.9 ±1.871.4± 0.5
Unif-reg (入= 0.01)94.3 ±1.851.9 ± 2.073.1± 0.3
Unif-reg (入= 0.1)91.5 ±1.964.3 ±1.677.9 ± 0.4
Ours (HAR)93.1 ± 1.572.8±1.783.0 ± 0.3
", + "type": "table", + "image_path": "5e8422ac1ef554c31c234b247a9e25c04caa2cfebce4a0741772ae6e1ab7c16c.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 151, + 453, + 459, + 474.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 151, + 474.0, + 459, + 495.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 151, + 495.0, + 459, + 516.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 108, + 540, + 443, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 444, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 444, + 552 + ], + "score": 1.0, + "content": "C.2 EVALUATION ON CIFAR-100 WITH REAL-WORLD HETEROSKEDASTICITY", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 506, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "It is acknowledged that CIFAR-100 training set contains noisy examples. For instance, some “tiger”", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "examples are labeled as “leopard” (“tiger” is a defined class as well). There are also noisy examples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "that contain multiple objects, or are more ambiguous in terms of indentity (Song et al., 2020). We", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "find that HAR can improve over uniform regularization on the well-studied CIFAR-100 due to its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 605, + 336, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 336, + 617 + ], + "score": 1.0, + "content": "heteroskedasticity and the results are reported in Table 7.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "table", + "bbox": [ + 208, + 649, + 403, + 722 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 628, + 502, + 641 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 627, + 504, + 641 + ], + "spans": [ + { + "bbox": [ + 107, + 627, + 504, + 641 + ], + "score": 1.0, + "content": "Table 7: Top-1 validation accuracy (average over 3 runs) of ResNet-32 on the original CIFAR-100.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "table_body", + "bbox": [ + 208, + 649, + 403, + 722 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 208, + 649, + 403, + 722 + ], + "spans": [ + { + "bbox": [ + 208, + 649, + 403, + 722 + ], + "score": 0.979, + "html": "
Reg StrengthTrain AccVal Acc
096.0±0.169.8± 0.2
Unif-reg (入= 0.001)96.4± 0.170.0± 0.2
Unif-reg (入= 0.01)95.7 ± 0.170.6 ±0.1
Unif-reg (入= 0.1)88.8±0.170.5 ± 0.1
Adaptive (HAR)96.2 ± 0.171.4±0.1
", + "type": "table", + "image_path": "e0db088405f29470c79b8a73aed317d7d6c82174968cd58b8d000bd25d084a07.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 208, + 649, + 403, + 663.6 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 208, + 663.6, + 403, + 678.2 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 208, + 678.2, + 403, + 692.8000000000001 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 208, + 692.8000000000001, + 403, + 707.4000000000001 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 208, + 707.4000000000001, + 403, + 722.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 35.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "Implementation details for IMDB-review. We train a two-layer bidirectional LSTM (Huang et al.,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "2015) with 256 units followed with 0.5 dropout before the linear classifier. The network is trained", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 423, + 117 + ], + "score": 1.0, + "content": "for 20 epochs with Adam optimizer (Kingma & Ba, 2014). For HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 424, + 105, + 431, + 114 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "so that the largest", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 239, + 129 + ], + "score": 1.0, + "content": "enforced regularization strength", + "type": "text" + }, + { + "bbox": [ + 240, + 116, + 261, + 127 + ], + "score": 0.88, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 1 NVIDIA GeForce RTX", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 124, + 142, + 138 + ], + "spans": [ + { + "bbox": [ + 104, + 124, + 142, + 138 + ], + "score": 1.0, + "content": "2080 Ti.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 104, + 83, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 152, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "Implementation details for WebVision. We use the standard data augmentation same as (He et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "2016) including random crop and horizontal flip. For mini WebVision, We train the network for 90", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 174, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 186 + ], + "score": 1.0, + "content": "epochs using standard SGD with a batch size of 128. The initial learning rate is 0.1 and is annealed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 199 + ], + "score": 1.0, + "content": "by a factor of 10 at epoch 60 and 90. For full WebVision, We train the network for 50 epochs using", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "standard SGD with a batch size of 256. The initial learning rate is 0.1 and is annealed by a factor of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 332, + 219 + ], + "score": 1.0, + "content": "10 at epoch 30 and 40. For experiments of HAR, we tune", + "type": "text" + }, + { + "bbox": [ + 333, + 208, + 340, + 217 + ], + "score": 0.64, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "so that the largest enforced regularization", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 218, + 418, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 141, + 230 + ], + "score": 1.0, + "content": "strength", + "type": "text" + }, + { + "bbox": [ + 141, + 218, + 162, + 229 + ], + "score": 0.85, + "content": "( \\lambda \\tau _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 218, + 418, + 230 + ], + "score": 1.0, + "content": "is 0.1. We train each model with 8 NVIDIA Tesla V100 GPUs.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 152, + 506, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Runtime analysis. Because the pre-trained model only trains on half of the training data and is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "only done once, the run-time of HAR is at most twice of the time for ERM. Many baselines in our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 278 + ], + "score": 1.0, + "content": "paper use sophisticated pipelines and are slower than HAR. For example, INCV trains 2 models", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 291 + ], + "score": 1.0, + "content": "simultaneously for 4 times from random initialization to get a clean training set. MW-Net has a very", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 287, + 376, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 376, + 301 + ], + "score": 1.0, + "content": "slow convergence rate, which is a common issue for meta-learning.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 244, + 506, + 301 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 317, + 244, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 246, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 246, + 332 + ], + "score": 1.0, + "content": "C ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 343, + 386, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 388, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 388, + 356 + ], + "score": 1.0, + "content": "C.1 SIMULATING HETEROSKEDASTIC NOISE ON IMDB-REVIEW.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "IMDB-review dataset has a total of 50,000 (25,000 positive and 25,000 negative reviews) movie", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "reviews for binary sentiment classification (Maas et al., 2011). To simulate heteroskedastic noise for", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 387, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 291, + 400 + ], + "score": 1.0, + "content": "this binary classification problem, we project", + "type": "text" + }, + { + "bbox": [ + 291, + 387, + 307, + 398 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 387, + 505, + 400 + ], + "score": 1.0, + "content": "of the labels of negative reviews to positive, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 398, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 126, + 408 + ], + "score": 0.86, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 398, + 504, + 410 + ], + "score": 1.0, + "content": "in the reverse direction. Table 6 summarizes the results. The proposed HAR outperforms the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 408, + 357, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 357, + 421 + ], + "score": 1.0, + "content": "ERM baseline with various strength of uniform regularization.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 365, + 505, + 421 + ] + }, + { + "type": "table", + "bbox": [ + 151, + 453, + 459, + 516 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 432, + 503, + 444 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 431, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 505, + 445 + ], + "score": 1.0, + "content": "Table 6: Top-1 validation accuracy (averaged over 3 runs) on heteroskedastic IMDB-review dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "table_body", + "bbox": [ + 151, + 453, + 459, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 453, + 459, + 516 + ], + "spans": [ + { + "bbox": [ + 151, + 453, + 459, + 516 + ], + "score": 0.979, + "html": "
Reg StrengthAcc. of neg. reviewsAcc. of pos. reviewsMean Acc
091.9 ± 2.050.9 ±1.871.4± 0.5
Unif-reg (入= 0.01)94.3 ±1.851.9 ± 2.073.1± 0.3
Unif-reg (入= 0.1)91.5 ±1.964.3 ±1.677.9 ± 0.4
Ours (HAR)93.1 ± 1.572.8±1.783.0 ± 0.3
", + "type": "table", + "image_path": "5e8422ac1ef554c31c234b247a9e25c04caa2cfebce4a0741772ae6e1ab7c16c.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 151, + 453, + 459, + 474.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 151, + 474.0, + 459, + 495.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 151, + 495.0, + 459, + 516.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 25.0 + }, + { + "type": "text", + "bbox": [ + 108, + 540, + 443, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 444, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 444, + 552 + ], + "score": 1.0, + "content": "C.2 EVALUATION ON CIFAR-100 WITH REAL-WORLD HETEROSKEDASTICITY", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 539, + 444, + 552 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 506, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 507, + 573 + ], + "score": 1.0, + "content": "It is acknowledged that CIFAR-100 training set contains noisy examples. For instance, some “tiger”", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "examples are labeled as “leopard” (“tiger” is a defined class as well). There are also noisy examples", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "that contain multiple objects, or are more ambiguous in terms of indentity (Song et al., 2020). We", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 605 + ], + "score": 1.0, + "content": "find that HAR can improve over uniform regularization on the well-studied CIFAR-100 due to its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 605, + 336, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 336, + 617 + ], + "score": 1.0, + "content": "heteroskedasticity and the results are reported in Table 7.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 560, + 507, + 617 + ] + }, + { + "type": "table", + "bbox": [ + 208, + 649, + 403, + 722 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 628, + 502, + 641 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 627, + 504, + 641 + ], + "spans": [ + { + "bbox": [ + 107, + 627, + 504, + 641 + ], + "score": 1.0, + "content": "Table 7: Top-1 validation accuracy (average over 3 runs) of ResNet-32 on the original CIFAR-100.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "table_body", + "bbox": [ + 208, + 649, + 403, + 722 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 208, + 649, + 403, + 722 + ], + "spans": [ + { + "bbox": [ + 208, + 649, + 403, + 722 + ], + "score": 0.979, + "html": "
Reg StrengthTrain AccVal Acc
096.0±0.169.8± 0.2
Unif-reg (入= 0.001)96.4± 0.170.0± 0.2
Unif-reg (入= 0.01)95.7 ± 0.170.6 ±0.1
Unif-reg (入= 0.1)88.8±0.170.5 ± 0.1
Adaptive (HAR)96.2 ± 0.171.4±0.1
", + "type": "table", + "image_path": "e0db088405f29470c79b8a73aed317d7d6c82174968cd58b8d000bd25d084a07.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 208, + 649, + 403, + 663.6 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 208, + 663.6, + 403, + 678.2 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 208, + 678.2, + 403, + 692.8000000000001 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 208, + 692.8000000000001, + 403, + 707.4000000000001 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 208, + 707.4000000000001, + 403, + 722.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 35.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 107, + 103, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 107, + 103, + 505, + 114 + ], + "score": 1.0, + "content": "As mentioned in Section 3.1, we consider another variant of heteroskedastic and imbalanced dataset", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 115, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 107, + 115, + 505, + 126 + ], + "score": 1.0, + "content": "such that the rare classes have low noise level. To simulate this setting, we make the clean classes have", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 124, + 501, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 501, + 136 + ], + "score": 1.0, + "content": "fewer labels than the corrupted classes on the heteroskedastic CIFAR-10 we created in Section ??.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 154 + ], + "score": 1.0, + "content": "Table 8 summarizes the results. For the setting of imbalance ratio equals 10, INCV automatically", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 130, + 166 + ], + "score": 1.0, + "content": "drops", + "type": "text" + }, + { + "bbox": [ + 131, + 153, + 157, + 163 + ], + "score": 0.86, + "content": "34 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 151, + 505, + 166 + ], + "score": 1.0, + "content": "of examples from the clean and rare classes, which results in a decrease of mean accuracy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "on the rare and clean classes. HAR is able to achieve improvements on both noisy classes and rare", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 175, + 297, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 297, + 187 + ], + "score": 1.0, + "content": "classes by enforcing the optimal regularization.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "table", + "bbox": [ + 159, + 228, + 451, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 196, + 504, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "score": 1.0, + "content": "Table 8: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 202, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 202, + 219 + ], + "score": 1.0, + "content": "imbalanced CIFAR-10.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "table_body", + "bbox": [ + 159, + 228, + 451, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 228, + 451, + 356 + ], + "spans": [ + { + "bbox": [ + 159, + 228, + 451, + 356 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy Cls.Rare Cls.Noisy Cls.Rare Cls.
ERM59.9 ± 1.165.2 ± 0.760.4± 0.97.9 ± 1.3
Co-teaching63.1 ± 2.359.4 ± 1.453.8 ± 1.94.4±1.8
INCV74.5 ± 1.263.7 ± 0.868.3 ± 1.82.1 ±1.3
MentorNet67.3 ± 1.665.5 ± 1.263.3 ± 1.510.8 ±1.9
L2RW65.8 ±1.466.3 ± 1.262.4 ± 2.111.3 ± 2.9
MW-Net71.4± 0.667.7 ± 0.665.0± 1.613.5 ± 2.4
GCE64.6 ± 1.160.2 ± 1.371.2 ± 1.92.6±1.4
DMI72.3 ± 1.563.3 ±1.270.8 ±1.76.2 ±1.9
Ours (HAR)76.1 ± 0.872.1 ± 1.073.0 ± 1.626.1±0.8
", + "type": "table", + "image_path": "594c8ed960a196e922f1e8eecdcf757f4e39bc0335b2df40a0aa0695929b6376.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 159, + 228, + 451, + 270.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 159, + 270.6666666666667, + 451, + 313.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 313.33333333333337, + 451, + 356.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 8.75 + }, + { + "type": "title", + "bbox": [ + 106, + 375, + 433, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 435, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 435, + 387 + ], + "score": 1.0, + "content": "C.4 COMPARING THE EFFECT OF WEIGHTS ON LOSSES AND REGULARIZERS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 504, + 407 + ], + "score": 1.0, + "content": "As discussed in Section 4, we train several classifiers with alternative weights selection scheme which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "are not optimal. We consider the following two alternatives. (1) random: we draw the weights from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "a uniform distribution with the same mean as the weights of MW-Net and HAR. (2) inverse: we", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "take the inverse of the weights learned by MW-Net and HAR and then normalize them to ensure the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 439, + 356, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 356, + 453 + ], + "score": 1.0, + "content": "average reweighting/regularization strength remains the same.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 504, + 469 + ], + "score": 1.0, + "content": "We conducted experiments on the heteroskedastic CIFAR-10 introduced in Section ?? and the results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "are summarized in Table 9. We could conclude that changing the weights of the regularizer is a more", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 478, + 442, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 442, + 492 + ], + "score": 1.0, + "content": "conservative adaption and less susceptible to uncertain estimation than reweighting.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "table", + "bbox": [ + 190, + 531, + 417, + 640 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 500, + 504, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Table 9: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 511, + 250, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 250, + 524 + ], + "score": 1.0, + "content": "by changing the weighting scheme.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "table_body", + "bbox": [ + 190, + 531, + 417, + 640 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 190, + 531, + 417, + 640 + ], + "spans": [ + { + "bbox": [ + 190, + 531, + 417, + 640 + ], + "score": 0.979, + "html": "
MethodAvg. Noisy Cls.Avg. . Clean Cls.
ERM68.6±0.293.6 ± 0.2
Reweight (MW-Net)75.0 ± 0.394.4± 0.2
Reweight (random)62.1±0.592.9 ± 0.5
Reweight (inverse)13.1 ± 0.990.9 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1± 0.2
Adap-reg (HAR)80.7±0.394.5 ±0.2
Adap-reg (random)74.8 ± 0.494.2±0.2
Adap-reg (inverse)73.2 ± 0.594.0± 0.2
", + "type": "table", + "image_path": "233559ee95c0dfdc49b8e15f237a00e907ef5f5126428a1e8de37e94b59eb072.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 531, + 417, + 544.625 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 190, + 544.625, + 417, + 558.25 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 190, + 558.25, + 417, + 571.875 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 190, + 571.875, + 417, + 585.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 190, + 585.5, + 417, + 599.125 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 190, + 599.125, + 417, + 612.75 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 190, + 612.75, + 417, + 626.375 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 190, + 626.375, + 417, + 640.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 24.0 + }, + { + "type": "title", + "bbox": [ + 107, + 653, + 202, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 203, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 203, + 666 + ], + "score": 1.0, + "content": "C.5 VISUALIZATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "In order to better understand how the proposed HAR works on real-world heteroskedastic datasets,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 685, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 506, + 697 + ], + "score": 1.0, + "content": "we plot the per-class key statistics used by HAR and validation errors in Figure 4. We observe that", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 695, + 469, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 469, + 709 + ], + "score": 1.0, + "content": "HAR outperforms the tuned uniform regularization baseline on the majority of the classes.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 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": [ + 111, + 83, + 444, + 93 + ], + "lines": [ + { + "bbox": [ + 109, + 82, + 447, + 95 + ], + "spans": [ + { + "bbox": [ + 109, + 82, + 447, + 95 + ], + "score": 1.0, + "content": "C.3 SIMULATING HETEROSKEDASTIC AND IMBALANCED DATASETS ON CIFAR", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 107, + 103, + 505, + 114 + ], + "spans": [ + { + "bbox": [ + 107, + 103, + 505, + 114 + ], + "score": 1.0, + "content": "As mentioned in Section 3.1, we consider another variant of heteroskedastic and imbalanced dataset", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 115, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 107, + 115, + 505, + 126 + ], + "score": 1.0, + "content": "such that the rare classes have low noise level. To simulate this setting, we make the clean classes have", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 124, + 501, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 501, + 136 + ], + "score": 1.0, + "content": "fewer labels than the corrupted classes on the heteroskedastic CIFAR-10 we created in Section ??.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 103, + 505, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 154 + ], + "score": 1.0, + "content": "Table 8 summarizes the results. For the setting of imbalance ratio equals 10, INCV automatically", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 151, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 130, + 166 + ], + "score": 1.0, + "content": "drops", + "type": "text" + }, + { + "bbox": [ + 131, + 153, + 157, + 163 + ], + "score": 0.86, + "content": "34 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 151, + 505, + 166 + ], + "score": 1.0, + "content": "of examples from the clean and rare classes, which results in a decrease of mean accuracy", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "on the rare and clean classes. HAR is able to achieve improvements on both noisy classes and rare", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 175, + 297, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 297, + 187 + ], + "score": 1.0, + "content": "classes by enforcing the optimal regularization.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 142, + 505, + 187 + ] + }, + { + "type": "table", + "bbox": [ + 159, + 228, + 451, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 196, + 504, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 210 + ], + "score": 1.0, + "content": "Table 8: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 207, + 202, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 202, + 219 + ], + "score": 1.0, + "content": "imbalanced CIFAR-10.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "table_body", + "bbox": [ + 159, + 228, + 451, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 228, + 451, + 356 + ], + "spans": [ + { + "bbox": [ + 159, + 228, + 451, + 356 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy Cls.Rare Cls.Noisy Cls.Rare Cls.
ERM59.9 ± 1.165.2 ± 0.760.4± 0.97.9 ± 1.3
Co-teaching63.1 ± 2.359.4 ± 1.453.8 ± 1.94.4±1.8
INCV74.5 ± 1.263.7 ± 0.868.3 ± 1.82.1 ±1.3
MentorNet67.3 ± 1.665.5 ± 1.263.3 ± 1.510.8 ±1.9
L2RW65.8 ±1.466.3 ± 1.262.4 ± 2.111.3 ± 2.9
MW-Net71.4± 0.667.7 ± 0.665.0± 1.613.5 ± 2.4
GCE64.6 ± 1.160.2 ± 1.371.2 ± 1.92.6±1.4
DMI72.3 ± 1.563.3 ±1.270.8 ±1.76.2 ±1.9
Ours (HAR)76.1 ± 0.872.1 ± 1.073.0 ± 1.626.1±0.8
", + "type": "table", + "image_path": "594c8ed960a196e922f1e8eecdcf757f4e39bc0335b2df40a0aa0695929b6376.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 159, + 228, + 451, + 270.6666666666667 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 159, + 270.6666666666667, + 451, + 313.33333333333337 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 313.33333333333337, + 451, + 356.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 8.75 + }, + { + "type": "title", + "bbox": [ + 106, + 375, + 433, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 435, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 435, + 387 + ], + "score": 1.0, + "content": "C.4 COMPARING THE EFFECT OF WEIGHTS ON LOSSES AND REGULARIZERS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 395, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 504, + 407 + ], + "score": 1.0, + "content": "As discussed in Section 4, we train several classifiers with alternative weights selection scheme which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "are not optimal. We consider the following two alternatives. (1) random: we draw the weights from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "a uniform distribution with the same mean as the weights of MW-Net and HAR. (2) inverse: we", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "take the inverse of the weights learned by MW-Net and HAR and then normalize them to ensure the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 439, + 356, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 356, + 453 + ], + "score": 1.0, + "content": "average reweighting/regularization strength remains the same.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 396, + 506, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 490 + ], + "lines": [ + { + "bbox": [ + 106, + 456, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 504, + 469 + ], + "score": 1.0, + "content": "We conducted experiments on the heteroskedastic CIFAR-10 introduced in Section ?? and the results", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 481 + ], + "score": 1.0, + "content": "are summarized in Table 9. We could conclude that changing the weights of the regularizer is a more", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 478, + 442, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 442, + 492 + ], + "score": 1.0, + "content": "conservative adaption and less susceptible to uncertain estimation than reweighting.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 456, + 505, + 492 + ] + }, + { + "type": "table", + "bbox": [ + 190, + 531, + 417, + 640 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 104, + 500, + 504, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Table 9: Top-1 validation accuracy (averaged over 3 runs) of ResNet-32 on heteroskedastic CIFAR-10", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 511, + 250, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 250, + 524 + ], + "score": 1.0, + "content": "by changing the weighting scheme.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "table_body", + "bbox": [ + 190, + 531, + 417, + 640 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 190, + 531, + 417, + 640 + ], + "spans": [ + { + "bbox": [ + 190, + 531, + 417, + 640 + ], + "score": 0.979, + "html": "
MethodAvg. Noisy Cls.Avg. . Clean Cls.
ERM68.6±0.293.6 ± 0.2
Reweight (MW-Net)75.0 ± 0.394.4± 0.2
Reweight (random)62.1±0.592.9 ± 0.5
Reweight (inverse)13.1 ± 0.990.9 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1± 0.2
Adap-reg (HAR)80.7±0.394.5 ±0.2
Adap-reg (random)74.8 ± 0.494.2±0.2
Adap-reg (inverse)73.2 ± 0.594.0± 0.2
", + "type": "table", + "image_path": "233559ee95c0dfdc49b8e15f237a00e907ef5f5126428a1e8de37e94b59eb072.jpg" + } + ] + } + ], + "index": 26.5, + "virtual_lines": [ + { + "bbox": [ + 190, + 531, + 417, + 544.625 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 190, + 544.625, + 417, + 558.25 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 190, + 558.25, + 417, + 571.875 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 190, + 571.875, + 417, + 585.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 190, + 585.5, + 417, + 599.125 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 190, + 599.125, + 417, + 612.75 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 190, + 612.75, + 417, + 626.375 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 190, + 626.375, + 417, + 640.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 24.0 + }, + { + "type": "title", + "bbox": [ + 107, + 653, + 202, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 203, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 203, + 666 + ], + "score": 1.0, + "content": "C.5 VISUALIZATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 506, + 708 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 687 + ], + "score": 1.0, + "content": "In order to better understand how the proposed HAR works on real-world heteroskedastic datasets,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 685, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 506, + 697 + ], + "score": 1.0, + "content": "we plot the per-class key statistics used by HAR and validation errors in Figure 4. We observe that", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 695, + 469, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 469, + 709 + ], + "score": 1.0, + "content": "HAR outperforms the tuned uniform regularization baseline on the majority of the classes.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 672, + 506, + 709 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 233, + 502, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 233, + 502, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 233, + 502, + 545 + ], + "spans": [ + { + "bbox": [ + 110, + 233, + 502, + 545 + ], + "score": 0.972, + "type": "image", + "image_path": "c076753ebcd5b8f3da8f361db87212d171eb3c37ef46afdae950c98d61c3d805.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 233, + 502, + 337.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 337.0, + 502, + 441.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 441.0, + 502, + 545.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 555, + 506, + 579 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 556, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 506, + 568 + ], + "score": 1.0, + "content": "Figure 4: Visualizations of per-class top-1 error and regularization strength of HAR on mini WebVi-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 566, + 475, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 475, + 579 + ], + "score": 1.0, + "content": "sion dataset. The classes are sorted in the ascending order of applied regularization strength.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 233, + 502, + 545 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 233, + 502, + 545 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 233, + 502, + 545 + ], + "spans": [ + { + "bbox": [ + 110, + 233, + 502, + 545 + ], + "score": 0.972, + "type": "image", + "image_path": "c076753ebcd5b8f3da8f361db87212d171eb3c37ef46afdae950c98d61c3d805.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 233, + 502, + 337.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 337.0, + 502, + 441.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 441.0, + 502, + 545.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 555, + 506, + 579 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 556, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 506, + 568 + ], + "score": 1.0, + "content": "Figure 4: Visualizations of per-class top-1 error and regularization strength of HAR on mini WebVi-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 566, + 475, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 475, + 579 + ], + "score": 1.0, + "content": "sion dataset. The classes are sorted in the ascending order of applied regularization strength.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_model.json b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_model.json new file mode 100644 index 0000000000000000000000000000000000000000..441cded575891b1309a544d8bbf117a4fa6eeba7 --- /dev/null +++ b/parse/train/mEdwVCRJuX4/mEdwVCRJuX4_model.json @@ -0,0 +1,18969 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 624, + 1304, + 624, + 1304, + 1020, + 398, + 1020 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1148, + 1404, + 1148, + 1404, + 1455, + 298, + 1455 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1670, + 1403, + 1670, + 1403, + 1914, + 299, + 1914 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1470, + 1403, + 1470, + 1403, + 1655, + 299, + 1655 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 301, + 220, + 1406, + 220, + 1406, + 324, + 301, + 324 + ], + "score": 0.963 + }, + { + "category_id": 2, + "poly": [ + 297, + 1948, + 1404, + 1948, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 317, + 372, + 1344, + 372, + 1344, + 471, + 317, + 471 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 303, + 1078, + 573, + 1078, + 573, + 1112, + 303, + 1112 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 773, + 550, + 926, + 550, + 926, + 584, + 773, + 584 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.74 + }, + { + "category_id": 13, + "poly": [ + 565, + 1563, + 622, + 1563, + 622, + 1595, + 565, + 1595 + ], + "score": 0.9, + "latex": "y \\mid x" + }, + { + "category_id": 13, + "poly": [ + 826, + 1563, + 882, + 1563, + 882, + 1595, + 826, + 1595 + ], + "score": 0.88, + "latex": "y \\mid x" + }, + { + "category_id": 13, + "poly": [ + 730, + 374, + 778, + 374, + 778, + 406, + 730, + 406 + ], + "score": 0.83, + "latex": "\\mathbf { L } \\mathbf { u } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 453, + 1762, + 512, + 1762, + 512, + 1795, + 453, + 1795 + ], + "score": 0.77, + "latex": "y \\mid x" + }, + { + "category_id": 13, + "poly": [ + 394, + 374, + 454, + 374, + 454, + 406, + 394, + 406 + ], + "score": 0.71, + "latex": "\\mathbf { C a o ^ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1568, + 1165, + 1568, + 1165, + 1590, + 1146, + 1590 + ], + "score": 0.67, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 405, + 1707, + 419, + 1707, + 419, + 1728, + 405, + 1728 + ], + "score": 0.37, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 220.0, + 1411.0, + 220.0, + 1411.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 276.0, + 1112.0, + 276.0, + 1112.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1941.0, + 968.0, + 1941.0, + 968.0, + 1981.0, + 331.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2011.0, + 330.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 437.0, + 2003.0, + 437.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 579.0, + 1074.0, + 579.0, + 1119.0, + 294.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 549.0, + 932.0, + 549.0, + 932.0, + 587.0, + 769.0, + 587.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": [ + 394.0, + 625.0, + 1304.0, + 625.0, + 1304.0, + 658.0, + 394.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 655.0, + 1308.0, + 655.0, + 1308.0, + 688.0, + 393.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 687.0, + 1306.0, + 687.0, + 1306.0, + 719.0, + 395.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 713.0, + 1305.0, + 713.0, + 1305.0, + 753.0, + 393.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 746.0, + 1304.0, + 746.0, + 1304.0, + 783.0, + 393.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 777.0, + 1308.0, + 777.0, + 1308.0, + 812.0, + 393.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 808.0, + 1307.0, + 808.0, + 1307.0, + 843.0, + 393.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 837.0, + 1308.0, + 837.0, + 1308.0, + 872.0, + 393.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 870.0, + 1306.0, + 870.0, + 1306.0, + 905.0, + 393.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 901.0, + 1305.0, + 901.0, + 1305.0, + 933.0, + 395.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 929.0, + 1305.0, + 929.0, + 1305.0, + 962.0, + 394.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 959.0, + 1307.0, + 959.0, + 1307.0, + 994.0, + 394.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 988.0, + 1226.0, + 988.0, + 1226.0, + 1027.0, + 393.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1150.0, + 1405.0, + 1150.0, + 1405.0, + 1182.0, + 296.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1181.0, + 1404.0, + 1181.0, + 1404.0, + 1212.0, + 296.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 1406.0, + 1205.0, + 1406.0, + 1249.0, + 292.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1275.0, + 295.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 1404.0, + 1302.0, + 1404.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1333.0, + 1402.0, + 1333.0, + 1402.0, + 1365.0, + 296.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1364.0, + 1405.0, + 1364.0, + 1405.0, + 1396.0, + 296.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1429.0, + 294.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 845.0, + 1420.0, + 845.0, + 1461.0, + 293.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1702.0, + 297.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 404.0, + 1701.0, + 404.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1732.0, + 420.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1727.0, + 1407.0, + 1727.0, + 1407.0, + 1768.0, + 292.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 452.0, + 1762.0, + 452.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1762.0, + 1407.0, + 1762.0, + 1407.0, + 1796.0, + 513.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 536.0, + 1883.0, + 536.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1471.0, + 1404.0, + 1471.0, + 1404.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1536.0, + 293.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1529.0, + 1404.0, + 1529.0, + 1404.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 564.0, + 1561.0, + 564.0, + 1597.0, + 295.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1561.0, + 825.0, + 1561.0, + 825.0, + 1597.0, + 623.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1561.0, + 1145.0, + 1561.0, + 1145.0, + 1597.0, + 883.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1597.0, + 1166.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1593.0, + 1407.0, + 1593.0, + 1407.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1621.0, + 1079.0, + 1621.0, + 1079.0, + 1660.0, + 290.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 373.0, + 393.0, + 373.0, + 393.0, + 412.0, + 317.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 373.0, + 729.0, + 373.0, + 729.0, + 412.0, + 455.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 373.0, + 1346.0, + 373.0, + 1346.0, + 412.0, + 779.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 405.0, + 1091.0, + 405.0, + 1091.0, + 443.0, + 314.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 439.0, + 985.0, + 439.0, + 985.0, + 474.0, + 315.0, + 474.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1187, + 1404, + 1187, + 1404, + 1463, + 298, + 1463 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1479, + 1405, + 1479, + 1405, + 1694, + 299, + 1694 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 837, + 1404, + 837, + 1404, + 1173, + 298, + 1173 + ], + "score": 0.979 + }, + { + "category_id": 4, + "poly": [ + 825, + 624, + 1406, + 624, + 1406, + 778, + 825, + 778 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 624, + 799, + 624, + 799, + 777, + 296, + 777 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 301, + 1943, + 1403, + 1943, + 1403, + 2033, + 301, + 2033 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 302, + 231, + 789, + 231, + 789, + 593, + 302, + 593 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 840, + 235, + 1387, + 235, + 1387, + 594, + 840, + 594 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 299, + 1864, + 1401, + 1864, + 1401, + 1926, + 299, + 1926 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 303, + 1738, + 1272, + 1738, + 1272, + 1774, + 303, + 1774 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 299, + 1807, + 552, + 1807, + 552, + 1838, + 299, + 1838 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 811, + 76, + 811, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.693 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.158 + }, + { + "category_id": 15, + "poly": [ + 825.0, + 624.0, + 1407.0, + 624.0, + 1407.0, + 657.0, + 825.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 656.0, + 1408.0, + 656.0, + 1408.0, + 685.0, + 825.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 684.0, + 1409.0, + 684.0, + 1409.0, + 721.0, + 822.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 716.0, + 1406.0, + 716.0, + 1406.0, + 750.0, + 824.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 749.0, + 1152.0, + 749.0, + 1152.0, + 780.0, + 826.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 800.0, + 623.0, + 800.0, + 656.0, + 295.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 656.0, + 798.0, + 656.0, + 798.0, + 687.0, + 296.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 685.0, + 798.0, + 685.0, + 798.0, + 717.0, + 296.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 714.0, + 799.0, + 714.0, + 799.0, + 750.0, + 295.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 488.0, + 744.0, + 488.0, + 782.0, + 294.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 252.0, + 367.0, + 252.0, + 367.0, + 348.0, + 300.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 243.0, + 771.0, + 243.0, + 771.0, + 306.0, + 643.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 305.0, + 371.0, + 305.0, + 371.0, + 339.0, + 324.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 358.0, + 369.0, + 358.0, + 369.0, + 392.0, + 323.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 377.0, + 378.0, + 377.0, + 378.0, + 403.0, + 359.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 380.0, + 435.0, + 380.0, + 435.0, + 400.0, + 419.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 377.0, + 499.0, + 377.0, + 499.0, + 403.0, + 474.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 376.0, + 558.0, + 376.0, + 558.0, + 403.0, + 533.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 379.0, + 615.0, + 379.0, + 615.0, + 402.0, + 593.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 376.0, + 674.0, + 376.0, + 674.0, + 404.0, + 650.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 376.0, + 735.0, + 376.0, + 735.0, + 404.0, + 711.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 418.0, + 369.0, + 418.0, + 369.0, + 514.0, + 300.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 412.0, + 771.0, + 412.0, + 771.0, + 473.0, + 642.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 473.0, + 369.0, + 473.0, + 369.0, + 507.0, + 323.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 527.0, + 367.0, + 527.0, + 367.0, + 558.0, + 325.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 545.0, + 378.0, + 545.0, + 378.0, + 570.0, + 358.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 548.0, + 435.0, + 548.0, + 435.0, + 569.0, + 419.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 544.0, + 498.0, + 544.0, + 498.0, + 571.0, + 474.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 544.0, + 558.0, + 544.0, + 558.0, + 571.0, + 533.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 546.0, + 615.0, + 546.0, + 615.0, + 569.0, + 593.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 546.0, + 673.0, + 546.0, + 673.0, + 570.0, + 651.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 546.0, + 733.0, + 546.0, + 733.0, + 570.0, + 712.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 564.0, + 641.0, + 564.0, + 641.0, + 598.0, + 511.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 234.0, + 1117.0, + 234.0, + 1117.0, + 270.0, + 838.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 347.0, + 1084.0, + 347.0, + 1084.0, + 355.0, + 1075.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 463.0, + 1384.0, + 463.0, + 1384.0, + 495.0, + 1144.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 508.0, + 1138.0, + 508.0, + 1138.0, + 516.0, + 1130.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 490.0, + 1350.0, + 490.0, + 1350.0, + 527.0, + 1194.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 538.0, + 1388.0, + 538.0, + 1388.0, + 571.0, + 1042.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1736.0, + 1277.0, + 1736.0, + 1277.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 555.0, + 1804.0, + 555.0, + 1843.0, + 293.0, + 1843.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, + 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, + 1187.0, + 1404.0, + 1187.0, + 1404.0, + 1222.0, + 294.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1219.0, + 1405.0, + 1219.0, + 1405.0, + 1252.0, + 296.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1241.0, + 1409.0, + 1241.0, + 1409.0, + 1291.0, + 290.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1309.0, + 1406.0, + 1309.0, + 1406.0, + 1345.0, + 293.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1341.0, + 1404.0, + 1341.0, + 1404.0, + 1376.0, + 293.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1371.0, + 1406.0, + 1371.0, + 1406.0, + 1406.0, + 293.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 1404.0, + 1401.0, + 1404.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1432.0, + 701.0, + 1432.0, + 701.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1514.0, + 294.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 1409.0, + 1510.0, + 1409.0, + 1545.0, + 295.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1541.0, + 1406.0, + 1541.0, + 1406.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 1407.0, + 1572.0, + 1407.0, + 1606.0, + 295.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1632.0, + 1406.0, + 1632.0, + 1406.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1365.0, + 1662.0, + 1365.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 837.0, + 1404.0, + 837.0, + 1404.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 864.0, + 1405.0, + 864.0, + 1405.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 933.0, + 292.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 928.0, + 1406.0, + 928.0, + 1406.0, + 963.0, + 294.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 954.0, + 1405.0, + 954.0, + 1405.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1022.0, + 294.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1020.0, + 1406.0, + 1020.0, + 1406.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1048.0, + 1405.0, + 1048.0, + 1405.0, + 1087.0, + 293.0, + 1087.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": [ + 296.0, + 1113.0, + 1405.0, + 1113.0, + 1405.0, + 1144.0, + 296.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1140.0, + 1396.0, + 1140.0, + 1396.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 297.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 1408.0, + 1973.0, + 1408.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1903.0, + 293.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 1064.0, + 1895.0, + 1064.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1013, + 1405, + 1013, + 1405, + 1200, + 297, + 1200 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1213, + 1407, + 1213, + 1407, + 1436, + 296, + 1436 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1840, + 1405, + 1840, + 1405, + 1944, + 298, + 1944 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 842, + 223, + 1389, + 223, + 1389, + 651, + 842, + 651 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 314, + 245, + 820, + 245, + 820, + 660, + 314, + 660 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 471, + 1739, + 1227, + 1739, + 1227, + 1825, + 471, + 1825 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 604, + 897, + 1095, + 897, + 1095, + 983, + 604, + 983 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 493, + 1961, + 1206, + 1961, + 1206, + 2032, + 493, + 2032 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 607, + 1608, + 1090, + 1608, + 1090, + 1678, + 607, + 1678 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 737, + 1401, + 737, + 1401, + 802, + 296, + 802 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1526, + 1403, + 1526, + 1403, + 1592, + 295, + 1592 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 816, + 1402, + 816, + 1402, + 880, + 296, + 880 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1689, + 1147, + 1689, + 1147, + 1724, + 296, + 1724 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 922, + 1400, + 922, + 1400, + 953, + 1366, + 953 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1765, + 1400, + 1765, + 1400, + 1796, + 1366, + 1796 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1625, + 1401, + 1625, + 1401, + 1654, + 1365, + 1654 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 295, + 1469, + 1378, + 1469, + 1378, + 1504, + 295, + 1504 + ], + "score": 0.694 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.676 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.496 + }, + { + "category_id": 1, + "poly": [ + 295, + 1469, + 1378, + 1469, + 1378, + 1504, + 295, + 1504 + ], + "score": 0.284 + }, + { + "category_id": 13, + "poly": [ + 345, + 1372, + 500, + 1372, + 500, + 1405, + 345, + 1405 + ], + "score": 0.95, + "latex": "\\Dot { \\xi } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } )" + }, + { + "category_id": 14, + "poly": [ + 471, + 1735, + 1227, + 1735, + 1227, + 1828, + 471, + 1828 + ], + "score": 0.94, + "latex": "\\widehat { f } = \\mathrm { a r g m i n } _ { f } \\widehat { L } ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int _ { 0 } ^ { 1 } \\rho ( x ) ( f ^ { \\prime } ( x ) ) ^ { 2 } d x ," + }, + { + "category_id": 14, + "poly": [ + 607, + 1604, + 1091, + 1604, + 1091, + 1678, + 607, + 1678 + ], + "score": 0.94, + "latex": "\\operatorname* { P r } \\left[ Y = y | X = x \\right] = { \\frac { 1 } { 1 + \\exp ( - y f ^ { \\star } ( x ) ) } } ." + }, + { + "category_id": 14, + "poly": [ + 603, + 894, + 1096, + 894, + 1096, + 985, + 603, + 985 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { f } { \\ } { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\int ( f ^ { \\prime } ( x ) ) ^ { 2 } d x" + }, + { + "category_id": 14, + "poly": [ + 491, + 1958, + 1206, + 1958, + 1206, + 2031, + 491, + 2031 + ], + "score": 0.93, + "latex": "I ( x ) = { \\frac { 1 } { ( 1 + \\exp ( f ^ { \\star } ( x ) ) ( 1 + \\exp ( - f ^ { \\star } ( x ) ) } } = \\mathrm { V a r } ( Y | X = x ) ." + }, + { + "category_id": 13, + "poly": [ + 842, + 1338, + 1008, + 1338, + 1008, + 1375, + 842, + 1375 + ], + "score": 0.93, + "latex": "y _ { i } = x _ { i } ^ { \\top } \\theta ^ { * } + \\xi" + }, + { + "category_id": 13, + "poly": [ + 576, + 816, + 724, + 816, + 724, + 852, + 576, + 852 + ], + "score": 0.93, + "latex": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1842, + 744, + 1842, + 744, + 1876, + 374, + 1876 + ], + "score": 0.93, + "latex": "\\ell ( a , y ) = - \\log ( 1 + \\exp ( - y a ) )" + }, + { + "category_id": 13, + "poly": [ + 811, + 1842, + 865, + 1842, + 865, + 1876, + 811, + 1876 + ], + "score": 0.93, + "latex": "\\rho ( x )" + }, + { + "category_id": 13, + "poly": [ + 964, + 1370, + 1191, + 1370, + 1191, + 1405, + 964, + 1405 + ], + "score": 0.92, + "latex": "\\lambda _ { o p t } = d \\sigma ^ { 2 } / \\bar { n } \\| \\theta ^ { * } \\| _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1528, + 1398, + 1528, + 1398, + 1562, + 1250, + 1562 + ], + "score": 0.92, + "latex": "\\mathcal { V } = \\{ - 1 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1528, + 1202, + 1528, + 1202, + 1561, + 1027, + 1561 + ], + "score": 0.92, + "latex": "\\mathcal { X } = [ 0 , 1 ] \\subset \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 813, + 1908, + 893, + 1908, + 893, + 1942, + 813, + 1942 + ], + "score": 0.91, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 622, + 1341, + 702, + 1341, + 702, + 1373, + 622, + 1373 + ], + "score": 0.91, + "latex": "y _ { i } \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1339, + 369, + 1339, + 369, + 1375, + 298, + 1375 + ], + "score": 0.91, + "latex": "\\lambda \\| \\theta \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 848, + 429, + 848, + 429, + 875, + 298, + 875 + ], + "score": 0.91, + "latex": "\\mathcal { F } : \\mathbb { R } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1906, + 727, + 1906, + 727, + 1945, + 297, + 1945 + ], + "score": 0.9, + "latex": "I ( x ) \\triangleq \\mathbb { E } [ \\nabla _ { a } ^ { 2 } \\ell ( a , Y ) | _ { a = f ^ { \\star } ( X ) } | X = x ]" + }, + { + "category_id": 13, + "poly": [ + 664, + 1876, + 717, + 1876, + 717, + 1907, + 664, + 1907 + ], + "score": 0.89, + "latex": "I ( x )" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1561, + 1162, + 1561, + 1162, + 1592, + 1132, + 1592 + ], + "score": 0.89, + "latex": "f ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1303, + 1409, + 1303, + 1409, + 1342, + 1085, + 1342 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\operatorname* { m i n } _ { \\theta } \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } { ( x _ { i } ^ { \\top } \\theta - y _ { i } ) ^ { 2 } } + } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 490, + 1338, + 574, + 1338, + 574, + 1371, + 490, + 1371 + ], + "score": 0.84, + "latex": "\\theta \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 524, + 1561, + 552, + 1561, + 552, + 1587, + 524, + 1587 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1342, + 1396, + 1342, + 1396, + 1370, + 1367, + 1370 + ], + "score": 0.83, + "latex": "\\theta ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1561, + 453, + 1561, + 453, + 1587, + 428, + 1587 + ], + "score": 0.82, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 588, + 1881, + 606, + 1881, + 606, + 1901, + 588, + 1901 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 452, + 1343, + 481, + 1343, + 481, + 1371, + 452, + 1371 + ], + "score": 0.6, + "latex": "x _ { i }" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 224.0, + 1389.0, + 224.0, + 1389.0, + 258.0, + 841.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 254.0, + 1388.0, + 254.0, + 1388.0, + 286.0, + 842.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 283.0, + 1387.0, + 283.0, + 1387.0, + 319.0, + 842.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 316.0, + 1390.0, + 316.0, + 1390.0, + 348.0, + 841.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 345.0, + 1393.0, + 345.0, + 1393.0, + 378.0, + 841.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 377.0, + 1389.0, + 377.0, + 1389.0, + 409.0, + 842.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 407.0, + 1391.0, + 407.0, + 1391.0, + 439.0, + 842.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 438.0, + 1390.0, + 438.0, + 1390.0, + 470.0, + 842.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 467.0, + 1389.0, + 467.0, + 1389.0, + 501.0, + 841.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 498.0, + 1389.0, + 498.0, + 1389.0, + 532.0, + 841.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 529.0, + 1390.0, + 529.0, + 1390.0, + 561.0, + 841.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 559.0, + 1394.0, + 559.0, + 1394.0, + 593.0, + 841.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 589.0, + 1390.0, + 589.0, + 1390.0, + 623.0, + 841.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 617.0, + 1349.0, + 617.0, + 1349.0, + 656.0, + 840.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 258.0, + 510.0, + 258.0, + 510.0, + 285.0, + 378.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 280.0, + 519.0, + 280.0, + 519.0, + 316.0, + 376.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 306.0, + 529.0, + 306.0, + 529.0, + 344.0, + 376.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 337.0, + 539.0, + 337.0, + 539.0, + 369.0, + 377.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 433.0, + 712.0, + 433.0, + 712.0, + 440.0, + 703.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 560.0, + 692.0, + 560.0, + 692.0, + 571.0, + 678.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1382.0, + 1468.0, + 1382.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1014.0, + 1403.0, + 1014.0, + 1403.0, + 1046.0, + 296.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 1405.0, + 1042.0, + 1405.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1110.0, + 294.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1108.0, + 1406.0, + 1108.0, + 1406.0, + 1140.0, + 295.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1133.0, + 1406.0, + 1133.0, + 1406.0, + 1171.0, + 294.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 974.0, + 1165.0, + 974.0, + 1204.0, + 294.0, + 1204.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": [ + 294.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1278.0, + 294.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1309.0, + 294.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1290.0, + 1084.0, + 1290.0, + 1084.0, + 1354.0, + 286.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1410.0, + 1290.0, + 1415.0, + 1290.0, + 1415.0, + 1354.0, + 1410.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1336.0, + 297.0, + 1336.0, + 297.0, + 1379.0, + 294.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1336.0, + 451.0, + 1336.0, + 451.0, + 1379.0, + 370.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 1336.0, + 489.0, + 1336.0, + 489.0, + 1379.0, + 482.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1336.0, + 621.0, + 1336.0, + 621.0, + 1379.0, + 575.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1336.0, + 841.0, + 1336.0, + 841.0, + 1379.0, + 703.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1336.0, + 1366.0, + 1336.0, + 1366.0, + 1379.0, + 1009.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1336.0, + 1409.0, + 1336.0, + 1409.0, + 1379.0, + 1397.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1369.0, + 344.0, + 1369.0, + 344.0, + 1408.0, + 294.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1369.0, + 963.0, + 1369.0, + 963.0, + 1408.0, + 501.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1369.0, + 1408.0, + 1369.0, + 1408.0, + 1408.0, + 1192.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 1354.0, + 1401.0, + 1354.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1840.0, + 373.0, + 1840.0, + 373.0, + 1879.0, + 293.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1840.0, + 810.0, + 1840.0, + 810.0, + 1879.0, + 745.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1840.0, + 1406.0, + 1840.0, + 1406.0, + 1879.0, + 866.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1872.0, + 587.0, + 1872.0, + 587.0, + 1909.0, + 293.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1872.0, + 663.0, + 1872.0, + 663.0, + 1909.0, + 607.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1872.0, + 1408.0, + 1872.0, + 1408.0, + 1909.0, + 718.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1902.0, + 296.0, + 1902.0, + 296.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1902.0, + 812.0, + 1902.0, + 812.0, + 1947.0, + 728.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1902.0, + 1354.0, + 1902.0, + 1354.0, + 1947.0, + 894.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 737.0, + 1406.0, + 737.0, + 1406.0, + 773.0, + 296.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 768.0, + 1090.0, + 768.0, + 1090.0, + 806.0, + 295.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 1026.0, + 1521.0, + 1026.0, + 1566.0, + 293.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1521.0, + 1249.0, + 1521.0, + 1249.0, + 1566.0, + 1203.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1521.0, + 1409.0, + 1521.0, + 1409.0, + 1566.0, + 1399.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1558.0, + 427.0, + 1558.0, + 427.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1558.0, + 523.0, + 1558.0, + 523.0, + 1594.0, + 454.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1558.0, + 1131.0, + 1558.0, + 1131.0, + 1594.0, + 553.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1558.0, + 1215.0, + 1558.0, + 1215.0, + 1594.0, + 1163.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 813.0, + 575.0, + 813.0, + 575.0, + 857.0, + 294.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 813.0, + 1407.0, + 813.0, + 1407.0, + 857.0, + 725.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 843.0, + 297.0, + 843.0, + 297.0, + 884.0, + 294.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 843.0, + 1394.0, + 843.0, + 1394.0, + 884.0, + 430.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 1149.0, + 1684.0, + 1149.0, + 1731.0, + 293.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1382.0, + 1468.0, + 1382.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 827, + 1407, + 827, + 1407, + 1043, + 296, + 1043 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 295, + 1146, + 1407, + 1146, + 1407, + 1479, + 295, + 1479 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 449, + 1408, + 449, + 1408, + 607, + 297, + 607 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1825, + 1405, + 1825, + 1405, + 1987, + 297, + 1987 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1492, + 1402, + 1492, + 1402, + 1587, + 297, + 1587 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1688, + 1399, + 1688, + 1399, + 1751, + 298, + 1751 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 596, + 350, + 1102, + 350, + 1102, + 431, + 596, + 431 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 524, + 1595, + 1174, + 1595, + 1174, + 1681, + 524, + 1681 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 290, + 609, + 1402, + 609, + 1402, + 684, + 290, + 684 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1402, + 228, + 1402, + 295, + 295, + 295 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 635, + 1757, + 1064, + 1757, + 1064, + 1806, + 635, + 1806 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 416, + 692, + 1284, + 692, + 1284, + 770, + 416, + 770 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 367, + 1049, + 1322, + 1049, + 1322, + 1139, + 367, + 1139 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 301, + 306, + 1212, + 306, + 1212, + 342, + 301, + 342 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 814, + 74, + 814, + 106, + 299, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 299, + 774, + 961, + 774, + 961, + 807, + 299, + 807 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1620, + 1400, + 1620, + 1400, + 1651, + 1365, + 1651 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1365, + 372, + 1401, + 372, + 1401, + 402, + 1365, + 402 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 315, + 2003, + 1399, + 2003, + 1399, + 2036, + 315, + 2036 + ], + "score": 0.481 + }, + { + "category_id": 2, + "poly": [ + 315, + 2003, + 1399, + 2003, + 1399, + 2036, + 315, + 2036 + ], + "score": 0.461 + }, + { + "category_id": 14, + "poly": [ + 522, + 1590, + 1175, + 1590, + 1175, + 1683, + 522, + 1683 + ], + "score": 0.94, + "latex": "{ \\mathrm { m i n i m i z e } } _ { f } L ( f ) \\triangleq { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } \\tau _ { i } f ^ { \\prime } ( x _ { i } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 585, + 1371, + 971, + 1371, + 971, + 1454, + 585, + 1454 + ], + "score": 0.94, + "latex": "\\rho _ { j } \\propto \\left[ \\frac { q _ { j } ^ { - 1 / 2 } I _ { j } ^ { - 1 / 2 } } { q _ { j } ^ { - 2 } I _ { j } ^ { - 2 } } \\right] ^ { 2 / 5 } = q _ { j } ^ { 3 / 5 } I _ { j } ^ { 3 / 5 }" + }, + { + "category_id": 14, + "poly": [ + 595, + 346, + 1102, + 346, + 1102, + 429, + 595, + 429 + ], + "score": 0.94, + "latex": "\\operatorname { M S E } ( \\hat { f } ) \\triangleq \\operatorname * { \\mathbb { E } } _ { \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n } } \\int _ { 0 } ^ { 1 } ( \\hat { f } ( t ) - f ^ { \\star } ( t ) ) ^ { 2 } d t" + }, + { + "category_id": 13, + "poly": [ + 442, + 648, + 597, + 648, + 597, + 683, + 442, + 683 + ], + "score": 0.93, + "latex": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }" + }, + { + "category_id": 13, + "poly": [ + 658, + 261, + 764, + 261, + 764, + 295, + 658, + 295 + ], + "score": 0.93, + "latex": "I ( x ) = 0" + }, + { + "category_id": 13, + "poly": [ + 1232, + 482, + 1398, + 482, + 1398, + 517, + 1232, + 517 + ], + "score": 0.93, + "latex": "f ^ { \\prime \\prime } \\in L ^ { 2 } [ 0 , 1 ] \\}" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1304, + 1374, + 1304, + 1374, + 1348, + 1275, + 1348 + ], + "score": 0.93, + "latex": "\\textstyle { \\frac { d ^ { 2 } } { d t ^ { 2 } } } f ^ { \\star } ( t )" + }, + { + "category_id": 13, + "poly": [ + 478, + 1312, + 588, + 1312, + 588, + 1346, + 478, + 1346 + ], + "score": 0.93, + "latex": "q ( t ) = q _ { j }" + }, + { + "category_id": 14, + "poly": [ + 412, + 689, + 1287, + 689, + 1287, + 771, + 412, + 771 + ], + "score": 0.93, + "latex": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1889, + 1192, + 1889, + 1192, + 1922, + 1115, + 1922 + ], + "score": 0.93, + "latex": "\\ell ( a , y )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1917, + 543, + 1917, + 543, + 1952, + 297, + 1952 + ], + "score": 0.93, + "latex": "\\ell ( y , a ) = 0 . 5 ( y - a ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1311, + 989, + 1311, + 989, + 1346, + 833, + 1346 + ], + "score": 0.93, + "latex": "t \\in [ a _ { j } , a _ { j + 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 586, + 610, + 745, + 610, + 745, + 646, + 586, + 646 + ], + "score": 0.93, + "latex": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1688, + 570, + 1688, + 570, + 1723, + 398, + 1723 + ], + "score": 0.92, + "latex": "x _ { i } \\in [ a _ { j } , a _ { j + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 800, + 611, + 1044, + 611, + 1044, + 647, + 800, + 647 + ], + "score": 0.92, + "latex": "r ( t ) = - 1 / ( q ( t ) I ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 641, + 1311, + 752, + 1311, + 752, + 1346, + 641, + 1346 + ], + "score": 0.92, + "latex": "I ( t ) = I _ { j }" + }, + { + "category_id": 14, + "poly": [ + 633, + 1755, + 1066, + 1755, + 1066, + 1807, + 633, + 1807 + ], + "score": 0.92, + "latex": "\\tau _ { i } = I _ { j } ^ { 3 / 5 } q _ { j } ^ { - 2 / 5 } = I ( x _ { i } ) ^ { 3 / 5 } q ( x _ { i } ) ^ { - 2 / 5 } ." + }, + { + "category_id": 13, + "poly": [ + 1114, + 1273, + 1224, + 1273, + 1224, + 1308, + 1114, + 1308 + ], + "score": 0.92, + "latex": "[ a _ { j } , a _ { j + 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 736, + 1858, + 813, + 1858, + 813, + 1890, + 736, + 1890 + ], + "score": 0.92, + "latex": "\\ell ( a , y )" + }, + { + "category_id": 13, + "poly": [ + 1131, + 920, + 1243, + 920, + 1243, + 954, + 1131, + 954 + ], + "score": 0.92, + "latex": "[ a _ { j } , a _ { j + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 807, + 484, + 926, + 484, + 926, + 517, + 807, + 517 + ], + "score": 0.92, + "latex": "W _ { 2 } ^ { 2 } = \\{ f ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 997, + 307, + 1145, + 307, + 1145, + 343, + 997, + 343 + ], + "score": 0.92, + "latex": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 409, + 860, + 463, + 860, + 463, + 893, + 409, + 893 + ], + "score": 0.92, + "latex": "\\rho ( x )" + }, + { + "category_id": 13, + "poly": [ + 804, + 1919, + 909, + 1919, + 909, + 1952, + 804, + 1952 + ], + "score": 0.92, + "latex": "I ( x ) = 1" + }, + { + "category_id": 13, + "poly": [ + 624, + 1949, + 795, + 1949, + 795, + 1986, + 624, + 1986 + ], + "score": 0.92, + "latex": "\\tau _ { i } = q ( x _ { i } ) ^ { - 2 / 5 }" + }, + { + "category_id": 13, + "poly": [ + 426, + 230, + 480, + 230, + 480, + 264, + 426, + 264 + ], + "score": 0.92, + "latex": "I ( x )" + }, + { + "category_id": 14, + "poly": [ + 367, + 1045, + 1329, + 1045, + 1329, + 1143, + 367, + 1143 + ], + "score": 0.91, + "latex": "\\underset { n \\infty } { \\operatorname* { l i m } } \\mathrm { M S E } ( \\hat { f } ) = \\sum _ { j } [ \\rho _ { j } ^ { 2 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) [ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) ] ^ { 2 } d t + \\rho _ { j } ^ { - 1 / 2 } L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 1 / 2 } ( t ) d t ] ." + }, + { + "category_id": 13, + "poly": [ + 1051, + 1215, + 1103, + 1215, + 1103, + 1249, + 1051, + 1249 + ], + "score": 0.91, + "latex": "q ( x )" + }, + { + "category_id": 13, + "poly": [ + 528, + 982, + 635, + 982, + 635, + 1015, + 528, + 1015 + ], + "score": 0.91, + "latex": "[ a _ { i } , a _ { i + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1098, + 609, + 1399, + 609, + 1399, + 652, + 1098, + 652 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 745, + 1274, + 794, + 1274, + 794, + 1307, + 745, + 1307 + ], + "score": 0.91, + "latex": "I ( t )" + }, + { + "category_id": 13, + "poly": [ + 644, + 514, + 697, + 514, + 697, + 546, + 644, + 546 + ], + "score": 0.91, + "latex": "q ( x )" + }, + { + "category_id": 13, + "poly": [ + 858, + 452, + 912, + 452, + 912, + 484, + 858, + 484 + ], + "score": 0.91, + "latex": "\\rho ( x )" + }, + { + "category_id": 13, + "poly": [ + 1228, + 952, + 1276, + 952, + 1276, + 984, + 1228, + 984 + ], + "score": 0.91, + "latex": "\\rho ( t )" + }, + { + "category_id": 13, + "poly": [ + 718, + 1154, + 836, + 1154, + 836, + 1181, + 718, + 1181 + ], + "score": 0.91, + "latex": "\\rho _ { 1 } , \\ldots , \\rho _ { k }" + }, + { + "category_id": 13, + "poly": [ + 648, + 1274, + 695, + 1274, + 695, + 1307, + 648, + 1307 + ], + "score": 0.91, + "latex": "q ( t )" + }, + { + "category_id": 13, + "poly": [ + 807, + 652, + 892, + 652, + 892, + 683, + 807, + 683 + ], + "score": 0.91, + "latex": "C _ { 0 } > 0" + }, + { + "category_id": 13, + "poly": [ + 964, + 1693, + 1075, + 1693, + 1075, + 1722, + 964, + 1722 + ], + "score": 0.91, + "latex": "\\tau _ { i } q _ { j } = \\rho _ { j }" + }, + { + "category_id": 13, + "poly": [ + 588, + 545, + 634, + 545, + 634, + 578, + 588, + 578 + ], + "score": 0.9, + "latex": "\\rho ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1350, + 862, + 1403, + 862, + 1403, + 893, + 1350, + 893 + ], + "score": 0.9, + "latex": "\\rho ( x )" + }, + { + "category_id": 13, + "poly": [ + 470, + 263, + 551, + 263, + 551, + 290, + 470, + 290 + ], + "score": 0.9, + "latex": "X = x" + }, + { + "category_id": 13, + "poly": [ + 968, + 1216, + 1000, + 1216, + 1000, + 1248, + 968, + 1248 + ], + "score": 0.89, + "latex": "f ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 534, + 775, + 571, + 775, + 571, + 805, + 534, + 805 + ], + "score": 0.88, + "latex": "C _ { n }" + }, + { + "category_id": 13, + "poly": [ + 727, + 1693, + 752, + 1693, + 752, + 1719, + 727, + 1719 + ], + "score": 0.86, + "latex": "\\tau _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1338, + 1150, + 1403, + 1150, + 1403, + 1183, + 1338, + 1183 + ], + "score": 0.85, + "latex": "\\rho _ { j } =" + }, + { + "category_id": 13, + "poly": [ + 617, + 920, + 984, + 920, + 984, + 954, + 617, + 954 + ], + "score": 0.85, + "latex": "[ a _ { 0 } , a _ { 1 } ) , \\bar { [ } a _ { 1 } , a _ { 2 } ) , \\cdot \\cdot \\cdot , [ a _ { k - 1 } , a _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 581, + 515, + 609, + 515, + 609, + 542, + 581, + 542 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 759, + 986, + 785, + 986, + 785, + 1014, + 759, + 1014 + ], + "score": 0.84, + "latex": "\\rho _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1168, + 987, + 1187, + 987, + 1187, + 1014, + 1168, + 1014 + ], + "score": 0.81, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 513, + 922, + 533, + 922, + 533, + 948, + 513, + 948 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 302, + 1179, + 627, + 1179, + 627, + 1277, + 302, + 1277 + ], + "score": 0.78, + "latex": "\\left[ \\frac { L _ { 0 } \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ( t ) ^ { 1 / 2 } d t } { 4 \\int _ { a _ { j } } ^ { a _ { j + 1 } } r ^ { 2 } ( t ) \\left[ \\frac { d ^ { 2 } } { d t ^ { 2 } } f ^ { \\star } ( t ) \\right] ^ { 2 } d t } \\right] ^ { 2 / }" + }, + { + "category_id": 13, + "poly": [ + 914, + 237, + 933, + 237, + 933, + 258, + 914, + 258 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1188, + 232, + 1215, + 232, + 1215, + 258, + 1188, + 258 + ], + "score": 0.75, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 618, + 921, + 704, + 921, + 704, + 953, + 618, + 953 + ], + "score": 0.71, + "latex": "[ a _ { 0 } , a _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 934, + 783, + 953, + 783, + 953, + 802, + 934, + 802 + ], + "score": 0.55, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 837.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2039.0, + 332.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 829.0, + 1404.0, + 829.0, + 1404.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 408.0, + 860.0, + 408.0, + 894.0, + 295.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 860.0, + 1349.0, + 860.0, + 1349.0, + 894.0, + 464.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 892.0, + 1403.0, + 892.0, + 1403.0, + 923.0, + 296.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 918.0, + 512.0, + 918.0, + 512.0, + 960.0, + 293.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 918.0, + 616.0, + 918.0, + 616.0, + 960.0, + 534.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 918.0, + 1130.0, + 918.0, + 1130.0, + 960.0, + 985.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 918.0, + 1408.0, + 918.0, + 1408.0, + 960.0, + 1244.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 951.0, + 1227.0, + 951.0, + 1227.0, + 986.0, + 295.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 951.0, + 1405.0, + 951.0, + 1405.0, + 986.0, + 1277.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 981.0, + 527.0, + 981.0, + 527.0, + 1019.0, + 293.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 981.0, + 758.0, + 981.0, + 758.0, + 1019.0, + 636.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 981.0, + 1167.0, + 981.0, + 1167.0, + 1019.0, + 786.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 981.0, + 1407.0, + 981.0, + 1407.0, + 1019.0, + 1188.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 640.0, + 1010.0, + 640.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1141.0, + 717.0, + 1141.0, + 717.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1141.0, + 1337.0, + 1141.0, + 1337.0, + 1188.0, + 837.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1141.0, + 1407.0, + 1141.0, + 1407.0, + 1188.0, + 1404.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1176.0, + 645.0, + 1176.0, + 645.0, + 1210.0, + 628.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1212.0, + 967.0, + 1212.0, + 967.0, + 1252.0, + 639.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1212.0, + 1050.0, + 1212.0, + 1050.0, + 1252.0, + 1001.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1252.0, + 1104.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1272.0, + 647.0, + 1272.0, + 647.0, + 1310.0, + 296.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1272.0, + 744.0, + 1272.0, + 744.0, + 1310.0, + 696.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1272.0, + 1113.0, + 1272.0, + 1113.0, + 1310.0, + 795.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1272.0, + 1408.0, + 1272.0, + 1408.0, + 1310.0, + 1225.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1302.0, + 477.0, + 1302.0, + 477.0, + 1360.0, + 281.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1302.0, + 640.0, + 1302.0, + 640.0, + 1360.0, + 589.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1302.0, + 832.0, + 1302.0, + 832.0, + 1360.0, + 753.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1302.0, + 1274.0, + 1302.0, + 1274.0, + 1360.0, + 990.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1302.0, + 1416.0, + 1302.0, + 1416.0, + 1360.0, + 1375.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1342.0, + 1406.0, + 1342.0, + 1406.0, + 1376.0, + 296.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1393.0, + 584.0, + 1393.0, + 584.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1443.0, + 431.0, + 1443.0, + 431.0, + 1482.0, + 292.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1222.5, + 465.0, + 1222.5, + 465.0, + 1280.5, + 300.0, + 1280.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.25, + 1361.0, + 854.25, + 1361.0, + 854.25, + 1428.0, + 661.25, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1385.0, + 1409.0, + 1385.0, + 1409.0, + 1440.5, + 869.0, + 1440.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1403.0, + 899.0, + 1403.0, + 899.0, + 1439.0, + 839.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1419.5, + 711.0, + 1419.5, + 711.0, + 1450.5, + 685.0, + 1450.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 450.0, + 857.0, + 450.0, + 857.0, + 488.0, + 296.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 450.0, + 1406.0, + 450.0, + 1406.0, + 488.0, + 913.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 476.0, + 806.0, + 476.0, + 806.0, + 523.0, + 291.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 476.0, + 1231.0, + 476.0, + 1231.0, + 523.0, + 927.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 476.0, + 1410.0, + 476.0, + 1410.0, + 523.0, + 1399.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 513.0, + 580.0, + 513.0, + 580.0, + 547.0, + 296.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 513.0, + 643.0, + 513.0, + 643.0, + 547.0, + 610.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 513.0, + 1406.0, + 513.0, + 1406.0, + 547.0, + 698.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 543.0, + 587.0, + 543.0, + 587.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 543.0, + 1406.0, + 543.0, + 1406.0, + 580.0, + 635.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 572.0, + 778.0, + 572.0, + 778.0, + 610.0, + 294.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1825.0, + 1407.0, + 1825.0, + 1407.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1853.0, + 735.0, + 1853.0, + 735.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1853.0, + 1407.0, + 1853.0, + 1407.0, + 1894.0, + 814.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1114.0, + 1887.0, + 1114.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1887.0, + 1407.0, + 1887.0, + 1407.0, + 1925.0, + 1193.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1914.0, + 803.0, + 1914.0, + 803.0, + 1956.0, + 544.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1956.0, + 910.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1948.0, + 623.0, + 1948.0, + 623.0, + 1989.0, + 291.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1948.0, + 809.0, + 1948.0, + 809.0, + 1989.0, + 796.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1524.0, + 1404.0, + 1524.0, + 1404.0, + 1560.0, + 293.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 396.0, + 1554.0, + 396.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1684.0, + 397.0, + 1684.0, + 397.0, + 1727.0, + 294.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1684.0, + 726.0, + 1684.0, + 726.0, + 1727.0, + 571.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1684.0, + 963.0, + 1684.0, + 963.0, + 1727.0, + 753.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1727.0, + 1076.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1082.0, + 1717.0, + 1082.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 601.0, + 585.0, + 601.0, + 585.0, + 657.0, + 291.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 601.0, + 799.0, + 601.0, + 799.0, + 657.0, + 746.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 601.0, + 1097.0, + 601.0, + 1097.0, + 657.0, + 1045.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 601.0, + 1412.0, + 601.0, + 1412.0, + 657.0, + 1400.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 644.0, + 441.0, + 644.0, + 441.0, + 690.0, + 292.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 644.0, + 806.0, + 644.0, + 806.0, + 690.0, + 598.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 644.0, + 1326.0, + 644.0, + 1326.0, + 690.0, + 893.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 425.0, + 225.0, + 425.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 225.0, + 913.0, + 225.0, + 913.0, + 267.0, + 481.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 225.0, + 1187.0, + 225.0, + 1187.0, + 267.0, + 934.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 225.0, + 1407.0, + 225.0, + 1407.0, + 267.0, + 1216.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 258.0, + 469.0, + 258.0, + 469.0, + 298.0, + 295.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 258.0, + 657.0, + 258.0, + 657.0, + 298.0, + 552.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 258.0, + 1084.0, + 258.0, + 1084.0, + 298.0, + 765.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 304.0, + 996.0, + 304.0, + 996.0, + 347.0, + 293.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 304.0, + 1211.0, + 304.0, + 1211.0, + 347.0, + 1146.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 771.0, + 533.0, + 771.0, + 533.0, + 812.0, + 294.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 771.0, + 933.0, + 771.0, + 933.0, + 812.0, + 572.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 771.0, + 965.0, + 771.0, + 965.0, + 812.0, + 954.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2039.0, + 332.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 284, + 1406, + 284, + 1406, + 572, + 296, + 572 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 584, + 1405, + 584, + 1405, + 802, + 297, + 802 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 904, + 1405, + 904, + 1405, + 1093, + 297, + 1093 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1105, + 1405, + 1105, + 1405, + 1397, + 297, + 1397 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 539, + 813, + 1157, + 813, + 1157, + 895, + 539, + 895 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1404, + 1971, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 300, + 1904, + 559, + 1904, + 559, + 1940, + 300, + 1940 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 296, + 1508, + 953, + 1508, + 953, + 1542, + 296, + 1542 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 836, + 1400, + 836, + 1400, + 866, + 1366, + 866 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 300, + 1614, + 1365, + 1614, + 1365, + 1842, + 300, + 1842 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1453, + 1401, + 1453, + 1401, + 1483, + 1366, + 1483 + ], + "score": 0.851 + }, + { + "category_id": 0, + "poly": [ + 296, + 1570, + 990, + 1570, + 990, + 1604, + 296, + 1604 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.731 + }, + { + "category_id": 2, + "poly": [ + 296, + 229, + 1402, + 229, + 1402, + 262, + 296, + 262 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 296, + 1409, + 866, + 1409, + 866, + 1444, + 296, + 1444 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 331, + 1450, + 1319, + 1450, + 1319, + 1486, + 331, + 1486 + ], + "score": 0.645 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1402, + 229, + 1402, + 262, + 296, + 262 + ], + "score": 0.242 + }, + { + "category_id": 5, + "poly": [ + 305, + 1614, + 1365, + 1614, + 1365, + 1842, + 305, + 1842 + ], + "score": 0.178, + "html": "
Require: Dataset D = {(xi, yi)}i=1: A parameterized model fe
1: Split training set D into Dtrain and Dval
2:ff ← Standard SGD Training on Dtrain
3: Estimate I(x),q(x) with equation 7 using f on Dval, and compute Ti = I(xi)3/5/q(𝑥)2/5
4:
5: Initialize the model parameters θ randomly
6:fe ← SGD with the regularized objective as in equation 6 on the full dataset D
" + }, + { + "category_id": 14, + "poly": [ + 540, + 807, + 1155, + 807, + 1155, + 897, + 540, + 897 + ], + "score": 0.93, + "latex": "\\mathrm { m i n i m i z e } _ { f } L ( f ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\left( \\ell ( f ( x _ { i } ) , y _ { i } ) + \\lambda \\tau _ { i } R ( x _ { i } ) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 623, + 421, + 991, + 421, + 991, + 483, + 623, + 483 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { R ( x ) = { \\left( \\sum _ { j = 1 } ^ { r } | | J ^ { ( j ) } ( x ) | | _ { F } ^ { 2 } \\right) } ^ { 1 / 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 567, + 905, + 830, + 905, + 830, + 942, + 567, + 942 + ], + "score": 0.93, + "latex": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }" + }, + { + "category_id": 13, + "poly": [ + 448, + 1712, + 566, + 1712, + 566, + 1746, + 448, + 1746 + ], + "score": 0.92, + "latex": "I ( x ) , q ( x )" + }, + { + "category_id": 13, + "poly": [ + 975, + 1359, + 1030, + 1359, + 1030, + 1397, + 975, + 1397 + ], + "score": 0.92, + "latex": "\\tilde { I } ( x )" + }, + { + "category_id": 13, + "poly": [ + 355, + 437, + 432, + 437, + 432, + 473, + 355, + 473 + ], + "score": 0.92, + "latex": "f ^ { \\prime } ( x ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 669, + 1410, + 723, + 1410, + 723, + 1444, + 669, + 1444 + ], + "score": 0.92, + "latex": "q ( x )" + }, + { + "category_id": 13, + "poly": [ + 881, + 1294, + 936, + 1294, + 936, + 1331, + 881, + 1331 + ], + "score": 0.92, + "latex": "\\tilde { I } ( \\stackrel { \\cdot } { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 382, + 606, + 382, + 606, + 425, + 297, + 425 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\dot { J } ^ { ( j ) } ( x ) \\triangleq \\frac { \\hat { \\partial } } { \\partial h ^ { ( j ) } } \\mathcal { L } ( f ( x ) , y ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1034, + 1398, + 1034, + 1398, + 1063, + 1346, + 1063 + ], + "score": 0.92, + "latex": "q ( x )" + }, + { + "category_id": 13, + "poly": [ + 434, + 1411, + 519, + 1411, + 519, + 1445, + 434, + 1445 + ], + "score": 0.92, + "latex": "x \\in G _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1029, + 1143, + 1029, + 1143, + 1063, + 1089, + 1063 + ], + "score": 0.92, + "latex": "I ( x )" + }, + { + "category_id": 13, + "poly": [ + 1104, + 318, + 1169, + 318, + 1169, + 352, + 1104, + 352 + ], + "score": 0.92, + "latex": "( x , y )" + }, + { + "category_id": 13, + "poly": [ + 543, + 678, + 604, + 678, + 604, + 711, + 543, + 711 + ], + "score": 0.92, + "latex": "R ( x )" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1138, + 1340, + 1138, + 1340, + 1169, + 1206, + 1169 + ], + "score": 0.92, + "latex": "G _ { 1 } , \\ldots , G _ { k }" + }, + { + "category_id": 13, + "poly": [ + 774, + 1410, + 828, + 1410, + 828, + 1444, + 774, + 1444 + ], + "score": 0.91, + "latex": "I ( x )" + }, + { + "category_id": 13, + "poly": [ + 462, + 1137, + 516, + 1137, + 516, + 1170, + 462, + 1170 + ], + "score": 0.91, + "latex": "I ( x )" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1708, + 1357, + 1708, + 1357, + 1747, + 1092, + 1747 + ], + "score": 0.91, + "latex": "\\tau _ { i } = I ( x _ { i } ) ^ { 3 / 5 } / q ( x _ { i } ) ^ { 2 / 5 }" + }, + { + "category_id": 13, + "poly": [ + 506, + 1616, + 715, + 1616, + 715, + 1649, + 506, + 1649 + ], + "score": 0.9, + "latex": "\\mathcal { D } = \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 883, + 1714, + 932, + 1714, + 932, + 1745, + 883, + 1745 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { \\mathrm { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 870, + 349, + 917, + 349, + 917, + 381, + 870, + 381 + ], + "score": 0.89, + "latex": "h ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 391, + 1198, + 1111, + 1198, + 1111, + 1233, + 391, + 1233 + ], + "score": 0.89, + "latex": "I ( x ) = \\mathrm { \\mathrm { V a r } } ( { \\bar { Y } } | X = x ) = \\operatorname* { P r } [ Y = 1 \\mid X ] \\cdot \\operatorname* { P r } [ Y = 0 \\ { \\bar { | } } \\ X ]" + }, + { + "category_id": 13, + "poly": [ + 999, + 383, + 1046, + 383, + 1046, + 414, + 999, + 414 + ], + "score": 0.89, + "latex": "h ^ { ( j ) }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1713, + 845, + 1713, + 845, + 1748, + 816, + 1748 + ], + "score": 0.89, + "latex": "f _ { \\tilde { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 613, + 1650, + 675, + 1650, + 675, + 1677, + 613, + 1677 + ], + "score": 0.89, + "latex": "\\mathcal { D } _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1805, + 473, + 1805, + 473, + 1837, + 345, + 1837 + ], + "score": 0.89, + "latex": "f _ { \\boldsymbol { \\theta } } \\gets \\mathsf { S G D }" + }, + { + "category_id": 13, + "poly": [ + 717, + 1679, + 778, + 1679, + 778, + 1709, + 717, + 1709 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 13, + "poly": [ + 725, + 1648, + 774, + 1648, + 774, + 1677, + 725, + 1677 + ], + "score": 0.87, + "latex": "\\mathcal { D } _ { \\mathrm { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1233, + 792, + 1233, + 792, + 1269, + 296, + 1269 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { \\tilde { I } ( x ) = 1 - \\operatorname* { m a x } _ { k \\in \\{ 0 , 1 \\} } \\operatorname* { P r } [ Y = k \\mid X = x ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 581, + 973, + 605, + 973, + 605, + 1000, + 581, + 1000 + ], + "score": 0.85, + "latex": "\\tau _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1452, + 1246, + 1452, + 1246, + 1486, + 1216, + 1486 + ], + "score": 0.85, + "latex": "f _ { \\tilde { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1113, + 948, + 1113, + 948, + 1138, + 923, + 1138 + ], + "score": 0.84, + "latex": "\\tau _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1452, + 1320, + 1452, + 1320, + 1486, + 1284, + 1486 + ], + "score": 0.84, + "latex": "G _ { j }" + }, + { + "category_id": 13, + "poly": [ + 369, + 914, + 394, + 914, + 394, + 939, + 369, + 939 + ], + "score": 0.84, + "latex": "\\tau _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 353, + 326, + 353, + 326, + 384, + 298, + 384 + ], + "score": 0.84, + "latex": "f _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 344, + 1678, + 411, + 1678, + 411, + 1712, + 344, + 1712 + ], + "score": 0.83, + "latex": "f _ { \\tilde { \\theta } } \\gets" + }, + { + "category_id": 13, + "poly": [ + 1196, + 741, + 1215, + 741, + 1215, + 767, + 1196, + 767 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 970, + 353, + 987, + 353, + 987, + 385, + 970, + 385 + ], + "score": 0.81, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 298, + 940, + 317, + 940, + 317, + 966, + 298, + 966 + ], + "score": 0.8, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1281, + 710, + 1299, + 710, + 1299, + 736, + 1281, + 736 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1139, + 1118, + 1139, + 1118, + 1165, + 1099, + 1165 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 604, + 1450, + 690, + 1450, + 690, + 1485, + 604, + 1485 + ], + "score": 0.77, + "latex": "I ( x ) \\propto" + }, + { + "category_id": 13, + "poly": [ + 534, + 1649, + 560, + 1649, + 560, + 1674, + 534, + 1674 + ], + "score": 0.76, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 766, + 1035, + 785, + 1035, + 785, + 1057, + 766, + 1057 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 859, + 1335, + 877, + 1335, + 877, + 1356, + 859, + 1356 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 695, + 1775, + 712, + 1775, + 712, + 1801, + 695, + 1801 + ], + "score": 0.75, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 408, + 357, + 424, + 357, + 424, + 380, + 408, + 380 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1806, + 1223, + 1806, + 1223, + 1832, + 1197, + 1832 + ], + "score": 0.7, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 993, + 1617, + 1022, + 1617, + 1022, + 1649, + 993, + 1649 + ], + "score": 0.67, + "latex": "f _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1265, + 1233, + 1265, + 1233, + 1293, + 1207, + 1293 + ], + "score": 0.59, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 336, + 1449, + 617, + 1449, + 617, + 1487, + 336, + 1487 + ], + "score": 0.53, + "latex": "\\forall x \\in G _ { j } , q ( x ) \\propto | G _ { j } | , I" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1900.0, + 562.0, + 1900.0, + 562.0, + 1945.0, + 291.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 992.0, + 1564.0, + 992.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 285.0, + 1409.0, + 285.0, + 1409.0, + 323.0, + 294.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1103.0, + 319.0, + 1103.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 319.0, + 1406.0, + 319.0, + 1406.0, + 353.0, + 1170.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 347.0, + 297.0, + 347.0, + 297.0, + 392.0, + 293.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 347.0, + 407.0, + 347.0, + 407.0, + 392.0, + 327.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 347.0, + 869.0, + 347.0, + 869.0, + 392.0, + 425.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 347.0, + 969.0, + 347.0, + 969.0, + 392.0, + 918.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 347.0, + 1408.0, + 347.0, + 1408.0, + 392.0, + 988.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 377.0, + 296.0, + 377.0, + 296.0, + 426.0, + 293.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 377.0, + 998.0, + 377.0, + 998.0, + 426.0, + 607.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 377.0, + 1408.0, + 377.0, + 1408.0, + 426.0, + 1047.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 418.0, + 354.0, + 418.0, + 354.0, + 486.0, + 286.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 418.0, + 622.0, + 418.0, + 622.0, + 486.0, + 433.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 418.0, + 1407.0, + 418.0, + 1407.0, + 486.0, + 992.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 1409.0, + 476.0, + 1409.0, + 514.0, + 293.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 510.0, + 1408.0, + 510.0, + 1408.0, + 544.0, + 294.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 540.0, + 1193.0, + 540.0, + 1193.0, + 574.0, + 295.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 382.5, + 469.0, + 382.5, + 469.0, + 403.0, + 441.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 587.0, + 1403.0, + 587.0, + 1403.0, + 618.0, + 296.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 618.0, + 1405.0, + 618.0, + 1405.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 647.0, + 1407.0, + 647.0, + 1407.0, + 683.0, + 292.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 681.0, + 542.0, + 681.0, + 542.0, + 712.0, + 295.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 681.0, + 1407.0, + 681.0, + 1407.0, + 712.0, + 605.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 708.0, + 1280.0, + 708.0, + 1280.0, + 741.0, + 294.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 708.0, + 1403.0, + 708.0, + 1403.0, + 741.0, + 1300.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 739.0, + 1195.0, + 739.0, + 1195.0, + 773.0, + 295.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 739.0, + 1403.0, + 739.0, + 1403.0, + 773.0, + 1216.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 770.0, + 994.0, + 770.0, + 994.0, + 805.0, + 295.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 902.0, + 368.0, + 902.0, + 368.0, + 946.0, + 291.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 902.0, + 566.0, + 902.0, + 566.0, + 946.0, + 395.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 902.0, + 1407.0, + 902.0, + 1407.0, + 946.0, + 831.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 939.0, + 1403.0, + 939.0, + 1403.0, + 971.0, + 318.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 968.0, + 580.0, + 968.0, + 580.0, + 1002.0, + 292.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1002.0, + 606.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1035.0, + 295.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1029.0, + 765.0, + 1029.0, + 765.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1029.0, + 1088.0, + 1029.0, + 1088.0, + 1066.0, + 786.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1029.0, + 1345.0, + 1029.0, + 1345.0, + 1066.0, + 1144.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1029.0, + 1408.0, + 1029.0, + 1408.0, + 1066.0, + 1399.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1058.0, + 1352.0, + 1058.0, + 1352.0, + 1097.0, + 292.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1104.0, + 922.0, + 1104.0, + 922.0, + 1143.0, + 294.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1104.0, + 1405.0, + 1104.0, + 1405.0, + 1143.0, + 949.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1135.0, + 461.0, + 1135.0, + 461.0, + 1175.0, + 292.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1135.0, + 1098.0, + 1135.0, + 1098.0, + 1175.0, + 517.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1135.0, + 1205.0, + 1135.0, + 1205.0, + 1175.0, + 1119.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1135.0, + 1408.0, + 1135.0, + 1408.0, + 1175.0, + 1341.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1166.0, + 1406.0, + 1166.0, + 1406.0, + 1206.0, + 292.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1195.0, + 390.0, + 1195.0, + 390.0, + 1236.0, + 291.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1195.0, + 1406.0, + 1195.0, + 1406.0, + 1236.0, + 1112.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1226.0, + 295.0, + 1226.0, + 295.0, + 1276.0, + 292.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1226.0, + 1410.0, + 1226.0, + 1410.0, + 1276.0, + 793.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1206.0, + 1263.0, + 1206.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1263.0, + 1405.0, + 1263.0, + 1405.0, + 1298.0, + 1234.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1299.0, + 880.0, + 1299.0, + 880.0, + 1333.0, + 295.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1299.0, + 1405.0, + 1299.0, + 1405.0, + 1333.0, + 937.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 858.0, + 1329.0, + 858.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1364.0, + 878.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1361.0, + 974.0, + 1361.0, + 974.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1361.0, + 1042.0, + 1361.0, + 1042.0, + 1399.0, + 1031.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1505.0, + 956.0, + 1505.0, + 956.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 505.0, + 1611.0, + 505.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1611.0, + 992.0, + 1611.0, + 992.0, + 1655.0, + 716.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1611.0, + 1028.0, + 1611.0, + 1028.0, + 1655.0, + 1023.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1645.0, + 533.0, + 1645.0, + 533.0, + 1683.0, + 306.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1645.0, + 612.0, + 1645.0, + 612.0, + 1683.0, + 561.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1645.0, + 724.0, + 1645.0, + 724.0, + 1683.0, + 676.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1645.0, + 778.0, + 1645.0, + 778.0, + 1683.0, + 775.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1673.0, + 343.0, + 1673.0, + 343.0, + 1717.0, + 305.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1673.0, + 716.0, + 1673.0, + 716.0, + 1717.0, + 412.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1673.0, + 783.0, + 1673.0, + 783.0, + 1717.0, + 779.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1705.0, + 447.0, + 1705.0, + 447.0, + 1750.0, + 302.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1705.0, + 815.0, + 1705.0, + 815.0, + 1750.0, + 567.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1705.0, + 882.0, + 1705.0, + 882.0, + 1750.0, + 846.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1705.0, + 1091.0, + 1705.0, + 1091.0, + 1750.0, + 933.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1705.0, + 1363.0, + 1705.0, + 1363.0, + 1750.0, + 1358.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1743.0, + 339.0, + 1743.0, + 339.0, + 1777.0, + 307.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1773.0, + 694.0, + 1773.0, + 694.0, + 1809.0, + 307.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1773.0, + 828.0, + 1773.0, + 828.0, + 1809.0, + 713.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1801.0, + 344.0, + 1801.0, + 344.0, + 1839.0, + 306.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1801.0, + 1196.0, + 1801.0, + 1196.0, + 1839.0, + 474.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 433.0, + 1402.0, + 433.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1402.0, + 668.0, + 1402.0, + 668.0, + 1451.0, + 520.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1402.0, + 773.0, + 1402.0, + 773.0, + 1451.0, + 724.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1402.0, + 866.0, + 1402.0, + 866.0, + 1451.0, + 829.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1446.0, + 1215.0, + 1446.0, + 1215.0, + 1491.0, + 691.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1446.0, + 1283.0, + 1446.0, + 1283.0, + 1491.0, + 1247.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1446.0, + 1325.0, + 1446.0, + 1325.0, + 1491.0, + 1321.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1607, + 1404, + 1607, + 1404, + 2033, + 298, + 2033 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1074, + 1404, + 1074, + 1404, + 1591, + 298, + 1591 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 400, + 1405, + 400, + 1405, + 947, + 298, + 947 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 230, + 1403, + 230, + 1403, + 382, + 299, + 382 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 303, + 1010, + 1236, + 1010, + 1236, + 1038, + 303, + 1038 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.765 + }, + { + "category_id": 13, + "poly": [ + 1025, + 1165, + 1080, + 1165, + 1080, + 1193, + 1025, + 1193 + ], + "score": 0.86, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 356, + 1729, + 432, + 1729, + 432, + 1758, + 356, + 1758 + ], + "score": 0.86, + "latex": "1 9 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 591, + 1256, + 646, + 1256, + 646, + 1285, + 591, + 1285 + ], + "score": 0.86, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1729, + 1403, + 1729, + 1403, + 1758, + 1326, + 1758 + ], + "score": 0.86, + "latex": "2 9 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1370, + 1226, + 1396, + 1226, + 1396, + 1254, + 1370, + 1254 + ], + "score": 0.57, + "latex": "_ { 2 } \\cdot" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1287, + 1286, + 1287, + 1286, + 1315, + 1258, + 1315 + ], + "score": 0.53, + "latex": "_ { 2 } \\cdot" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1287, + 1113, + 1287, + 1113, + 1315, + 1086, + 1315 + ], + "score": 0.39, + "latex": "_ { 1 } ," + }, + { + "category_id": 13, + "poly": [ + 740, + 827, + 779, + 827, + 779, + 855, + 740, + 855 + ], + "score": 0.28, + "latex": "\\mathrm { X u }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1226, + 1212, + 1226, + 1212, + 1254, + 1185, + 1254 + ], + "score": 0.26, + "latex": "_ { 1 } ," + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1007.0, + 1243.0, + 1007.0, + 1243.0, + 1041.0, + 296.0, + 1041.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, + 1602.0, + 1405.0, + 1602.0, + 1405.0, + 1644.0, + 293.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1639.0, + 1402.0, + 1639.0, + 1402.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1668.0, + 1406.0, + 1668.0, + 1406.0, + 1704.0, + 294.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1734.0, + 294.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 355.0, + 1728.0, + 355.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1728.0, + 1325.0, + 1728.0, + 1325.0, + 1763.0, + 433.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1728.0, + 1408.0, + 1728.0, + 1408.0, + 1763.0, + 1404.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1759.0, + 1406.0, + 1759.0, + 1406.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1787.0, + 1406.0, + 1787.0, + 1406.0, + 1828.0, + 291.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1404.0, + 1821.0, + 1404.0, + 1853.0, + 296.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1883.0, + 1408.0, + 1883.0, + 1408.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1408.0, + 1911.0, + 1408.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 833.0, + 2003.0, + 833.0, + 2035.0, + 294.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1106.0, + 296.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1104.0, + 1405.0, + 1104.0, + 1405.0, + 1140.0, + 294.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1404.0, + 1131.0, + 1404.0, + 1169.0, + 293.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1162.0, + 1024.0, + 1162.0, + 1024.0, + 1201.0, + 292.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1162.0, + 1408.0, + 1162.0, + 1408.0, + 1201.0, + 1081.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 1406.0, + 1194.0, + 1406.0, + 1230.0, + 294.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 1184.0, + 1225.0, + 1184.0, + 1261.0, + 294.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1225.0, + 1369.0, + 1225.0, + 1369.0, + 1261.0, + 1213.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1261.0, + 1397.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1255.0, + 590.0, + 1255.0, + 590.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1255.0, + 1406.0, + 1255.0, + 1406.0, + 1289.0, + 647.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1282.0, + 1085.0, + 1282.0, + 1085.0, + 1324.0, + 291.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1282.0, + 1257.0, + 1282.0, + 1257.0, + 1324.0, + 1114.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1282.0, + 1405.0, + 1282.0, + 1405.0, + 1324.0, + 1287.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1316.0, + 1406.0, + 1316.0, + 1406.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1404.0, + 1375.0, + 1404.0, + 1414.0, + 293.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 1406.0, + 1406.0, + 1406.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1473.0, + 296.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1464.0, + 1405.0, + 1464.0, + 1405.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1501.0, + 1405.0, + 1501.0, + 1405.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1592.0, + 294.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 395.0, + 1408.0, + 395.0, + 1408.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 431.0, + 1406.0, + 431.0, + 1406.0, + 462.0, + 296.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1407.0, + 460.0, + 1407.0, + 495.0, + 293.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 1407.0, + 489.0, + 1407.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1407.0, + 519.0, + 1407.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 1407.0, + 581.0, + 1407.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 612.0, + 1407.0, + 612.0, + 1407.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 643.0, + 1407.0, + 643.0, + 1407.0, + 676.0, + 292.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 675.0, + 1406.0, + 675.0, + 1406.0, + 706.0, + 295.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 732.0, + 1405.0, + 732.0, + 1405.0, + 770.0, + 292.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 1408.0, + 762.0, + 1408.0, + 800.0, + 293.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 795.0, + 1407.0, + 795.0, + 1407.0, + 830.0, + 295.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 824.0, + 739.0, + 824.0, + 739.0, + 859.0, + 295.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 859.0, + 780.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 854.0, + 1406.0, + 854.0, + 1406.0, + 891.0, + 292.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 887.0, + 1405.0, + 887.0, + 1405.0, + 922.0, + 296.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 1126.0, + 915.0, + 1126.0, + 954.0, + 295.0, + 954.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": [ + 295.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 288.0, + 1404.0, + 288.0, + 1404.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1404.0, + 319.0, + 1404.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 348.0, + 385.0, + 348.0, + 385.0, + 386.0, + 292.0, + 386.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 378, + 342, + 1321, + 342, + 1321, + 725, + 378, + 725 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy&Rare Cls.Clean Cls.Noisy&Rare Cls.Clean Cls.
ERM52.9 ±1.294.4 ± 0.118.9 ± 1.094.2 ± 0.1
Co-teaching30.2 ± 2.388.9± 0.315.4± 2.886.4± 0.7
INCV48.9 ± 1.794.0± 0.225.8 ± 1.893.8 ± 0.2
MentorNet54.1 ± 1.090.3 ± 0.528.3 ± 1.590.2 ±0.4
L2RW44.3 ± 2.090.1± 0.531.2 ± 1.989.7±0.7
MW-Net55.4 ± 1.191.7 ± 0.535.6 ± 1.692.3 ± 0.5
GCE48.2±0.691.6 ± 0.314.1 ± 2.091.7 ± 0.4
DMI44.7 ± 2.390.7 ±0.814.0 ± 2.191.8 ± 0.6
Unif-reg (optimal)53.9 ± 0.992.1± 0.236.7 ± 1.092.4± 0.3
Ours (HAR)63.5 ± 0.894.3 ± 0.242.4±0.794.0±0.2
" + }, + { + "category_id": 5, + "poly": [ + 349, + 1406, + 1349, + 1406, + 1349, + 1816, + 349, + 1816 + ], + "score": 0.985, + "html": "
Dataset MethodCIFAR-10CIFAR-100
Avg. Noisy Cls.Avg. Clean Cls.Avg. Noisy Cls.Avg. Clean Cls.
ERM68.6±0.293.6±0.265.3 ± 0.367.8 ± 0.2
Co-teaching64.7 ± 0.489.1± 0.359.8 ± 0.465.3± 0.3
INCV76.7 ± 0.693.0±0.266.2±0.368.6 ±0.2
MentorNet71.1 ± 0.493.7± 0.265.9 ± 0.367.5 ± 0.3
L2RW70.1± 0.392.5 ± 0.365.1± 0.567.0± 0.3
MW-Net75.0± 0.394.4± 0.265.7 ± 0.369.1± 0.2
GCE62.6 ±1.190.2±0.261.2 ±0.666.9 ±0.2
DMI73.2 ± 0.790.8 ± 0.264.8 ± 0.567.1 ± 0.2
Unif-reg (入= 0.1)77.5 ± 0.692.3± 0.269.3 ± 0.566.6 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1±0.268.5 ± 0.368.6 ±0.2
Ours (HAR)80.7 ± 0.394.5 ± 0.274.2 ± 0.369.3±0.2
" + }, + { + "category_id": 1, + "poly": [ + 298, + 965, + 1404, + 965, + 1404, + 1180, + 298, + 1180 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 302, + 1194, + 1399, + 1194, + 1399, + 1288, + 302, + 1288 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 296, + 1849, + 1407, + 1849, + 1407, + 2035, + 296, + 2035 + ], + "score": 0.963 + }, + { + "category_id": 6, + "poly": [ + 296, + 223, + 1406, + 223, + 1406, + 317, + 296, + 317 + ], + "score": 0.954 + }, + { + "category_id": 6, + "poly": [ + 298, + 1319, + 1400, + 1319, + 1400, + 1382, + 298, + 1382 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 887, + 1400, + 887, + 1400, + 952, + 296, + 952 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 841, + 1266, + 841, + 1266, + 873, + 298, + 873 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 782, + 715, + 782, + 715, + 814, + 299, + 814 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 13, + "poly": [ + 999, + 1028, + 1094, + 1028, + 1094, + 1059, + 999, + 1059 + ], + "score": 0.84, + "latex": "\\lambda = 0 . 1" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 1403.0, + 224.0, + 1403.0, + 258.0, + 294.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 253.0, + 1404.0, + 253.0, + 1404.0, + 288.0, + 294.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 286.0, + 794.0, + 286.0, + 794.0, + 317.0, + 294.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1317.0, + 1404.0, + 1317.0, + 1404.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1351.0, + 953.0, + 1351.0, + 953.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 780.0, + 718.0, + 780.0, + 718.0, + 820.0, + 293.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 967.0, + 1404.0, + 967.0, + 1404.0, + 1001.0, + 296.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 994.0, + 1406.0, + 994.0, + 1406.0, + 1033.0, + 293.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1028.0, + 998.0, + 1028.0, + 998.0, + 1063.0, + 294.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1028.0, + 1404.0, + 1028.0, + 1404.0, + 1063.0, + 1095.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1054.0, + 1405.0, + 1054.0, + 1405.0, + 1096.0, + 292.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1123.0, + 293.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1118.0, + 1406.0, + 1118.0, + 1406.0, + 1156.0, + 293.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1149.0, + 503.0, + 1149.0, + 503.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1260.0, + 296.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1257.0, + 1119.0, + 1257.0, + 1119.0, + 1291.0, + 297.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1914.0, + 293.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1409.0, + 1910.0, + 1409.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1409.0, + 1942.0, + 1409.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 731.0, + 1999.0, + 731.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 887.0, + 1402.0, + 887.0, + 1402.0, + 919.0, + 297.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 918.0, + 1384.0, + 918.0, + 1384.0, + 954.0, + 296.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 838.0, + 1268.0, + 838.0, + 1268.0, + 877.0, + 294.0, + 877.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 349, + 281, + 1351, + 281, + 1351, + 595, + 349, + 595 + ], + "score": 0.983, + "html": "
DatasetImbalanced CIFAR-10Imbalanced CIFAR-100
Imbalance Typelong-tailedsteplong-tailedstep
Imbalance Ratio10010100101001010010
ERM29.6413.6136.7017.5061.6844.3061.4545.37
Focal29.6213.3436.0916.3661.5944.2261.4346.54
CB Focal25.4312.9039.7316.5463.9842.0180.2449.98
LDAM-DRW22.9711.8423.0812.1957.9641.2954.6440.54
BBN (Zhou et al., 2020)20.1811.6821.6411.9957.4440.8857.4440.36
HAR-DRW20.4610.6220.2711.5855.3538.9851.7337.54
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1086, + 1404, + 1086, + 1404, + 1364, + 297, + 1364 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1758, + 1404, + 1758, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1379, + 1404, + 1379, + 1404, + 1593, + 298, + 1593 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 551, + 713, + 1149, + 713, + 1149, + 971, + 551, + 971 + ], + "score": 0.98, + "html": "
Train AccVal Acc
Reg StrengthTop1Top5Top1Top 5
069.0188.6459.4080.84
Unif-reg (入= 0.01)68.9688.5464.3286.11
Unif-reg (λ= 0.02)67.0287.5164.4085.92
Unif-reg (入= 0.05)65.1186.3365.8086.84
Unif-reg (λ = 0.1)63.3584.9865.0486.56
Adaptive (HAR)69.1288.4169.2088.96
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1711, + 1053, + 1711, + 1053, + 1744, + 298, + 1744 + ], + "score": 0.918 + }, + { + "category_id": 6, + "poly": [ + 349, + 223, + 1345, + 223, + 1345, + 257, + 349, + 257 + ], + "score": 0.911 + }, + { + "category_id": 6, + "poly": [ + 294, + 625, + 1408, + 625, + 1408, + 689, + 294, + 689 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 301, + 1639, + 587, + 1639, + 587, + 1675, + 301, + 1675 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 299, + 1030, + 1160, + 1030, + 1160, + 1062, + 299, + 1062 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.796 + }, + { + "category_id": 15, + "poly": [ + 349.0, + 222.0, + 1348.0, + 222.0, + 1348.0, + 258.0, + 349.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 622.0, + 1409.0, + 622.0, + 1409.0, + 661.0, + 293.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 653.0, + 1091.0, + 653.0, + 1091.0, + 692.0, + 293.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1637.0, + 593.0, + 1637.0, + 593.0, + 1680.0, + 292.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 1167.0, + 1027.0, + 1167.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1406.0, + 1085.0, + 1406.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1117.0, + 1405.0, + 1117.0, + 1405.0, + 1152.0, + 294.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1150.0, + 1405.0, + 1150.0, + 1405.0, + 1183.0, + 296.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1176.0, + 1408.0, + 1176.0, + 1408.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1243.0, + 296.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 1402.0, + 1239.0, + 1402.0, + 1272.0, + 296.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1304.0, + 296.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1301.0, + 1405.0, + 1301.0, + 1405.0, + 1338.0, + 295.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1330.0, + 993.0, + 1330.0, + 993.0, + 1368.0, + 294.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1759.0, + 1404.0, + 1759.0, + 1404.0, + 1792.0, + 296.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1785.0, + 1408.0, + 1785.0, + 1408.0, + 1827.0, + 291.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1854.0, + 294.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1914.0, + 294.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1974.0, + 296.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1408.0, + 1439.0, + 1408.0, + 1477.0, + 294.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1471.0, + 1405.0, + 1471.0, + 1405.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1409.0, + 1499.0, + 1409.0, + 1539.0, + 292.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1404.0, + 1533.0, + 1404.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1563.0, + 1333.0, + 1563.0, + 1333.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1711.0, + 1056.0, + 1711.0, + 1056.0, + 1747.0, + 297.0, + 1747.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 400, + 312, + 1298, + 312, + 1298, + 570, + 400, + 570 + ], + "score": 0.982, + "html": "
Train Test Methodmini WebVisionfull WebVision
WebVisionImageNetWebVisionImageNet
Top 1Top5Top 1Top 5Top 1Top 5Top 1Top 5
ERM62.580.858.581.869.787.062.983.6
Co-teaching63.685.261.584.71-11
INCV65.285.361.685.0--1-
MentorNet63.081.457.879.970.888.062.583.0
Ours (HAR)75.590.770.390.075.090.667.186.7
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1564, + 1405, + 1564, + 1405, + 1779, + 298, + 1779 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 744, + 1404, + 744, + 1404, + 958, + 298, + 958 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1281, + 1403, + 1281, + 1403, + 1434, + 299, + 1434 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 973, + 1403, + 973, + 1403, + 1127, + 298, + 1127 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1142, + 1403, + 1142, + 1403, + 1265, + 298, + 1265 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 636, + 1401, + 636, + 1401, + 729, + 300, + 729 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1403, + 1911, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 6, + "poly": [ + 296, + 223, + 1404, + 223, + 1404, + 287, + 296, + 287 + ], + "score": 0.938 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 1488, + 543, + 1488, + 543, + 1524, + 300, + 1524 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 302, + 1838, + 625, + 1838, + 625, + 1870, + 302, + 1870 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.783 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 222.0, + 1406.0, + 222.0, + 1406.0, + 258.0, + 294.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 254.0, + 1189.0, + 254.0, + 1189.0, + 288.0, + 295.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1485.0, + 549.0, + 1485.0, + 549.0, + 1533.0, + 291.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1833.0, + 630.0, + 1833.0, + 630.0, + 1878.0, + 298.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1566.0, + 1407.0, + 1566.0, + 1407.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1596.0, + 1406.0, + 1596.0, + 1406.0, + 1631.0, + 295.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1625.0, + 1405.0, + 1625.0, + 1405.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1405.0, + 1685.0, + 1405.0, + 1722.0, + 293.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1719.0, + 1405.0, + 1719.0, + 1405.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 689.0, + 1749.0, + 689.0, + 1780.0, + 296.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 777.0, + 296.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 771.0, + 1404.0, + 771.0, + 1404.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 840.0, + 295.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1404.0, + 834.0, + 1404.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 864.0, + 1404.0, + 864.0, + 1404.0, + 899.0, + 294.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 895.0, + 1404.0, + 895.0, + 1404.0, + 930.0, + 296.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 875.0, + 927.0, + 875.0, + 961.0, + 294.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 1404.0, + 1281.0, + 1404.0, + 1314.0, + 295.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1342.0, + 1404.0, + 1342.0, + 1404.0, + 1375.0, + 297.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1405.0, + 1372.0, + 1405.0, + 1408.0, + 294.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 975.0, + 1401.0, + 975.0, + 1439.0, + 294.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 971.0, + 1403.0, + 971.0, + 1403.0, + 1009.0, + 293.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1005.0, + 1404.0, + 1005.0, + 1404.0, + 1038.0, + 296.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1031.0, + 1408.0, + 1031.0, + 1408.0, + 1071.0, + 291.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1065.0, + 1405.0, + 1065.0, + 1405.0, + 1102.0, + 293.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1095.0, + 1292.0, + 1095.0, + 1292.0, + 1128.0, + 296.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 1407.0, + 1140.0, + 1407.0, + 1176.0, + 293.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1171.0, + 1408.0, + 1171.0, + 1408.0, + 1207.0, + 293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1237.0, + 292.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 1014.0, + 1233.0, + 1014.0, + 1269.0, + 293.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1407.0, + 634.0, + 1407.0, + 672.0, + 295.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 1405.0, + 667.0, + 1405.0, + 701.0, + 294.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 697.0, + 1069.0, + 697.0, + 1069.0, + 733.0, + 295.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1409.0, + 2003.0, + 1409.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.826 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 488, + 228, + 488, + 261, + 300, + 261 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 293, + 1889, + 1402, + 1889, + 1402, + 1924, + 293, + 1924 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 296, + 1808, + 1400, + 1808, + 1400, + 1871, + 296, + 1871 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 300, + 1388, + 1402, + 1388, + 1402, + 1483, + 300, + 1483 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 298, + 1502, + 1404, + 1502, + 1404, + 1594, + 298, + 1594 + ], + "score": 0.685 + }, + { + "category_id": 1, + "poly": [ + 296, + 1613, + 1398, + 1613, + 1398, + 1677, + 296, + 1677 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 292, + 919, + 1402, + 919, + 1402, + 985, + 292, + 985 + ], + "score": 0.662 + }, + { + "category_id": 1, + "poly": [ + 303, + 1081, + 1401, + 1081, + 1401, + 1179, + 303, + 1179 + ], + "score": 0.653 + }, + { + "category_id": 1, + "poly": [ + 294, + 1001, + 1399, + 1001, + 1399, + 1067, + 294, + 1067 + ], + "score": 0.65 + }, + { + "category_id": 1, + "poly": [ + 303, + 1276, + 1400, + 1276, + 1400, + 1373, + 303, + 1373 + ], + "score": 0.648 + }, + { + "category_id": 1, + "poly": [ + 301, + 501, + 1399, + 501, + 1399, + 595, + 301, + 595 + ], + "score": 0.643 + }, + { + "category_id": 1, + "poly": [ + 294, + 613, + 1403, + 613, + 1403, + 708, + 294, + 708 + ], + "score": 0.642 + }, + { + "category_id": 1, + "poly": [ + 293, + 420, + 1402, + 420, + 1402, + 485, + 293, + 485 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 292, + 725, + 1402, + 725, + 1402, + 791, + 292, + 791 + ], + "score": 0.629 + }, + { + "category_id": 1, + "poly": [ + 293, + 1195, + 1403, + 1195, + 1403, + 1261, + 293, + 1261 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 299, + 807, + 1403, + 807, + 1403, + 903, + 299, + 903 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 300, + 1943, + 1406, + 1943, + 1406, + 2032, + 300, + 2032 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 297, + 279, + 1406, + 279, + 1406, + 403, + 297, + 403 + ], + "score": 0.434 + }, + { + "category_id": 1, + "poly": [ + 294, + 1694, + 1403, + 1694, + 1403, + 1790, + 294, + 1790 + ], + "score": 0.361 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.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": [ + 295.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1840.0, + 596.0, + 1840.0, + 596.0, + 1870.0, + 322.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 1406.0, + 1387.0, + 1406.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1421.0, + 1407.0, + 1421.0, + 1407.0, + 1457.0, + 321.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1450.0, + 547.0, + 1450.0, + 547.0, + 1484.0, + 320.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 1404.0, + 1501.0, + 1404.0, + 1537.0, + 295.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1532.0, + 1409.0, + 1532.0, + 1409.0, + 1570.0, + 321.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1557.0, + 398.0, + 1557.0, + 398.0, + 1598.0, + 320.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1609.0, + 1403.0, + 1609.0, + 1403.0, + 1653.0, + 292.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1646.0, + 708.0, + 1646.0, + 708.0, + 1677.0, + 320.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 921.0, + 1405.0, + 921.0, + 1405.0, + 957.0, + 295.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 952.0, + 1183.0, + 952.0, + 1183.0, + 986.0, + 321.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1084.0, + 1405.0, + 1084.0, + 1405.0, + 1119.0, + 298.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1150.0, + 323.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1142.0, + 1340.0, + 1142.0, + 1340.0, + 1182.0, + 320.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 999.0, + 1405.0, + 999.0, + 1405.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1033.0, + 1241.0, + 1033.0, + 1241.0, + 1068.0, + 321.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1278.0, + 1404.0, + 1278.0, + 1404.0, + 1312.0, + 297.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1347.0, + 322.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1338.0, + 1156.0, + 1338.0, + 1156.0, + 1376.0, + 318.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 499.0, + 1405.0, + 499.0, + 1405.0, + 538.0, + 293.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 529.0, + 1405.0, + 529.0, + 1405.0, + 571.0, + 321.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 564.0, + 674.0, + 564.0, + 674.0, + 598.0, + 321.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 609.0, + 1404.0, + 609.0, + 1404.0, + 654.0, + 293.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 642.0, + 1409.0, + 642.0, + 1409.0, + 684.0, + 320.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 678.0, + 575.0, + 678.0, + 575.0, + 708.0, + 321.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 418.0, + 1407.0, + 418.0, + 1407.0, + 458.0, + 295.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 451.0, + 784.0, + 451.0, + 784.0, + 486.0, + 322.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 728.0, + 1403.0, + 728.0, + 1403.0, + 761.0, + 296.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 758.0, + 1245.0, + 758.0, + 1245.0, + 792.0, + 321.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1197.0, + 1406.0, + 1197.0, + 1406.0, + 1233.0, + 296.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1225.0, + 1144.0, + 1225.0, + 1144.0, + 1262.0, + 320.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 875.0, + 324.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 870.0, + 808.0, + 870.0, + 808.0, + 904.0, + 322.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1938.0, + 1410.0, + 1938.0, + 1410.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2006.0, + 322.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2000.0, + 397.0, + 2000.0, + 397.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 279.0, + 1406.0, + 279.0, + 1406.0, + 312.0, + 296.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 310.0, + 1406.0, + 310.0, + 1406.0, + 342.0, + 321.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 341.0, + 1404.0, + 341.0, + 1404.0, + 374.0, + 323.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 370.0, + 922.0, + 370.0, + 922.0, + 406.0, + 321.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1406.0, + 1694.0, + 1406.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1726.0, + 1403.0, + 1726.0, + 1403.0, + 1763.0, + 322.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1758.0, + 827.0, + 1758.0, + 827.0, + 1791.0, + 323.0, + 1791.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 290, + 1685, + 1404, + 1685, + 1404, + 1751, + 290, + 1751 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 295, + 1485, + 1403, + 1485, + 1403, + 1550, + 295, + 1550 + ], + "score": 0.739 + }, + { + "category_id": 1, + "poly": [ + 299, + 999, + 1403, + 999, + 1403, + 1094, + 299, + 1094 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 298, + 1229, + 1399, + 1229, + 1399, + 1295, + 298, + 1295 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 293, + 914, + 1401, + 914, + 1401, + 979, + 293, + 979 + ], + "score": 0.731 + }, + { + "category_id": 1, + "poly": [ + 296, + 1569, + 1405, + 1569, + 1405, + 1664, + 296, + 1664 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 295, + 1315, + 1403, + 1315, + 1403, + 1381, + 295, + 1381 + ], + "score": 0.728 + }, + { + "category_id": 1, + "poly": [ + 295, + 1399, + 1402, + 1399, + 1402, + 1465, + 295, + 1465 + ], + "score": 0.71 + }, + { + "category_id": 1, + "poly": [ + 296, + 829, + 1402, + 829, + 1402, + 895, + 296, + 895 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 298, + 744, + 1401, + 744, + 1401, + 810, + 298, + 810 + ], + "score": 0.685 + }, + { + "category_id": 1, + "poly": [ + 299, + 659, + 1401, + 659, + 1401, + 726, + 299, + 726 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 296, + 1114, + 1400, + 1114, + 1400, + 1210, + 296, + 1210 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 289, + 1770, + 1402, + 1770, + 1402, + 1836, + 289, + 1836 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 293, + 1856, + 1404, + 1856, + 1404, + 1920, + 293, + 1920 + ], + "score": 0.627 + }, + { + "category_id": 1, + "poly": [ + 303, + 398, + 1397, + 398, + 1397, + 494, + 303, + 494 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1402, + 228, + 1402, + 294, + 294, + 294 + ], + "score": 0.619 + }, + { + "category_id": 1, + "poly": [ + 295, + 313, + 1401, + 313, + 1401, + 378, + 295, + 378 + ], + "score": 0.554 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1405, + 1941, + 1405, + 2035, + 299, + 2035 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 297, + 512, + 1407, + 512, + 1407, + 640, + 297, + 640 + ], + "score": 0.523 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1407.0, + 1687.0, + 1407.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1715.0, + 1078.0, + 1715.0, + 1078.0, + 1750.0, + 321.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1484.0, + 1404.0, + 1484.0, + 1404.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1518.0, + 972.0, + 1518.0, + 972.0, + 1550.0, + 323.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 1408.0, + 995.0, + 1408.0, + 1038.0, + 293.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1033.0, + 1404.0, + 1033.0, + 1404.0, + 1064.0, + 323.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1064.0, + 497.0, + 1064.0, + 497.0, + 1094.0, + 320.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1227.0, + 1403.0, + 1227.0, + 1403.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1262.0, + 707.0, + 1262.0, + 707.0, + 1294.0, + 323.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 1404.0, + 913.0, + 1404.0, + 952.0, + 293.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 945.0, + 611.0, + 945.0, + 611.0, + 976.0, + 322.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1569.0, + 1406.0, + 1569.0, + 1406.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1603.0, + 1403.0, + 1603.0, + 1403.0, + 1637.0, + 322.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1632.0, + 803.0, + 1632.0, + 803.0, + 1666.0, + 322.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1351.0, + 297.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1347.0, + 1386.0, + 1347.0, + 1386.0, + 1383.0, + 322.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 1404.0, + 1400.0, + 1404.0, + 1436.0, + 295.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1432.0, + 948.0, + 1432.0, + 948.0, + 1464.0, + 322.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 832.0, + 1403.0, + 832.0, + 1403.0, + 865.0, + 296.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 862.0, + 1370.0, + 862.0, + 1370.0, + 896.0, + 321.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 745.0, + 1405.0, + 745.0, + 1405.0, + 781.0, + 296.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 777.0, + 1183.0, + 777.0, + 1183.0, + 809.0, + 323.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 659.0, + 1403.0, + 659.0, + 1403.0, + 695.0, + 295.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 691.0, + 1139.0, + 691.0, + 1139.0, + 726.0, + 319.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1113.0, + 1405.0, + 1113.0, + 1405.0, + 1153.0, + 295.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1149.0, + 1405.0, + 1149.0, + 1405.0, + 1183.0, + 323.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1177.0, + 1287.0, + 1177.0, + 1287.0, + 1215.0, + 323.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1773.0, + 1403.0, + 1773.0, + 1403.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1802.0, + 1249.0, + 1802.0, + 1249.0, + 1837.0, + 321.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1852.0, + 1409.0, + 1852.0, + 1409.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1887.0, + 686.0, + 1887.0, + 686.0, + 1919.0, + 321.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 398.0, + 1403.0, + 398.0, + 1403.0, + 436.0, + 297.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 430.0, + 1401.0, + 430.0, + 1401.0, + 464.0, + 324.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 459.0, + 933.0, + 459.0, + 933.0, + 497.0, + 323.0, + 497.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": [ + 322.0, + 260.0, + 1259.0, + 260.0, + 1259.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 315.0, + 1405.0, + 315.0, + 1405.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 346.0, + 1232.0, + 346.0, + 1232.0, + 379.0, + 320.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1935.0, + 1405.0, + 1935.0, + 1405.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1057.0, + 2003.0, + 1057.0, + 2037.0, + 324.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 513.0, + 1409.0, + 513.0, + 1409.0, + 551.0, + 295.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 581.0, + 321.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 576.0, + 1407.0, + 576.0, + 1407.0, + 612.0, + 321.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 608.0, + 880.0, + 608.0, + 880.0, + 641.0, + 323.0, + 641.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 293, + 205, + 1409, + 205, + 1409, + 1231, + 293, + 1231 + ], + "score": 0.584 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1408.0, + 227.0, + 1408.0, + 272.0, + 292.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 723.0, + 262.0, + 723.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 311.0, + 1406.0, + 311.0, + 1406.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 342.0, + 1406.0, + 342.0, + 1406.0, + 384.0, + 320.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 375.0, + 657.0, + 375.0, + 657.0, + 410.0, + 321.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 426.0, + 1405.0, + 426.0, + 1405.0, + 465.0, + 295.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 457.0, + 1027.0, + 457.0, + 1027.0, + 494.0, + 319.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 508.0, + 1406.0, + 508.0, + 1406.0, + 548.0, + 294.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 542.0, + 1375.0, + 542.0, + 1375.0, + 577.0, + 323.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 592.0, + 1405.0, + 592.0, + 1405.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 625.0, + 1055.0, + 625.0, + 1055.0, + 659.0, + 323.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 671.0, + 1408.0, + 671.0, + 1408.0, + 718.0, + 291.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 708.0, + 504.0, + 708.0, + 504.0, + 741.0, + 323.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 1406.0, + 757.0, + 1406.0, + 798.0, + 294.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 787.0, + 1405.0, + 787.0, + 1405.0, + 830.0, + 319.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 822.0, + 675.0, + 822.0, + 675.0, + 857.0, + 322.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 1405.0, + 870.0, + 1405.0, + 912.0, + 295.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 903.0, + 1323.0, + 903.0, + 1323.0, + 942.0, + 320.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 953.0, + 1406.0, + 953.0, + 1406.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 987.0, + 1391.0, + 987.0, + 1391.0, + 1026.0, + 323.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1408.0, + 1036.0, + 1408.0, + 1077.0, + 294.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1069.0, + 884.0, + 1069.0, + 884.0, + 1108.0, + 319.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1123.0, + 1405.0, + 1123.0, + 1405.0, + 1158.0, + 296.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1153.0, + 1406.0, + 1153.0, + 1406.0, + 1192.0, + 322.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1183.0, + 1085.0, + 1183.0, + 1085.0, + 1222.0, + 322.0, + 1222.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1756, + 1405, + 1756, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 295, + 331, + 1405, + 331, + 1405, + 509, + 295, + 509 + ], + "score": 0.979 + }, + { + "category_id": 8, + "poly": [ + 521, + 1022, + 1179, + 1022, + 1179, + 1170, + 521, + 1170 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 293, + 781, + 1401, + 781, + 1401, + 848, + 293, + 848 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 413, + 1514, + 1286, + 1514, + 1286, + 1595, + 413, + 1595 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 293, + 1429, + 1413, + 1429, + 1413, + 1505, + 293, + 1505 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 701, + 1400, + 701, + 1400, + 766, + 294, + 766 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 568, + 1230, + 1130, + 1230, + 1130, + 1278, + 568, + 1278 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 414, + 516, + 1284, + 516, + 1284, + 594, + 414, + 594 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 299, + 1187, + 1059, + 1187, + 1059, + 1222, + 299, + 1222 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 1293, + 1402, + 1293, + 1402, + 1351, + 296, + 1351 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 974, + 928, + 974, + 928, + 1013, + 298, + 1013 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 478, + 1351, + 1216, + 1351, + 1216, + 1421, + 478, + 1421 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 298, + 600, + 962, + 600, + 962, + 633, + 298, + 633 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1009, + 1692, + 1009, + 1727, + 298, + 1727 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 299, + 653, + 1150, + 653, + 1150, + 688, + 299, + 688 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 593, + 904, + 1107, + 904, + 1107, + 948, + 593, + 948 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 1627, + 743, + 1627, + 743, + 1662, + 299, + 1662 + ], + "score": 0.914 + }, + { + "category_id": 8, + "poly": [ + 599, + 857, + 965, + 857, + 965, + 898, + 599, + 898 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 301, + 225, + 693, + 225, + 693, + 262, + 301, + 262 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 294, + 293, + 1228, + 293, + 1228, + 327, + 294, + 327 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1236, + 1400, + 1236, + 1400, + 1267, + 1352, + 1267 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1368, + 1400, + 1368, + 1400, + 1400, + 1351, + 1400 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1365, + 865, + 1400, + 865, + 1400, + 895, + 1365, + 895 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1365, + 913, + 1401, + 913, + 1401, + 942, + 1365, + 942 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 1276, + 784, + 1367, + 784, + 1367, + 818, + 1276, + 818 + ], + "score": 0.94, + "latex": "( \\gamma _ { v } , h _ { v } )" + }, + { + "category_id": 13, + "poly": [ + 672, + 972, + 754, + 972, + 754, + 1011, + 672, + 1011 + ], + "score": 0.93, + "latex": "\\hat { f } - f ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 788, + 977, + 893, + 977, + 893, + 1013, + 788, + 1013 + ], + "score": 0.93, + "latex": "S _ { n , \\lambda } ( f ^ { \\star } )" + }, + { + "category_id": 14, + "poly": [ + 408, + 1510, + 1289, + 1510, + 1289, + 1594, + 408, + 1594 + ], + "score": 0.93, + "latex": "\\operatorname* { l i m } _ { n \\to \\infty } \\mathrm { M S E } ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t" + }, + { + "category_id": 13, + "poly": [ + 479, + 1469, + 604, + 1469, + 604, + 1505, + 479, + 1505 + ], + "score": 0.93, + "latex": "\\beta = 1 / \\sqrt { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1469, + 429, + 1469, + 429, + 1505, + 298, + 1505 + ], + "score": 0.92, + "latex": "O ( \\beta ^ { - 1 } ) ) d s" + }, + { + "category_id": 13, + "poly": [ + 589, + 331, + 748, + 331, + 748, + 367, + 589, + 367 + ], + "score": 0.92, + "latex": "f ^ { \\star } , q , I \\in W _ { 2 } ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 590, + 852, + 1107, + 852, + 1107, + 952, + 590, + 952 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { - \\rho ( t ) h _ { v } ^ { \\prime \\prime } ( t ) = \\gamma _ { v } I ( t ) q ( t ) h _ { v } ( t ) , } \\\\ & { h _ { v } ^ { ' } ( 0 ) = h _ { v } ^ { ' } ( 1 ) = 0 , \\mathrm { ~ a n d ~ } h _ { v } ^ { ' \\prime } ( 0 ) = h _ { v } ^ { ' \\prime } ( 1 ) = 0 . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 413, + 513, + 1287, + 513, + 1287, + 595, + 413, + 595 + ], + "score": 0.92, + "latex": "\\operatorname* { l i m } _ { n \\to \\infty } M S E ( \\hat { f } ) = C _ { n } \\int _ { 0 } ^ { 1 } \\lambda ^ { 2 } r ^ { 2 } ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { * } ) ^ { \\prime } ( t ) ) \\right] ^ { 2 } + L _ { 0 } r ( t ) ^ { 1 / 2 } \\rho ( t ) ^ { - 1 / 2 } d t" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1819, + 1401, + 1819, + 1401, + 1850, + 1294, + 1850 + ], + "score": 0.91, + "latex": "1 \\times \\bar { 1 0 } ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 497, + 433, + 740, + 433, + 740, + 468, + 497, + 468 + ], + "score": 0.91, + "latex": "r ( t ) = - 1 / ( q ( t ) I ( t ) )" + }, + { + "category_id": 13, + "poly": [ + 993, + 397, + 1185, + 397, + 1185, + 432, + 993, + 432 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ \\epsilon ^ { 2 } | X ] = I ( X )" + }, + { + "category_id": 13, + "poly": [ + 590, + 1913, + 652, + 1913, + 652, + 1943, + 590, + 1943 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { \\mathrm { t r a i n } }" + }, + { + "category_id": 14, + "poly": [ + 481, + 1345, + 1214, + 1345, + 1214, + 1422, + 481, + 1422 + ], + "score": 0.91, + "latex": "K _ { t } ( x ) = \\frac { I ( t ) } { q ( t ) } J ( t , x ) \\mathrm { a n d } W _ { \\lambda } f ^ { \\star } ( t ) = \\lambda r ( t ) \\left[ \\frac { d } { d t } ( \\rho ( t ) ( f ^ { \\ast } ) ^ { \\prime } ( t ) ) \\right] ," + }, + { + "category_id": 14, + "poly": [ + 568, + 1228, + 1135, + 1228, + 1135, + 1288, + 568, + 1288 + ], + "score": 0.91, + "latex": "\\operatorname* { s u p } _ { x } | \\hat { f } ( x ) - f ^ { \\star } ( x ) - S _ { n , \\lambda } ( f ^ { \\star } ) ( x ) | = o _ { P } ( n ^ { - 1 / 3 } ) ." + }, + { + "category_id": 13, + "poly": [ + 502, + 475, + 587, + 475, + 587, + 506, + 502, + 506 + ], + "score": 0.91, + "latex": "C _ { 0 } > 0" + }, + { + "category_id": 13, + "poly": [ + 1229, + 363, + 1401, + 363, + 1401, + 396, + 1229, + 396 + ], + "score": 0.9, + "latex": "c \\leq I ( X ) \\leq \\bar { C }" + }, + { + "category_id": 13, + "poly": [ + 991, + 1426, + 1408, + 1426, + 1408, + 1469, + 991, + 1469 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { Q _ { \\beta } ( t , s ) = \\int _ { 0 } ^ { t } ( r ( s ) \\rho ( s ) ) ^ { - 1 / 2 } ( 1 + } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 701, + 1912, + 750, + 1912, + 750, + 1942, + 701, + 1942 + ], + "score": 0.9, + "latex": "\\mathcal { D } _ { \\mathrm { v a l } }" + }, + { + "category_id": 13, + "poly": [ + 379, + 1430, + 925, + 1430, + 925, + 1469, + 379, + 1469 + ], + "score": 0.9, + "latex": "J ( t , s ) ~ = ~ \\beta \\rho ( s ) Q _ { \\beta } ^ { \\prime } ( s ) L _ { 0 } ( \\beta | Q _ { \\beta } ( t ) - Q _ { \\beta } ( s ) | )" + }, + { + "category_id": 13, + "poly": [ + 792, + 432, + 1093, + 432, + 1093, + 473, + 792, + 473 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { L _ { 0 } = \\int _ { - \\infty } ^ { \\infty } \\frac { 1 } { 4 } \\exp ( - 2 | t | ) d t . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1239, + 398, + 1401, + 398, + 1401, + 431, + 1239, + 431 + ], + "score": 0.9, + "latex": "\\mathbb { E } [ \\epsilon ^ { 4 } | X ] < \\infty" + }, + { + "category_id": 13, + "poly": [ + 846, + 397, + 981, + 397, + 981, + 431, + 846, + 431 + ], + "score": 0.89, + "latex": "\\mathbb { E } [ \\epsilon | X ] = 0 \\mathrm { \\it \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 534, + 601, + 571, + 601, + 571, + 631, + 534, + 631 + ], + "score": 0.89, + "latex": "C _ { n }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1324, + 391, + 1324, + 391, + 1353, + 345, + 1353 + ], + "score": 0.89, + "latex": "W ^ { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 929, + 365, + 1117, + 365, + 1117, + 393, + 929, + 393 + ], + "score": 0.89, + "latex": "0 < c < C < \\infty" + }, + { + "category_id": 13, + "poly": [ + 1244, + 432, + 1400, + 432, + 1400, + 464, + 1244, + 464 + ], + "score": 0.89, + "latex": "\\lambda = C _ { 0 } n ^ { - 2 / 5 }" + }, + { + "category_id": 13, + "poly": [ + 394, + 2003, + 452, + 2003, + 452, + 2034, + 394, + 2034 + ], + "score": 0.87, + "latex": "( \\lambda \\tau _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1365, + 1296, + 1400, + 1296, + 1400, + 1326, + 1365, + 1326 + ], + "score": 0.87, + "latex": "K _ { t }" + }, + { + "category_id": 13, + "poly": [ + 699, + 780, + 719, + 780, + 719, + 817, + 699, + 817 + ], + "score": 0.86, + "latex": "\\hat { f }" + }, + { + "category_id": 13, + "poly": [ + 511, + 396, + 744, + 396, + 744, + 432, + 511, + 432 + ], + "score": 0.84, + "latex": "\\epsilon \\triangleq \\nabla _ { a } \\ell ( f ^ { \\star } ( X ) , Y )" + }, + { + "category_id": 13, + "poly": [ + 1021, + 471, + 1041, + 471, + 1041, + 507, + 1021, + 507 + ], + "score": 0.82, + "latex": "\\hat { f }" + }, + { + "category_id": 13, + "poly": [ + 1375, + 1883, + 1401, + 1883, + 1401, + 1909, + 1375, + 1909 + ], + "score": 0.79, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1974, + 925, + 1974, + 925, + 2000, + 905, + 2000 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 901, + 332, + 978, + 332, + 978, + 366, + 901, + 366 + ], + "score": 0.66, + "latex": "\\ell ( a , y )" + }, + { + "category_id": 14, + "poly": [ + 519, + 1090, + 1181, + 1090, + 1181, + 1173, + 519, + 1173 + ], + "score": 0.66, + "latex": "K _ { t } ( \\cdot ) = \\sum _ { v } \\frac { h _ { v } ( t ) } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) \\mathrm { a n d } W _ { \\lambda } h _ { v } ( \\cdot ) = \\frac { \\lambda \\gamma _ { v } } { 1 + \\lambda \\gamma _ { v } } h _ { v } ( \\cdot ) ." + }, + { + "category_id": 13, + "poly": [ + 625, + 371, + 642, + 371, + 642, + 391, + 625, + 391 + ], + "score": 0.61, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 935, + 608, + 953, + 608, + 953, + 628, + 935, + 628 + ], + "score": 0.47, + "latex": "n" + }, + { + "category_id": 14, + "poly": [ + 636, + 1019, + 985, + 1019, + 985, + 1084, + 636, + 1084 + ], + "score": 0.32, + "latex": "S _ { n , \\lambda } ( f ^ { \\star } ) = { \\frac { 1 } { n } } \\epsilon _ { i } K _ { X _ { i } } - W _ { \\lambda } f ^ { \\star } ," + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1623.0, + 747.0, + 1623.0, + 747.0, + 1672.0, + 291.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 224.0, + 699.0, + 224.0, + 699.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1757.0, + 1407.0, + 1757.0, + 1407.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1407.0, + 1788.0, + 1407.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1818.0, + 1293.0, + 1818.0, + 1293.0, + 1855.0, + 291.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1855.0, + 1402.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1374.0, + 1880.0, + 1374.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1917.0, + 1402.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 589.0, + 1911.0, + 589.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1911.0, + 700.0, + 1911.0, + 700.0, + 1948.0, + 653.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1948.0, + 751.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 904.0, + 1973.0, + 904.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2006.0, + 926.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 393.0, + 2001.0, + 393.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 2001.0, + 1211.0, + 2001.0, + 1211.0, + 2036.0, + 453.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 331.0, + 588.0, + 331.0, + 588.0, + 369.0, + 294.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 331.0, + 900.0, + 331.0, + 900.0, + 369.0, + 749.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 331.0, + 1406.0, + 331.0, + 1406.0, + 369.0, + 979.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 363.0, + 624.0, + 363.0, + 624.0, + 398.0, + 295.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 363.0, + 928.0, + 363.0, + 928.0, + 398.0, + 643.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 363.0, + 1228.0, + 363.0, + 1228.0, + 398.0, + 1118.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 363.0, + 1405.0, + 363.0, + 1405.0, + 398.0, + 1402.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 510.0, + 396.0, + 510.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 396.0, + 845.0, + 396.0, + 845.0, + 435.0, + 745.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 396.0, + 992.0, + 396.0, + 992.0, + 435.0, + 982.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 396.0, + 1238.0, + 396.0, + 1238.0, + 435.0, + 1186.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 435.0, + 1402.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 426.0, + 496.0, + 426.0, + 496.0, + 476.0, + 288.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 426.0, + 791.0, + 426.0, + 791.0, + 476.0, + 741.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 426.0, + 1243.0, + 426.0, + 1243.0, + 476.0, + 1094.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 426.0, + 1409.0, + 426.0, + 1409.0, + 476.0, + 1401.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 472.0, + 501.0, + 472.0, + 501.0, + 509.0, + 289.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 472.0, + 1020.0, + 472.0, + 1020.0, + 509.0, + 588.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 472.0, + 1228.0, + 472.0, + 1228.0, + 509.0, + 1042.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 777.0, + 698.0, + 777.0, + 698.0, + 822.0, + 292.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 777.0, + 1275.0, + 777.0, + 1275.0, + 822.0, + 720.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 777.0, + 1404.0, + 777.0, + 1404.0, + 822.0, + 1368.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 815.0, + 868.0, + 815.0, + 868.0, + 847.0, + 296.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1424.0, + 378.0, + 1424.0, + 378.0, + 1470.0, + 291.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1424.0, + 990.0, + 1424.0, + 990.0, + 1470.0, + 926.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1464.0, + 297.0, + 1464.0, + 297.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1464.0, + 478.0, + 1464.0, + 478.0, + 1510.0, + 430.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1464.0, + 1208.0, + 1464.0, + 1208.0, + 1510.0, + 605.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 740.0, + 293.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 926.0, + 734.0, + 926.0, + 768.0, + 294.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 1059.0, + 1186.0, + 1059.0, + 1226.0, + 295.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 1364.0, + 1291.0, + 1364.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1329.0, + 1401.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1320.0, + 344.0, + 1320.0, + 344.0, + 1360.0, + 292.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1320.0, + 429.0, + 1320.0, + 429.0, + 1360.0, + 392.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 965.0, + 671.0, + 965.0, + 671.0, + 1021.0, + 291.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 965.0, + 787.0, + 965.0, + 787.0, + 1021.0, + 755.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 965.0, + 930.0, + 965.0, + 930.0, + 1021.0, + 894.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 597.0, + 533.0, + 597.0, + 533.0, + 638.0, + 293.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 597.0, + 934.0, + 597.0, + 934.0, + 638.0, + 572.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 597.0, + 965.0, + 597.0, + 965.0, + 638.0, + 954.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1012.0, + 1691.0, + 1012.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 653.0, + 1151.0, + 653.0, + 1151.0, + 692.0, + 294.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1228.0, + 291.0, + 1228.0, + 331.0, + 295.0, + 331.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 423, + 1405, + 423, + 1405, + 638, + 298, + 638 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 579, + 1805, + 1121, + 1805, + 1121, + 2008, + 579, + 2008 + ], + "score": 0.979, + "html": "
Reg StrengthTrain AccVal Acc
096.0±0.169.8± 0.2
Unif-reg (入= 0.001)96.4± 0.170.0± 0.2
Unif-reg (入= 0.01)95.7 ± 0.170.6 ±0.1
Unif-reg (入= 0.1)88.8±0.170.5 ± 0.1
Adaptive (HAR)96.2 ± 0.171.4±0.1
" + }, + { + "category_id": 5, + "poly": [ + 422, + 1259, + 1277, + 1259, + 1277, + 1436, + 422, + 1436 + ], + "score": 0.979, + "html": "
Reg StrengthAcc. of neg. reviewsAcc. of pos. reviewsMean Acc
091.9 ± 2.050.9 ±1.871.4± 0.5
Unif-reg (入= 0.01)94.3 ±1.851.9 ± 2.073.1± 0.3
Unif-reg (入= 0.1)91.5 ±1.964.3 ±1.677.9 ± 0.4
Ours (HAR)93.1 ± 1.572.8±1.783.0 ± 0.3
" + }, + { + "category_id": 1, + "poly": [ + 299, + 677, + 1403, + 677, + 1403, + 832, + 299, + 832 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1014, + 1404, + 1014, + 1404, + 1168, + 298, + 1168 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1558, + 1406, + 1558, + 1406, + 1713, + 299, + 1713 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 383, + 298, + 383 + ], + "score": 0.971 + }, + { + "category_id": 6, + "poly": [ + 297, + 1746, + 1397, + 1746, + 1397, + 1781, + 297, + 1781 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 6, + "poly": [ + 292, + 1201, + 1398, + 1201, + 1398, + 1236, + 292, + 1236 + ], + "score": 0.863 + }, + { + "category_id": 0, + "poly": [ + 301, + 882, + 680, + 882, + 680, + 917, + 301, + 917 + ], + "score": 0.825 + }, + { + "category_id": 0, + "poly": [ + 300, + 955, + 1073, + 955, + 1073, + 986, + 300, + 986 + ], + "score": 0.703 + }, + { + "category_id": 1, + "poly": [ + 300, + 1500, + 1231, + 1500, + 1231, + 1531, + 300, + 1531 + ], + "score": 0.523 + }, + { + "category_id": 0, + "poly": [ + 300, + 1500, + 1231, + 1500, + 1231, + 1531, + 300, + 1531 + ], + "score": 0.314 + }, + { + "category_id": 1, + "poly": [ + 300, + 955, + 1073, + 955, + 1073, + 986, + 300, + 986 + ], + "score": 0.227 + }, + { + "category_id": 13, + "poly": [ + 667, + 323, + 726, + 323, + 726, + 353, + 667, + 353 + ], + "score": 0.88, + "latex": "( \\lambda \\tau _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 811, + 1077, + 853, + 1077, + 853, + 1106, + 811, + 1106 + ], + "score": 0.86, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 1107, + 351, + 1107, + 351, + 1136, + 296, + 1136 + ], + "score": 0.86, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 394, + 608, + 452, + 608, + 452, + 638, + 394, + 638 + ], + "score": 0.85, + "latex": "( \\lambda \\tau _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1178, + 293, + 1199, + 293, + 1199, + 319, + 1178, + 319 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 925, + 578, + 945, + 578, + 945, + 604, + 925, + 604 + ], + "score": 0.64, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1744.0, + 1400.0, + 1744.0, + 1400.0, + 1783.0, + 298.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1199.0, + 1403.0, + 1199.0, + 1403.0, + 1238.0, + 294.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 881.0, + 684.0, + 881.0, + 684.0, + 924.0, + 295.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 955.0, + 1079.0, + 955.0, + 1079.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1236.0, + 1499.0, + 1236.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 423.0, + 1405.0, + 423.0, + 1405.0, + 458.0, + 296.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 451.0, + 1406.0, + 451.0, + 1406.0, + 490.0, + 292.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 484.0, + 1406.0, + 484.0, + 1406.0, + 518.0, + 293.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 513.0, + 1406.0, + 513.0, + 1406.0, + 553.0, + 292.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 546.0, + 1405.0, + 546.0, + 1405.0, + 577.0, + 296.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 575.0, + 924.0, + 575.0, + 924.0, + 610.0, + 293.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 575.0, + 1405.0, + 575.0, + 1405.0, + 610.0, + 946.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 607.0, + 393.0, + 607.0, + 393.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 607.0, + 1162.0, + 607.0, + 1162.0, + 639.0, + 453.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 679.0, + 1404.0, + 679.0, + 1404.0, + 712.0, + 297.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 707.0, + 1407.0, + 707.0, + 1407.0, + 744.0, + 295.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 809.0, + 293.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 798.0, + 1047.0, + 798.0, + 1047.0, + 838.0, + 293.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1016.0, + 1404.0, + 1016.0, + 1404.0, + 1049.0, + 296.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1045.0, + 1405.0, + 1045.0, + 1405.0, + 1078.0, + 294.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1075.0, + 810.0, + 1075.0, + 810.0, + 1112.0, + 294.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1075.0, + 1405.0, + 1075.0, + 1405.0, + 1112.0, + 854.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1107.0, + 1402.0, + 1107.0, + 1402.0, + 1140.0, + 352.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1135.0, + 993.0, + 1135.0, + 993.0, + 1170.0, + 293.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1557.0, + 1409.0, + 1557.0, + 1409.0, + 1593.0, + 292.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1590.0, + 1404.0, + 1590.0, + 1404.0, + 1624.0, + 296.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1654.0, + 296.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1650.0, + 1404.0, + 1650.0, + 1404.0, + 1683.0, + 296.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 934.0, + 1682.0, + 934.0, + 1715.0, + 296.0, + 1715.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": [ + 296.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 1177.0, + 289.0, + 1177.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 289.0, + 1408.0, + 289.0, + 1408.0, + 326.0, + 1200.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 666.0, + 318.0, + 666.0, + 359.0, + 292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 318.0, + 1408.0, + 318.0, + 1408.0, + 359.0, + 727.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 347.0, + 397.0, + 347.0, + 397.0, + 385.0, + 291.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 1236.0, + 1499.0, + 1236.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 955.0, + 1079.0, + 955.0, + 1079.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 444, + 636, + 1255, + 636, + 1255, + 990, + 444, + 990 + ], + "score": 0.985, + "html": "
Imbalance ratio Method10100
Noisy Cls.Rare Cls.Noisy Cls.Rare Cls.
ERM59.9 ± 1.165.2 ± 0.760.4± 0.97.9 ± 1.3
Co-teaching63.1 ± 2.359.4 ± 1.453.8 ± 1.94.4±1.8
INCV74.5 ± 1.263.7 ± 0.868.3 ± 1.82.1 ±1.3
MentorNet67.3 ± 1.665.5 ± 1.263.3 ± 1.510.8 ±1.9
L2RW65.8 ±1.466.3 ± 1.262.4 ± 2.111.3 ± 2.9
MW-Net71.4± 0.667.7 ± 0.665.0± 1.613.5 ± 2.4
GCE64.6 ± 1.160.2 ± 1.371.2 ± 1.92.6±1.4
DMI72.3 ± 1.563.3 ±1.270.8 ±1.76.2 ±1.9
Ours (HAR)76.1 ± 0.872.1 ± 1.073.0 ± 1.626.1±0.8
" + }, + { + "category_id": 5, + "poly": [ + 530, + 1477, + 1161, + 1477, + 1161, + 1779, + 530, + 1779 + ], + "score": 0.979, + "html": "
MethodAvg. Noisy Cls.Avg. . Clean Cls.
ERM68.6±0.293.6 ± 0.2
Reweight (MW-Net)75.0 ± 0.394.4± 0.2
Reweight (random)62.1±0.592.9 ± 0.5
Reweight (inverse)13.1 ± 0.990.9 ± 0.3
Unif-reg (optimal)75.3 ± 0.394.1± 0.2
Adap-reg (HAR)80.7±0.394.5 ±0.2
Adap-reg (random)74.8 ± 0.494.2±0.2
Adap-reg (inverse)73.2 ± 0.594.0± 0.2
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1099, + 1405, + 1099, + 1405, + 1254, + 298, + 1254 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1268, + 1404, + 1268, + 1404, + 1362, + 298, + 1362 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 394, + 1404, + 394, + 1404, + 519, + 298, + 519 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1873, + 1406, + 1873, + 1406, + 1967, + 299, + 1967 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 302, + 286, + 1402, + 286, + 1402, + 380, + 302, + 380 + ], + "score": 0.964 + }, + { + "category_id": 6, + "poly": [ + 298, + 546, + 1400, + 546, + 1400, + 609, + 298, + 609 + ], + "score": 0.941 + }, + { + "category_id": 6, + "poly": [ + 289, + 1391, + 1402, + 1391, + 1402, + 1454, + 289, + 1454 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 1816, + 562, + 1816, + 562, + 1847, + 298, + 1847 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 297, + 1044, + 1205, + 1044, + 1205, + 1075, + 297, + 1075 + ], + "score": 0.552 + }, + { + "category_id": 2, + "poly": [ + 311, + 233, + 1236, + 233, + 1236, + 261, + 311, + 261 + ], + "score": 0.42 + }, + { + "category_id": 1, + "poly": [ + 297, + 1044, + 1205, + 1044, + 1205, + 1075, + 297, + 1075 + ], + "score": 0.153 + }, + { + "category_id": 13, + "poly": [ + 364, + 426, + 437, + 426, + 437, + 455, + 364, + 455 + ], + "score": 0.86, + "latex": "34 . 1 \\%" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 544.0, + 1406.0, + 544.0, + 1406.0, + 584.0, + 293.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 562.0, + 575.0, + 562.0, + 611.0, + 294.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 696.0, + 1421.0, + 696.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1813.0, + 565.0, + 1813.0, + 565.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 1042.0, + 1209.0, + 1042.0, + 1209.0, + 1077.0, + 295.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 229.0, + 1243.0, + 229.0, + 1243.0, + 266.0, + 304.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1102.0, + 1402.0, + 1102.0, + 1402.0, + 1131.0, + 297.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1133.0, + 1403.0, + 1133.0, + 1403.0, + 1166.0, + 295.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1159.0, + 1406.0, + 1159.0, + 1406.0, + 1198.0, + 291.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1192.0, + 1402.0, + 1192.0, + 1402.0, + 1226.0, + 296.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 990.0, + 1222.0, + 990.0, + 1260.0, + 293.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1269.0, + 1401.0, + 1269.0, + 1401.0, + 1303.0, + 296.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1328.0, + 1230.0, + 1328.0, + 1230.0, + 1368.0, + 292.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 396.0, + 1404.0, + 396.0, + 1404.0, + 428.0, + 294.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 421.0, + 363.0, + 421.0, + 363.0, + 462.0, + 293.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 421.0, + 1405.0, + 421.0, + 1405.0, + 462.0, + 438.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 458.0, + 1404.0, + 458.0, + 1404.0, + 490.0, + 294.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 488.0, + 827.0, + 488.0, + 827.0, + 521.0, + 296.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1869.0, + 1407.0, + 1869.0, + 1407.0, + 1910.0, + 293.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1904.0, + 1406.0, + 1904.0, + 1406.0, + 1938.0, + 294.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1933.0, + 1304.0, + 1933.0, + 1304.0, + 1970.0, + 294.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 318.0, + 298.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 350.0, + 298.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 346.0, + 1392.0, + 346.0, + 1392.0, + 380.0, + 296.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1042.0, + 1209.0, + 1042.0, + 1209.0, + 1077.0, + 295.0, + 1077.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 307, + 649, + 1397, + 649, + 1397, + 1514, + 307, + 1514 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 295, + 1544, + 1407, + 1544, + 1407, + 1610, + 295, + 1610 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 15, + "poly": [ + 432.0, + 664.0, + 516.0, + 664.0, + 516.0, + 697.0, + 432.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 679.0, + 387.0, + 679.0, + 387.0, + 713.0, + 345.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 690.0, + 544.0, + 690.0, + 544.0, + 725.0, + 456.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 712.0, + 349.0, + 712.0, + 349.0, + 780.0, + 324.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 720.0, + 511.0, + 720.0, + 511.0, + 751.0, + 457.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 728.0, + 383.0, + 728.0, + 383.0, + 757.0, + 347.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 772.0, + 386.0, + 772.0, + 386.0, + 805.0, + 345.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 820.0, + 383.0, + 820.0, + 383.0, + 850.0, + 346.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 859.0, + 387.0, + 859.0, + 387.0, + 894.0, + 345.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 892.0, + 353.0, + 892.0, + 353.0, + 1019.0, + 317.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 947.0, + 385.0, + 947.0, + 385.0, + 976.0, + 346.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1030.0, + 386.0, + 1030.0, + 386.0, + 1063.0, + 345.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1100.0, + 386.0, + 1100.0, + 386.0, + 1133.0, + 335.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1113.0, + 340.0, + 1113.0, + 340.0, + 1225.0, + 312.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1147.0, + 386.0, + 1147.0, + 386.0, + 1180.0, + 335.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1193.0, + 385.0, + 1193.0, + 385.0, + 1226.0, + 335.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1242.0, + 385.0, + 1242.0, + 385.0, + 1275.0, + 335.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1290.0, + 385.0, + 1290.0, + 385.0, + 1321.0, + 330.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1328.0, + 335.0, + 1328.0, + 335.0, + 1431.0, + 307.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1344.0, + 385.0, + 1344.0, + 385.0, + 1376.0, + 330.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1399.0, + 385.0, + 1399.0, + 385.0, + 1430.0, + 330.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1467.0, + 376.0, + 1467.0, + 376.0, + 1474.0, + 370.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1486.0, + 920.0, + 1486.0, + 920.0, + 1512.0, + 862.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1546.0, + 1408.0, + 1546.0, + 1408.0, + 1578.0, + 297.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1322.0, + 1573.0, + 1322.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rJVorjCcKQ/rJVorjCcKQ.md b/parse/train/rJVorjCcKQ/rJVorjCcKQ.md new file mode 100644 index 0000000000000000000000000000000000000000..a96f6fbbf3c6c8bc33ac6486791eb3b923c726be --- /dev/null +++ b/parse/train/rJVorjCcKQ/rJVorjCcKQ.md @@ -0,0 +1,391 @@ +# SLALOM: FAST, VERIFIABLE AND PRIVATE EXECUTION OF NEURAL NETWORKS IN TRUSTED HARDWARE + +Florian Tramèr +Stanford University +tramer@cs.stanford.edu + +Dan Boneh Stanford University dabo@cs.stanford.edu + +# ABSTRACT + +As Machine Learning (ML) gets applied to security-critical or sensitive domains, there is a growing need for integrity and privacy for outsourced ML computations. A pragmatic solution comes from Trusted Execution Environments (TEEs), which use hardware and software protections to isolate sensitive computations from the untrusted software stack. However, these isolation guarantees come at a price in performance, compared to untrusted alternatives. This paper initiates the study of high performance execution of Deep Neural Networks (DNNs) in TEEs by efficiently partitioning DNN computations between trusted and untrusted devices. Building upon an efficient outsourcing scheme for matrix multiplication, we propose Slalom, a framework that securely delegates execution of all linear layers in a DNN from a TEE (e.g., Intel SGX or Sanctum) to a faster, yet untrusted, co-located processor. We evaluate Slalom by running DNNs in an Intel SGX enclave, which selectively delegates work to an untrusted GPU. For canonical DNNs (VGG16, MobileNet and ResNet variants) we obtain $6 \times$ to $2 0 \times$ increases in throughput for verifiable inference, and $4 \times$ to $1 1 \times$ for verifiable and private inference. + +# 1 INTRODUCTION + +Machine learning is increasingly used in sensitive decision making and security-critical settings. At the same time, the growth in both cloud offerings and software stack complexity widens the attack surface for ML applications. This raises the question of integrity and privacy guarantees for ML computations in untrusted environments, in particular for ML tasks outsourced by a client to a remote server. Prominent examples include cloud-based ML APIs (e.g., a speech-to-text application that consumes user-provided data) or general ML-as-a-Service platforms. + +Trusted Execution Environments (TEEs), e.g, Intel SGX (McKeen et al., 2013), ARM TrustZone (Alves & Felton, 2004) or Sanctum (Costan et al., 2016) offer a pragmatic solution to this problem. TEEs use hardware and software protections to isolate sensitive code from other applications, while attesting to its correct execution. Running outsourced ML computations in TEEs provides remote clients with strong privacy and integrity guarantees. + +For outsourced ML computations, TEEs outperform pure cryptographic approaches (e.g, (Gilad-Bachrach et al., 2016; Mohassel & Zhang, 2017; Ghodsi et al., 2017; Juvekar et al., 2018)) by multiple orders of magnitude. At the same time, the isolation guarantees of TEEs still come at a steep price in performance, compared to untrusted alternatives (i.e., running ML models on contemporary hardware with no security guarantees). For instance, Intel SGX (Intel Corp., 2015) incurs significant overhead for memory intensive tasks (Orenbach et al., 2017; Harnik & Tsfadia, 2017), has difficulties exploiting multi-threading, and is currently limited to desktop CPUs that are outmatched by untrusted alternatives (e.g., GPUs or server CPUs). Thus, our thesis is that for modern ML workloads, TEEs will be at least an order of magnitude less efficient than the best available untrusted hardware. + +This leads us to the main question of this paper: How can we most efficiently leverage TEEs for secure machine learning? This was posed by Stoica et al. (2017) as one of nine open research problems for system challenges in AI. A specific challenge they raised is that of appropriately splitting ML computations between trusted and untrusted components, to increase efficiency as well as security by minimizing the Trusted Computing Base. + +This paper explores a novel approach to this challenge, wherein a Deep Neural Network (DNN) execution is partially outsourced from a TEE to a co-located, untrusted but faster device. Our approach, inspired by the verifiable ASICs of Wahby et al. (2016), differs from cryptographic ML outsourcing. In our case, work is delegated between two co-located parties, thus allowing for highly interactive—yet conceptually simpler— outsourcing protocols with orders-of-magnitude better efficiency. Our work also departs from prior systems that execute DNNs fully in a TEE (Ohrimenko et al., 2016; Hunt et al., 2018; Cheng et al., 2018; Hanzlik et al., 2018). + +The main observation that guides our approach is that matrix multiplication—the main bottleneck in DNNs— admits a concretely efficient verifiable outsourcing scheme known as Freivalds’ algorithm (Freivalds, 1977), which can also be turned private in our setting. Our TEE selectively outsources these CPU intensive steps to a fast untrusted co-processor (and runs the remaining steps itself) therefore achieving much better performance than running the entire computation in the enclave, without compromising security. + +Contributions. We propose Slalom, a framework for efficient DNN inference in any trusted execution environment (e.g., SGX or Sanctum). To evaluate Slalom, we build a lightweight DNN library for Intel SGX, which may be of independent interest. Our library allows for outsourcing all linear layers to an untrusted GPU without compromising integrity or privacy. Our code is available at https://github.com/ftramer/slalom. + +We formally prove Slalom’s security, and evaluate it on multiple canonical DNNs with a variety of computational costs—VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNets (He et al., 2016). Compared to running all computations in SGX, outsourcing linear layers to an untrusted GPU increases throughput (as well as energy efficiency) by $6 \times$ to $2 0 \times$ for verifiable inference, and by $4 \times$ to $1 1 \times$ for verifiable and private inference. Finally, we discuss open challenges towards efficient verifiable training of DNNs in TEEs. + +# 2 BACKGROUND + +# 2.1 PROBLEM SETTING + +We consider an outsourcing scheme between a client $\mathcal { C }$ and a server $s$ , where $s$ executes a DNN $F ( x ) : \mathcal { X } \mathcal { Y }$ on data provided by $\mathcal { C }$ . The DNN can either belong to the user (e.g., as in some ML-as-a-service platforms), or to the server (e.g., as in a cloud-based ML API). Depending on the application, this scheme should satisfy one or more of the following security properties (see Appendix $\mathbf { B }$ for formal definitions): + +• t-Integrity: For any $s$ and input $x$ , the probability that a user interacting with $s$ does not abort (i.e., output ⊥) and outputs an incorrect value $\tilde { y } \ne F ( x )$ is less than $t$ . +• Privacy: The server $s$ learns no information about the user’s input $x$ . +• Model privacy: If the model $F$ is provided by the user, $s$ learns no information about $F$ (beyond e.g., its approximate size). If $F$ belongs to the server, $\mathcal { C }$ learns no more about $F$ than what is revealed by $y = F ( x )$ . 1 + +2.2 TRUSTED EXECUTION ENVIRONMENTS (TEES), INTEL SGX, AND A STRONG BASELINE + +Trusted Execution Environments (TEE) such as Intel SGX, ARM TrustZone or Sanctum (Costan et al., 2016) enable execution of programs in secure enclaves. Hardware protections isolate computations in enclaves from all programs on the same host, including the operating system. Enclaves can produce remote attestations—digital signatures over an enclave’s code—that a remote party can verify using the manufacturer’s public key. Our experiments with Slalom use hardware enclaves provided by Intel SGX (see Appendix A for details).2 + +Table 1: Security guarantees and performance (relative to baseline) of different ML outsourcing schemes. + +
ModelPrivacy
ApproachTEEIntegrityPrivacyw.r.t. Serverw.r.t. ClientThroughput (relative)
SafetyNets (Ghodsi et al.,2017)1.OOO≤1/200 ×
Gazelle (Juvekar et al.,2018)1O. *O1≤1/1000 ×
Secure baseline (run DNN in TEE).
Insecure baseline (run DNN on GPU)O0≥ 50x
Slalom (Ours)..O4× - 20×
+ +\* With an offline preprocessing phase. + +TEEs offer an efficient solution for ML outsourcing: The server runs an enclave that initiates a secure communication with $\mathcal { C }$ and evaluates a model $F$ on $\mathcal { C }$ ’s input data. This simple scheme (which we implemented in SGX, see Section 4) outperforms cryptographic ML outsourcing protocols by 2-3 orders of magnitude (albeit under a different trust model). See Table 1 and Appendix C for a comparison to two representative works. + +Yet, SGX’s security comes at a performance cost, and there remains a large gap between TEEs and untrusted devices. For example, current SGX CPUs are limited to $1 2 8 \mathrm { M B }$ of Processor Reserved Memory (PRM) (Costan & Devadas, 2016) and incur severe paging overheads when exceeding this allowance (Orenbach et al., 2017). We also failed to achieve noticeable speed ups for multi-threaded DNN evaluations in SGX enclaves (see Appendix H). For DNN computations, current SGX enclaves thus cannot compete—in terms of performance or energy efficiency (see Appendix C)—with contemporary untrusted hardware, such as a GPU or server CPU. + +In this work, we treat the above simple (yet powerful) TEE scheme as a baseline, and identify settings where we can still improve upon it. We will show that our system, Slalom, substantially outperforms this baseline when the server has access to the model $F$ (e.g., $F$ belongs to $s$ as in cloud ML APIs, or $F$ is public). Slalom performs best for verifiable inference (the setting considered in SafetyNets (Ghodsi et al., 2017)). If the TEE can run some offline data-independent preprocessing (e.g., as in Gazelle (Juvekar et al., 2018)), Slalom also outperforms the baseline for private (and verifiable) outsourced computations in a later online phase. Such a two-stage approach is viable if user data is sent at irregular intervals yet has to be processed with high throughput when available. + +2.3 OUTSOURCING OUTSOURCED DNNS AND FREIVALDS’ ALGORITHM + +Our idea for speeding up DNN inference in TEEs is to further outsource work from the TEE to a co-located faster untrusted processor. Improving upon the above baseline thus requires that the combined cost of doing work on the untrusted device and verifying it in the TEE be cheaper than evaluating the full DNN in the TEE. + +Wahby et al. (2016; 2017) aim at this goal for arbitrary computations outsourced between co-located ASICs. The generic non-interactive proofs they use for integrity are similar to those used in SafetyNets (Ghodsi et al., 2017), which incur overheads that are too large to warrant outsourcing in our setting (e.g., Wahby et al. (2016) find that the technology gap between trusted and untrusted devices needs to be of over two decades for their scheme to break even). Similarly for privacy, standard cryptographic outsourcing protocols (e.g., (Juvekar et al., 2018)) are unusable in our setting as simply running the computation in the TEE is much more efficient (see Table 1). + +To overcome this barrier, we design outsourcing protocols tailored to DNNs, leveraging two insights: + +1. In our setting, the TEE is co-located with the server’s faster untrusted processors, thus widening the design space to interactive outsourcing protocols with high communication but better efficiency. 2. The TEE always has knowledge of the model and can selectively outsource part of the DNN evaluation and compute others—for which outsourcing is harder—itself. + +DNNs are a class of functions that are particularly well suited for selective outsourcing. Indeed, non-linearities— which are hard to securely outsource (with integrity or privacy)—represent a small fraction of the computation in a DNN so we can evaluate these in the TEE (e.g., for VGG16 inference on a single CPU thread, about $1 . 5 \%$ of the computation is spent on non-linearities). In contrast, linear operators—the main computational bottleneck in DNNs—admit for a conceptually simple yet concretely efficient secure delegation scheme, described below. + +Integrity. We verify integrity of outsourced linear layers using variants of an algorithm by Freivalds (1977). + +Lemma 2.1 (Freivalds). Let $A , B$ and $C$ be $n \times n$ matrices over a field $\mathbb { F }$ and let s be a uniformly random vector in $\mathbb { S } ^ { n }$ , for $\mathbb { S } \subseteq \mathbb { F }$ . Then, $\operatorname* { P r } [ C s = A ( B s ) \mid C \neq A B ] = \operatorname* { P r } [ ( C - A B ) s = \mathbf { 0 } \mid ( C - A B ) \neq \mathbf { 0 } ] \leq ^ { 1 } / | \mathbb { S } |$ . + +The randomized check requires $3 n ^ { 2 }$ multiplications, a significant reduction (both in concrete terms and asymptotically) over evaluating the product directly. The algorithm has no false negatives and trivially extends to rectangular matrices. Independently repeating the check $k$ times yields soundness error $1 / | \mathbb { S } | ^ { k }$ . + +Privacy. Input privacy for outsourced linear operators could be achieved with linearly homomorphic encryption, but the overhead (see the micro-benchmarks in (Juvekar et al., 2018)) is too high to compete with our baseline (i.e., computing the function directly in the TEE would be faster than outsourcing it over encrypted data). + +We instead propose a very efficient two-stage approach based on symmetric cryptography, i.e., an additive stream cipher. Let $f : \mathbb { F } ^ { m } \mathbb { F } ^ { n }$ be a linear function over a field $\mathbb { F }$ . In an offline phase, the TEE generates a stream of one-time-use pseudorandom elements $r \in \mathbb { F } ^ { m }$ , and pre-computes $u = f ( r )$ . Then, in the online phase when the remote client sends an input $x$ , the TEE computes $\mathtt { E n c } ( x ) = x + r$ over $\mathbb { F } ^ { m }$ (i.e., a secure encryption of $x$ with a stream cipher), and outsources the computation of $f ( \mathsf { E n c } ( x ) )$ to the faster processor. Given the result $f ( \mathsf { E n c } ( x ) ) = f ( x + r ) = f ( x ) + f ( r ) = f ( x ) \overset { \cdot } { + } u$ , the TEE recovers $f ( x )$ using the pre-computed $u$ . + +Communication. Using Freivalds’ algorithm and symmetric encryption for each linear layer in a DNN incurs high interaction and communication between the TEE and untrusted co-processor (e.g., over 50MB per inference for VGG16, see Table 3). This would be prohibitive if they were not co-located. There are protocols with lower communication than repeatedly using Freivalds’ ((Fiore & Gennaro, 2012; Thaler, 2013; Ghodsi et al., 2017)). Yet, these incur a high overhead on the prover in practice and are thus not suitable in our setting. + +# 3 SLALOM + +We introduce Slalom, a three-step approach for outsourcing DNNs from a TEE to an untrusted but faster device: (1) Inputs and weights are quantized and embedded in a field $\mathbb { F }$ ; (2) Linear layers are outsourced and verified using Freivalds’ algorithm; (3) Inputs of linear layers are encrypted with a pre-computed pseudorandom stream to guarantee privacy. Figure 1 shows two Slalom variants, one to achieve integrity, and one to also achieve privacy. + +We focus on feed-forward networks with fully connected layers, convolutions, separable convolutions, pooling layers and activations. Slalom can be extended to other architectures (e.g., residual networks, see Section 4.3). + +
Slalomwith integrity TEE(F,x1) S(F)
for i∈ [1,n] do
yi=xiWi
xi+1=σ(yi)
1...yn
fori∈[1,n] do assert Freivalds(yi,x,W)
xi+1=σ(yi)
return yn
+ +
Slalom with integrity& privacy TEE(F,x1) S(F)
Preproc: for i∈[1,n] dori ← Fmi,ui =riWi
for i∈[1,n] do 主 xi=xi+ri
起 yi=xW
yi=yi-ui
assert Freivalds(yi,xi,Wi)
xi+1=σ(yi) return yn
+ +# 3.1 QUANTIZATION + +The techniques we use for integrity and privacy (Freivalds’ algorithm and stream ciphers) work over a field $\mathbb { F }$ . We thus quantize all inputs and weights of a DNN to integers, and embed these integers in the field $\mathbb { Z } _ { p }$ of integers modulo a prime $p$ (where $p$ is larger than all values computed in a DNN evaluation, so as to avoid wrap-around). + +As in (Gupta et al., 2015), we convert floating point numbers $x$ to a fixed-point representation as $\tilde { x } = \mathtt { F P } ( x ; l ) : =$ $\mathtt { r o u n d } ( 2 ^ { l } \cdot x ) .$ . For a linear layer with kernel $W$ and bias $b$ , we define integer parameters $\tilde { W } = \mathrm { F P } ( W , l ) , \tilde { b } =$ $\mathrm { E P } ( b , 2 l )$ . After applying the layer to a quantized input $\tilde { x }$ , we scale the output by $2 ^ { - l }$ and re-round to an integer. + +For efficiency reasons, we perform integer arithmetic using floats (so-called fake quantization), and choose $p < 2 ^ { 2 4 }$ to avoid loss of precision (we use $p = 2 ^ { 2 4 } - 3 )$ . For the models we evaluate, setting $l = 8$ for all weights and inputs ensures that all DNN values are bounded by $2 ^ { 2 4 }$ , with less than a $0 . 5 \%$ drop in accuracy (see Table 3). When performing arithmetic modulo $p$ (e.g., for Freivalds’ algorithm or when computing on encrypted data), we use double-precision floats, to reduce the number of modular reductions required (details are in Appendix F). + +# 3.2 VERIFYING COMMON LINEAR OPERATORS + +We now describe Slalom’s approach to verifying the integrity of outsourced linear layers. We describe these layers in detail in Appendix D and summarize this section’s results in Table 2. + +Freivalds’ Algorithm for Batches. The most direct way of applying Freivalds’ algorithm to arbitrary linear layers of a DNN is by exploiting batching. Any linear layer $f ( x )$ from inputs of size $m$ to outputs of size $n$ can be represented (with appropriate reshaping) as $f ( x ) = x ^ { \top } W$ for a (often sparse and implicit) $m \times n$ matrix $W$ + +For a batch $X$ of size $B$ , we can outsource $f ( X )$ and check that the output $Y$ satisfies $f ( s ^ { \top } X ) = s ^ { \top } Y$ , for a random vector $s$ (we are implicitly applying Freivalds to the matrix product $X W = Y$ ). As the batch size $B$ grows, the cost of evaluating $f$ is amortized and the total verification cost is $| X | + | Y | + \mathsf { c o s t } _ { f }$ multiplications (i.e., we approach one operation per input and output). Yet, as we show in Section 4.3, while batched verification is worthwhile for processors with larger memory, it is prohibitive in SGX enclaves due to the limited PRM. + +For full convolutions (and pointwise convolutions), a direct application of Freivalds’ check is worthwhile even for single-element batches. For $f ( x ) = \mathbf { C o n v } ( x , W )$ and purported output $y$ , we can sample a random vector $s$ of + +Table 2: Complexity (number of multiplications) for evaluating and verifying linear functions. The layers are “Fully Connected”, ”Convolution”, ”Depthwise Convolution” and ”Pointwise Convolution”, defined in Appendix D. Each layer $f$ has an input $x$ , output $y$ and kernel $W$ . We assume a batch size of $B \geq 1$ . + +
Layer|x|,|yl|W|costf (B=1)Batched verificationWith preproc.
FChin,houthin·hout|a|·lyB·(lx|+lyl)+cost fB·(lx|+lyl)
Convh·w·Cin,h·w·Coutk² · Cin ·Coutal·k2 · CoutB·(lx|+lyl)+Cin·Cout+ |x| · k²B·(|xl+lyl)
Depth.Convh·w·Cin,h·w·Cink2.Cinlac|.k²B·(lx|+lyl)+cost fB·(|x|+ lyl)
Point. Convh·w ·Cin,h · w· CoutCin·Cout|c| · CoutB·(x|+lyl)+Cin·CoutB·(lx|+|yl)
+ +dimension $c _ { \mathrm { o u t } }$ (the number of output channels), and check that $\operatorname { C o n v } ( x , W s ) = y s$ (with appropriate reshaping). +For a batch of inputs $X$ , we can also apply Freivalds’ algorithm twice to reduce both $W$ and $X$ . + +Preprocessing. We now show how to obtain an outsourcing scheme for linear layers that has optimal verification complexity (i.e., $| x | + | y |$ operations) for single-element batches and arbitrary linear operators, while at the same time compressing the DNN’s weights (a welcome property in our memory-limited TEE model). + +We leverage two facts: (1) DNN weights are fixed at inference time, so part of Freivalds’ check can be precomputed; (2) the TEE can keep secrets from the host $s$ , so the random values $s$ can be re-used across layers or inputs (if we run Freivalds’ check $n$ times with the same secret randomness, the soundness errors grows at most by a factor $n$ ). Our verification scheme with preprocessing follows from a reformulation of Lemma (2.1): + +Lemma 3.1. Let $f : \mathbb { F } ^ { m } \mathbb { F } ^ { n }$ be a linear operator, $f ( x ) : = x ^ { \top } W$ . Let s be uniformly random in $\mathbb { S } ^ { n }$ , for $\mathbb { S } \subseteq \mathbb { F }$ , and let $\tilde { s } : = \nabla F _ { x } ( s ) = W s$ . For any $\boldsymbol { x } \in \mathbb { F } ^ { m }$ , $y \in \mathbb { F } ^ { n }$ , we have $\operatorname* { P r } \left[ y ^ { \top } s = x ^ { \top } { \tilde { s } } \mid y \neq f ( x ) \right] \leq { \boldsymbol { \mathrm { 1 } } } / { \boldsymbol { \mathrm { | \mathbb { S } } } } { \boldsymbol { \mathrm { | \nabla } } }$ . + +The check requires $| x | + | y |$ multiplications, and storage for $s$ and ${ \tilde { s } } : = W s$ (of size $| x |$ and $| y | ,$ ). To save space, we can reuse the same random $s$ for every layer. The memory footprint of a model is then equal to the size of the inputs of all its linear layers (e.g., for VGG16 the footprint is reduced from 550MB to 36MB, see Table 3). + +# 3.3 INPUT PRIVACY + +To guarantee privacy of the client’s inputs, we use precomputed blinding factors for each outsourced computation, as described in Section 2.3. The TEE uses a cryptographic Pseudo Random Number Generator (PRNG) to generate blinding factors. The precomputed “unblinding factors” are encrypted and stored in untrusted memory or disk. In the online phase, the TEE regenerates the blinding factors using the same PRNG seed, and uses the precomputed unblinding factors to decrypt the output of the outsourced linear layer. + +This blinding process incurs several overheads: (1) the computations on the untrusted device have to be performed over $\mathbb { Z } _ { p }$ so we use double-precision arithmetic. (2) The trusted and untrusted processors exchange data in-between each layer, rather than at the end of a full inference pass. (3) The TEE has to efficiently load precomputed unblinding factors, which requires either a large amount of RAM, or a fast access to disk (e.g., a PCIe SSD). + +Slalom’s security is given by the following results. Formal definitions and proofs are in Appendix B. Let negl be a negligible function (for any integer $c > 0$ there exists an integer $N _ { c }$ such that for all $x > N _ { c }$ , $| \mathrm { n e g l } ( x ) | < \bar { 1 } / { x ^ { c } } )$ + +Theorem 3.2. Let Slalom be the protocol from Figure 1 (right), where $F$ is an $n$ -layer DNN, and Freivalds’ algorithm is repeated k times per layer with random vectors drawn from $\mathbb { S } \subseteq \mathbb { F }$ . Assume all random values are generated using a secure PRNG with security parameter $\lambda$ . Then, Slalom is a secure outsourcing scheme for $F$ between a TEE and an untrusted co-processor $s$ with privacy and $t$ -integrity for $t = n / \vert \mathbb { S } \vert ^ { k } - \mathrm { n e g l } ( \lambda )$ . + +Corollary 3.3. Assuming the TEE is secure (i.e., it acts as a trusted third party hosted by $s$ ), Slalom is a secure outsourcing scheme between a remote client $\mathcal { C }$ and server $\boldsymbol { S }$ with privacy and $t$ -integrity for $t = { \boldsymbol { \mathscr { n } } } / { \boldsymbol { | \mathbb { S } } } { \boldsymbol { \vert \sp k - \mathrm { n e g l } } } ( \lambda )$ . If the model $F$ is the property of $\boldsymbol { S }$ , the scheme further satisfies model privacy. + +# 4 EMPIRICAL EVALUATION + +We evaluate Slalom on real Intel SGX hardware, on micro-benchmarks and a sample application (ImageNet inference with VGG16, MobileNet and ResNet models). Our aim is to show that, compared to a baseline that runs inference fully in the TEE, outsourcing linear layers increases performance without sacrificing security. + +# 4.1 IMPLEMENTATION + +As enclaves cannot access most OS features (e.g., multi-threading, disk and driver IO), porting a large framework such as TensorFlow or Intel’s MKL-DNN to SGX is hard. Instead, we designed a lightweight $\mathrm { C } { + + }$ library for feed-forward networks based on Eigen, a linear-algebra library which TensorFlow uses as a CPU backend. Our library implements the forward pass of DNNs, with support for dense layers, standard and separable convolutions, pooling, and activations. When run on a native CPU (without SGX), its performance is comparable to TensorFlow on CPU (compiled with AVX). Our code is available at https://github.com/ftramer/slalom. + +Slalom performs arithmetic over $\mathbb { Z } _ { p }$ , for $p = 2 ^ { 2 4 } - 3$ . For integrity, we apply Freivalds’ check twice to each layer $k = 2 ,$ ), with random values from $\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]$ , to achieve 40 bits of statistical soundness per layer (see Appendix F for details on the selection of these parameters). For a 50-layer DNN, $s$ has a chance of less than 1 in 22 billion of fooling the TEE on any incorrect DNN evaluation (a slightly better guarantee than in SafetyNets). For privacy, we use AES-CTR and AES-GCM to generate, encrypt and authenticate blinding factors. + +# 4.2 SETUP + +We use an Intel Core i7-6700 Skylake 3.40GHz processor with 8GB of RAM, a desktop processor with SGX support. The outsourced computations are performed on a co-located Nvidia TITAN XP GPU. Due to a lack of native internal multi-threading in SGX, we run our TEE in a single CPU thread. We discuss challenges for efficient parallelization in Appendix H. We evaluate Slalom on the following workloads: + +• Synthetic benchmarks for matrix products, convolutions and separable convolutions, where we compare the enclave’s running time for computing a linear operation to that of solely verifying the result. • ImageNet (Deng et al., 2009) classification with VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNet He et al. (2016) models (with fused Batch Normalization layers when applicable). + +MobileNet, a model tailored for low compute devices, serves as a worst-case benchmark for Slalom, as the model’s design aggressively minimizes the amount of computation performed per layer. We also consider a “fused” variant of MobileNet with no activation between depthwise and pointwise convolutions. Removing these activations improves convergence and accuracy (Chollet, 2017; Sheng et al., 2018), while also making the network more outsourcing-friendly (i.e., it is possible to verify a separable convolution in a single step). + +Our evaluation focuses on throughput (number of forward passes per second). We also discuss energy efficiency in Appendix C to account for hardware differences between our baseline (TEE only) and Slalom $\mathrm { ( T E E + G P U ) }$ ). + +# 4.3 RESULTS + +Micro-Benchmarks. Our micro-benchmark suite consists of square matrix products of increasing dimensions, convolutional operations performed by VGG16, and separable convolutions performed by MobileNet. In all cases, the data is pre-loaded inside an enclave, so we only measure the in-enclave execution time. Figure 2 plots the relative speedups of various verification strategies over the cost of computing the linear operation directly. In all cases, the baseline computation is performed in single-precision floating point, and the verification algorithms repeat Freivalds’ check so as to attain at least 40 bits of statistical soundness. + +![](images/e479efd0e691ddcb877c1c08f199812ca305e3227b9c63d4af690b286c7b0522.jpg) +Figure 2: Micro benchmarks on Intel SGX. We plot the relative speedup of verifying the result of a linear operator compared to computing it entirely in the enclave. The dotted line shows the throughput obtained for a direct computation. “Fused” separable convolutions contain no intermediate activation. + +For square matrices of dimensions up to 2048, verifying an outsourced result is $4 \times$ to $8 \times$ faster than computing it. For larger matrices, we exceed the limit of SGX’s DRAM, so the enclave resorts to expensive paging which drastically reduces performance both for computation and verification. + +For convolutions (standard or separable), we achieve large savings with outsourcing if Freivalds’ algorithm is applied with preprocessing. The savings get higher as the number of channels increases. Without preprocessing, Freivalds’ algorithm results in savings when $c _ { \mathrm { o u t } }$ is large. Due to SGX’s small PRM, batched verification is only effective for operators with small memory footprints. As expected, “truly” separable convolutions (with no intermediate non-linearity) are much faster to verify, as they can be viewed as a single linear operator. + +Verifiable Inference. Figure 3 shows the throughout of end-to-end forward passes in two neural networks, VGG16 and MobileNet. For integrity, we compare the secure baseline (executing the DNN fully in the enclave) to two variants of the Slalom algorithm in Figure 1. The first (in red) applies Freivalds’ algorithm “on-the-fly”, while the second more efficient variant (in orange) pre-computes part of Freivalds’ check as described in Section 3.2. + +The VGG16 network is much larger (500MB) than SGX’s PRM. As a result, there is a large overhead on the forward pass and verification without preprocessing. If the enclave securely stores preprocessed products $W r$ for all network weights, we drastically reduce the memory footprint and achieve up to a $2 0 . 3 \times$ increase in throughput. We also ran the lower-half of the VGG16 network (without the fully connected layers), a common approach for extracting features for transfer learning or object recognition (Liu et al., 2016). This part fits in the PRM, and we thus achieve higher throughput for in-enclave forward passes and on-the-fly verification. + +For MobileNet, we achieve between $3 . 6 \times$ and $6 . 4 \times$ speedups when using Slalom for verifiable inference (for the standard or “fused” model, respectively). The speedups are smaller than for VGG16, as MobileNet performs much fewer operations per layer (verifying a linear layer requires computing at least two multiplications for each input and output. The closer the forward pass gets to that lower-bound, the less we can save by outsourcing). + +Private Inference. We further benchmark the cost of private DNN inference, where inputs of outsourced linear layers are additionally blinded. Blinding and unblinding each layer’s inputs and outputs is costly, especially in SGX due to the extra in-enclave memory reads and writes. Nevertheless, for VGG16 and the fused MobileNet variant without intermediate activations, we achieve respective speedups of $1 3 . 0 \times$ and $5 . 0 \times$ for private outsourcing (in black in Figure 3), and speedups of $1 0 . 7 \times$ and $4 . 1 \times$ when also ensuring integrity (in purple). For this benchmark, the precomputed unblinding factor are stored in untrusted memory. + +We performed the same experiments on a standard CPU (i.e., without SGX) and find that Slalom’s improvements are even higher in non-resource-constrained or multi-threaded environments (see Appendix G-H). Slalom’s improvements over the baseline also hold when accounting for energy efficiency (see Section C). + +![](images/5df56a4274ed6e233912c5524664ae350b78563790ca22e417ac562aad5df2f1.jpg) +Figure 3: Verifiable and private inference with Intel SGX. We show results for VGG16, VGG16 without the fully connected layers, MobileNet, and a fused MobileNet variant with no intermediate activation for separable convolutions. We compare the baseline of fully executing the DNN in the enclave (blue) to different secure outsourcing schemes: integrity with Freivalds (red); integrity with Freivalds and precomputed secrets (yellow); privacy only (black); privacy and integrity (purple). + +![](images/9ceb8a1cf9a5c8503bd599b1f66c4bf349f3d490915536e0c23e1b7269842915.jpg) +Figure 4: Secure outsourcing of ResNet models with Intel SGX. We compare the baseline of fully executing the DNN in the enclave (blue) to secure outsourcing with integrity (yellow) and privacy and integrity (purple). + +Extending Slalom to Deep Residual Networks. The Slalom algorithm in Figure 1 and our evaluations above focus on feed-forward architectures. Extending Slalom to more complex DNNs is quite simple. To illustrate, we consider the family of ResNet models (He et al., 2016), which use residual blocks $f ( x ) = \sigma ( f _ { 1 } ( x ) + f _ { 2 } ( x ) )$ that merge two feed-forward “paths” $f _ { 1 }$ and $f _ { 2 }$ into a final activation $\sigma$ . To verify integrity of $f ( x )$ , the TEE simply verifies all linear layers in $f _ { 1 }$ and $f _ { 2 }$ and computes $\sigma$ directly. For privacy, the TEE applies the interactive Slalom protocol in Figure 1 (right) in turn to $f _ { 1 }$ and $f _ { 2 }$ , and then computes $\sigma$ . The results for the privacy-preserving Slalom variant in Figure 4 use a preliminary implementation that performs all required operations—and thus provides meaningful performance numbers—but without properly constructed unblinding factors. + +We use the ResNet implementation from Keras Chollet et al. (2015), which contains a pre-trained 50-layer variant. For this model, we find that our quantization scheme results in less than a $0 . 5 \%$ decrease in accuracy (see Table 3). For other variants (i.e., with 18, 34, 101 and 152 layers) we compute throughput on untrained models. Figure 4 shows benchmarks for different ResNet variants when executed fully in the enclave (our baseline) as well as secure outsourcing with integrity or privacy and integrity. For all models, we achieve $6 . 6 \times$ to $1 4 . 4 \times$ speedups for verifiable inference and $4 . 4 \times$ to $9 . 0 \times$ speedups when adding privacy. + +Comparing results for different models is illustrative of how Slalom’s savings scale with model size and architectural design choices. The 18 and 34-layer ResNets use convolutions with $3 \times 3$ kernels, whereas the larger models mainly use pointwise convolutions. As shown in Table 2 verifying a convolution is about a factor $k ^ { 2 } \cdot c _ { \mathrm { o u t } }$ than computing it, which explains the higher savings for models that use convolutions with large kernel windows. When adding more layers to a model, we expect Slalom’s speedup over the baseline to remain constant (e.g., if we duplicate each layer, the baseline computation and the verification should both take twice as long). Yet we find that Slalom’s speedups usually increase as layers get added to the ResNet architecture. This is because the deeper ResNet variants are obtained by duplicating layers towards the end of the pipeline, which have the largest number of channels and for which Slalom achieves the highest savings. + +# 5 CHALLENGES FOR VERIFIABLE AND PRIVATE TRAINING + +Our techniques for secure outsourcing of DNN inference might also apply to DNN training. Indeed, a backward pass consists of similar linear operators as a forward pass, and can thus be verified with Freivalds’ algorithm. Yet, applying Slalom to DNN training is challenging, as described below, and we leave this problem open. + +• Quantizing DNNs for training is harder than for inference, due to large changes in weight magnitudes (Micikevicius et al., 2018). Thus, a more flexible quantization scheme than the one we used would be necessary. • Because the DNN’s weights change during training, the same preprocessed random vectors for Freivalds’ check cannot be re-used indefinitely. The most efficient approach would presumably be to train with very large batches than can then be verified simultaneously. • Finally, the pre-computation techniques we employ for protecting input privacy do not apply for training, as the weights change after every processed batch. Moreover, Slalom does not try to hide the model weights from the untrusted processor, which might be a requirement for private training. + +# 6 CONCLUSION + +This paper has studied the efficiency of evaluating a DNN in a Trusted Execution Environment (TEE) to provide strong integrity and privacy guarantees. We explored new approaches for segmenting a DNN evaluation to securely outsource work from a trusted environment to a faster co-located but untrusted processor. + +We designed Slalom, a framework for efficient DNN evaluation that outsources all linear layers from a TEE to a GPU. Slalom leverage Freivalds’ algorithm for verifying correctness of linear operators, and additionally encrypts inputs with precomputed blinding factors to preserve privacy. Slalom can work with any TEE and we evaluated its performance using Intel SGX on various workloads. For canonical DNNs (VGG16, MobileNet and ResNet variants), we have shown that Slalom boosts inference throughput without compromising security. + +Securely outsourcing matrix products from a TEE has applications in ML beyond DNNs (e.g., non negative matrix factorization, dimensionality reduction, etc.) We have also explored avenues and challenges towards applying similar techniques to DNN training, an interesting direction for future work. Finally, our general approach of outsourcing work from a TEE to a faster co-processor could be applied to other problems which have fast verification algorithms, e.g., those considered in (McConnell et al., 2011; Zhang et al., 2014). + +# REFERENCES + +Tiago Alves and Don Felton. Trustzone: Integrated hardware and software security-enabling trusted computing in embedded systems. Technical report, ARM, 2004. +Ferdinand Brasser, Urs Müller, Alexandra Dmitrienko, Kari Kostiainen, Srdjan Capkun, and Ahmad-Reza Sadeghi. Software grand exposure: SGX cache attacks are practical. In USENIX Workshop on Offensive Technologies, 2017. +Ran Canetti, Yehuda Lindell, Rafail Ostrovsky, and Amit Sahai. Universally composable two-party and multi-party secure computation. In Proceedings of the thiry-fourth annual ACM symposium on Theory of computing, pp. 494–503. ACM, 2002. +Guoxing Chen, Sanchuan Chen, Yuan Xiao, Yinqian Zhang, Zhiqiang Lin, and Ten H Lai. SGXPECTRE attacks: Leaking enclave secrets via speculative execution. arXiv preprint arXiv:1802.09085, 2018. +Sanchuan Chen, Xiaokuan Zhang, Michael K Reiter, and Yinqian Zhang. Detecting privileged side-channel attacks in shielded execution with déjá vu. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 7–18. ACM, 2017. + +Raymond Cheng, Fan Zhang, Jernej Kos, Warren He, Nicholas Hynes, Noah Johnson, Ari Juels, Andrew Miller, and Dawn Song. Ekiden: A platform for confidentiality-preserving, trustworthy, and performant smart contract execution. arXiv preprint arXiv:1804.05141, 2018. + +François Chollet et al. Keras. https://keras.io, 2015. + +François Chollet. Xception: Deep learning with depthwise separable convolutions. In Conference on Computer Vision and Pattern Recognition (CVPR), 2017. + +Victor Costan and Srinivas Devadas. Intel SGX explained. https://eprint.iacr.org/2016/086, 2016. + +Victor Costan, Ilia Lebedev, and Srinivas Devadas. Sanctum: Minimal hardware extensions for strong software isolation. In USENIX Security Symposium, 2016. + +Fergus Dall, Gabrielle De Micheli, Thomas Eisenbarth, Daniel Genkin, Nadia Heninger, Ahmad Moghimi, and Yuval Yarom. Cachequote: Efficiently recovering long-term secrets of sgx epid via cache attacks. IACR Transactions on Cryptographic Hardware and Embedded Systems, 2018(2):171–191, 2018. + +Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In Conference on Computer Vision and Pattern Recognition (CVPR), pp. 248–255. IEEE, 2009. + +Dario Fiore and Rosario Gennaro. Publicly verifiable delegation of large polynomials and matrix computations, with applications. In Proceedings of the 2012 ACM conference on Computer and communications security, pp. 501–512. ACM, 2012. + +Ben Fisch, Dhinakaran Vinayagamurthy, Dan Boneh, and Sergey Gorbunov. Iron: functional encryption using intel sgx. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 765–782. ACM, 2017. + +Rusins Freivalds. Probabilistic machines can use less running time. In IFIP congress, volume 839, pp. 842, 1977. + +Zahra Ghodsi, Tianyu Gu, and Siddharth Garg. Safetynets: Verifiable execution of deep neural networks on an untrusted cloud. In Advances In Neural Information Processing Systems (NIPS), pp. 4675–4684, 2017. + +Ran Gilad-Bachrach, Nathan Dowlin, Kim Laine, Kristin Lauter, Michael Naehrig, and John Wernsing. Cryptonets: Applying neural networks to encrypted data with high throughput and accuracy. In International Conference on Machine Learning (ICML), pp. 201–210, 2016. + +Johannes Götzfried, Moritz Eckert, Sebastian Schinzel, and Tilo Müller. Cache attacks on Intel SGX. In European Workshop on Systems Security, pp. 2. ACM, 2017. + +Suyog Gupta, Ankur Agrawal, Kailash Gopalakrishnan, and Pritish Narayanan. Deep learning with limited numerical precision. In International Conference on Machine Learning (ICML), pp. 1737–1746, 2015. + +Lucjan Hanzlik, Yang Zhang, Kathrin Grosse, Ahmed Salem, Max Augustin, Michael Backes, and Mario Fritz. Mlcapsule: Guarded offline deployment of machine learning as a service. arXiv preprint arXiv:1808.00590, 2018. + +Danny Harnik and Eliad Tsfadia. Impressions of Intel SGX performance. https://medium.com/@danny_harnik/ impressions-of-intel-sgx-performance-22442093595a, 2017. Accessed on May 17, 2018. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. + +Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv preprint arXiv:1704.04861, 2017. + +Tyler Hunt, Congzheng Song, Reza Shokri, Vitaly Shmatikov, and Emmett Witchel. Chiron: Privacy-preserving machine learning as a service. arXiv preprint arXiv:1803.05961, 2018. + +Intel Corp. Intel Software Guard Extensions Evaluation SDK. https://software.intel.com/en-us/sgx-sdk, 2015. +Intel Corp. Intel software guard extensions (sgx) SW development guidance for potential bounds check bypass (CVE2017-5753) side channel exploits. https://software.intel.com/sites/default/files/180204_SGX_ SDK_Developer_Guidance_v1.0.pdf, 2018. +Chiraag Juvekar, Vinod Vaikuntanathan, and Anantha Chandrakasan. Gazelle: A low latency framework for secure neural network inference. arXiv preprint arXiv:1801.05507, 2018. +Paul Kocher, Daniel Genkin, Daniel Gruss, Werner Haas, Mike Hamburg, Moritz Lipp, Stefan Mangard, Thomas Prescher, Michael Schwarz, and Yuval Yarom. Spectre attacks: Exploiting speculative execution. arXiv preprint arXiv:1801.01203, 2018. +Sangho Lee, Ming-Wei Shih, Prasun Gera, Taesoo Kim, Hyesoon Kim, and Marcus Peinado. Inferring fine-grained control flow inside SGX enclaves with branch shadowing. In USENIX Security Symposium, pp. 16–18, 2017. +Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. SSD: Single shot multibox detector. In European Conference on Computer Vision (ECCV), pp. 21–37. Springer, 2016. +Ross M McConnell, Kurt Mehlhorn, Stefan Näher, and Pascal Schweitzer. Certifying algorithms. Computer Science Review, 5(2):119–161, 2011. +Frank McKeen, Ilya Alex, Alex Berenzon, Carlos Rozas, Hisham Shafi, Vedvyas Shanbhogue, and Uday Savagaonkar. Innovative instructions and software model for isolated execution. In International Workshop on Hardware and Architectural Support for Security and Privacy (HASP), 2013. +Paulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael Houston, Oleksii Kuchaev, Ganesh Venkatesh, et al. Mixed precision training. In International Conference on Learning Representations (ICLR), 2018. +Ahmad Moghimi, Gorka Irazoqui, and Thomas Eisenbarth. Cachezoom: How SGX amplifies the power of cache attacks. In International Conference on Cryptographic Hardware and Embedded Systems, pp. 69–90. Springer, 2017. +Payman Mohassel and Yupeng Zhang. SecureML: A system for scalable privacy-preserving machine learning. In IEEE Symposium on Security and Privacy, pp. 19–38. IEEE, 2017. +Olga Ohrimenko, Felix Schuster, Cdric Fournet, Aastha Mehta, Sebastian Nowozin, Kapil Vaswani, and Manuel Costa. Oblivious multi-party machine learning on trusted processors. In USENIX Security Symposium, 2016. +Meni Orenbach, Pavel Lifshits, Marina Minkin, and Mark Silberstein. Eleos: Exitless os services for sgx enclaves. In Proceedings of the Twelfth European Conference on Computer Systems, pp. 238–253. ACM, 2017. +Rafael Pass, Elaine Shi, and Florian Tramèr. Formal abstractions for attested execution secure processors. In EUROCRYPT’17, 2017. +Tao Sheng, Chen Feng, Shaojie Zhuo, Xiaopeng Zhang, Liang Shen, and Mickey Aleksic. A quantization-friendly separable convolution for mobilenets. arXiv preprint arXiv:1803.08607, 2018. +Ming-Wei Shih, Sangho Lee, Taesoo Kim, and Marcus Peinado. T-SGX: Eradicating controlled-channel attacks against enclave programs. In Network and Distributed System Security Symposium (NDSS), 2017. +Shweta Shinde, Zheng Leong Chua, Viswesh Narayanan, and Prateek Saxena. Preventing page faults from telling your secrets. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 317–328. ACM, 2016. +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. +Ion Stoica, Dawn Song, Raluca Ada Popa, David Patterson, Michael W Mahoney, Randy Katz, Anthony D Joseph, Michael Jordan, Joseph M Hellerstein, Joseph E Gonzalez, et al. A Berkeley view of systems challenges for AI. arXiv preprint arXiv:1712.05855, 2017. +Pramod Subramanyan, Rohit Sinha, Ilia Lebedev, Srinivas Devadas, and Sanjit A Seshia. A formal foundation for secure remote execution of enclaves. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 2435–2450. ACM, 2017. +Justin Thaler. Time-optimal interactive proofs for circuit evaluation. In Advances in Cryptology–CRYPTO 2013, pp. 71–89. Springer, 2013. +Florian Tramèr, Fan Zhang, Huang Lin, Jean-Pierre Hubaux, Ari Juels, and Elaine Shi. Sealed-Glass Proofs: Using transparent enclaves to prove and sell knowledge. In IEEE European Symposium on Security and Privacy, 2017. +Jo Van Bulck, Nico Weichbrodt, Rüdiger Kapitza, Frank Piessens, and Raoul Strackx. Telling your secrets without page faults: Stealthy page table-based attacks on enclaved execution. In USENIX Security Symposium, 2017. +Jo Van Bulck, Marina Minkin, Ofir Weisse, Daniel Genkin, Baris Kasikci, Frank Piessens, Mark Silberstein, Thomas F. Wenisch, Yuval Yarom, and Raoul Strackx. Foreshadow: Extracting the keys to the Intel SGX kingdom with transient out-of-order execution. In Proceedings of the 27th USENIX Security Symposium, 2018. +Riad S Wahby, Max Howald, Siddharth Garg, Abhi Shelat, and Michael Walfish. Verifiable ASICs. In IEEE Symposium on Security and Privacy, pp. 759–778. IEEE, 2016. +Riad S Wahby, Ye Ji, Andrew J Blumberg, Abhi Shelat, Justin Thaler, Michael Walfish, and Thomas Wies. Full accounting for verifiable outsourcing. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 2071–2086. ACM, 2017. +Yuanzhong Xu, Weidong Cui, and Marcus Peinado. Controlled-channel attacks: Deterministic side channels for untrusted operating systems. In S&P’15, pp. 640–656. IEEE, 2015. +Yupeng Zhang, Charalampos Papamanthou, and Jonathan Katz. Alitheia: Towards practical verifiable graph processing. In Proceedings of the 2014 ACM SIGSAC Conference on Computer and Communications Security, pp. 856–867. ACM, 2014. + +# A DETAILS ON INTEL SGX SECURITY + +SGX enclaves isolate execution of a program from all other processes on a same host, including a potentially malicious OS. In particular, enclave memory is fully encrypted and authenticated. When a word is read from memory into a CPU register, a Memory Management Engine handles the decryption (Costan & Devadas, 2016). + +While SGX covers many software and hardware attack vectors, there is a large and prominent class of sidechannel attacks that it explicitly does not address (Costan & Devadas, 2016; Tramèr et al., 2017). In the past years, many attacks have been proposed, with the goal of undermining privacy of enclave computations $\mathrm { { X u } }$ et al., 2015; Brasser et al., 2017; Moghimi et al., 2017; Götzfried et al., 2017; Van Bulck et al., 2017; Lee et al., 2017). Most of these attacks rely on data dependent code behavior in an enclave (e.g., branching or memory access) that can be partially observed by other processes running on the same host. These side-channels are a minor concern for the DNN computations considered in this paper, as the standard computations in a DNN are data-oblivious (i.e., the same operations are applied regardless of the input data) (Ohrimenko et al., 2016). + +The recent Spectre attacks on speculative execution (Kocher et al., 2018) also prove damaging to SGX (as well as to most other processors), as recently shown (Chen et al., 2018; Dall et al., 2018; Van Bulck et al., 2018). Mitigations for these side-channel attacks are being developed (Shinde et al., 2016; Shih et al., 2017; Chen et al., 2017; Intel Corp., 2018) but a truly secure solution might require some architectural changes, e.g., as in the proposed Sanctum processor (Costan et al., 2016). + +We refrain from formally modeling SGX’s (or other TEE’s) security in this paper, as Slalom is mostly concerned with outsourcing protocols wherein the TEE acts as a client. We refer the interested reader to (Pass et al., 2017; Fisch et al., 2017; Subramanyan et al., 2017) for different attempts at such formalisms. + +# B FORMAL SECURITY DEFINITIONS AND PROOFS + +We define a secure outsourcing scheme, between a client $\mathcal { C }$ and a server $s$ , for a DNN $F ( x ) : \mathcal { X } \mathcal { Y }$ from some family $\mathcal { F }$ (e.g., all DNNs of a given size). We first assume that the model $F$ is known to both $\mathcal { C }$ and $s$ : + +Definition B.1 (Secure Outsourcing Schemes). A secure outsourcing scheme consists of an offline preprocessing algorithm Preproc, as well as an interactive online protocol Outsource $\langle \mathcal { C } , \mathcal { S } \rangle$ , defined as follows: + +• $\mathsf { s t } \gets \mathsf { P r e p r o c } ( F , 1 ^ { \lambda } )$ : The preprocessing algorithm is run by $\mathcal { C }$ and generates some data-independent state $\mathtt { s t }$ (e.g., cryptographic keys or precomputed values to accelerate the online outsourcing protocol.) • $\mathcal { V } \cup \{ \bot \} \mathsf { O u t s o u r c e } \langle \mathcal { C } ( F , x , \mathrm { s t } ) , \mathcal { S } ( F ) \rangle \mathrm { : }$ : The online outsourcing protocol is initiated by $\mathcal { C }$ with inputs $( F , x , s \ t )$ . At the end of the protocol, $\mathcal { C }$ either outputs a value $y \in \mathcal { V }$ or aborts (i.e., $\mathcal { C }$ outputs $\perp$ ). + +The properties that we may require from a secure outsourcing scheme are: + +• Correctness: For any $\begin{array} { r l r l } { F } & { { } \in } & { { \mathcal { F } } } \end{array}$ and $\begin{array} { r l r l } { x } & { { } \in } & { { \mathcal { X } } } \end{array}$ , running $\begin{array} { r l r } { \mathsf { s t } } & { { } \gets } & { \mathsf { P r e p r o c } ( F , 1 ^ { \lambda } ) } \end{array}$ and $y $ Outsource $\langle \mathcal { C } ( F , x , \mathrm { s t } ) , \mathcal { S } ( F ) \rangle$ yields $y = F ( x )$ . + +• t-Integrity: For any $F \in { \mathcal { F } }$ , input $x \in \mathcal { X }$ and probabilistic polynomial-time adversary $S ^ { * }$ , the probability that $\tilde { y } = \mathsf { O u t s o u r c e } \langle \mathcal { C } ( F , x , \mathsf { s t } ) , \mathcal { S } ^ { \ast } ( F ) \rangle$ and $\tilde { y } \notin \{ F ( x ) , \bot \}$ is less than $t$ . + +• Input privacy: For any $F \in { \mathcal { F } }$ , inputs $x , x ^ { \prime } \in { \mathcal { X } }$ and probabilistic poly-time adversary ${ \boldsymbol { S } } ^ { * }$ , the views of $S ^ { * }$ in Outsource $\langle \mathcal { C } ( F , x , \mathsf { s t } ) , \mathcal { S } ^ { * } ( F ) \rangle$ and Outsource $\langle \mathcal { C } ( F , \overline { { x ^ { \prime } } } , \mathrm { { s t } } ) , S ^ { \ast } ( \mathrm { { \bar { F } } } ) \rangle$ are computationally indistinguishable. + +• Efficiency: The online computation of $\mathcal { C }$ in Outsource should be less than the cost for $\mathcal { C }$ to evaluate $F \in { \mathcal { F } }$ . + +Model Privacy. In some applications a secure outsourcing scheme may also require to hide the model $F$ from either $s$ or $\mathcal { C }$ (in which case that party would obviously not take $F$ as input in the above scheme). + +Privacy with respect to an adversarial server ${ \boldsymbol { S } } ^ { * }$ (which Slalom does not provide), is defined as the indistinguishability of $S ^ { * }$ ’s views in Outsource $\langle \mathcal { C } ( F , x , \mathsf { s t } ) , \mathcal { S } ^ { * } \rangle$ and Outsource $\langle \mathcal { C } ( F ^ { \prime } , x , \mathrm { s t } ) , S ^ { * } \rangle$ for any $F , F ^ { \prime } \in \mathcal { F }$ . + +As noted in Section 2.1, a meaningful model-privacy guarantee with respect to $\mathcal { C }$ requires that $s$ first commit to a specific DNN $F$ , and then convinces $\mathcal { C }$ that her outputs were produced with the same model as all other clients’. We refer the reader to Canetti et al. (2002) for formal definitions for such commit-and-prove schemes, and to Tramèr et al. (2017) who show how to trivially instantiate them using a TEE. + +Proof of Theorem 3.2. Let $\mathrm { s t ~ ~ }$ Preproc and Outsource $\langle \mathrm { T E E } ( F , x , \mathrm { s t } ) , S \rangle$ be the outsourcing scheme defined in Figure 1 (right). We assume that all random values sampled by the TEE are produced by a secure cryptographically secure pseudorandom number generator (PRNG) (with elements in $\mathbb { S } \subseteq \mathbb { F }$ for the integritycheck vectors $s$ used in Freivalds’ algorithm, and in $\mathbb { F }$ for the blinding vectors $r _ { i }$ ). + +We first consider integrity. Assume that the scheme is run with input $x _ { 1 }$ and that the TEE outputs $y _ { n }$ . We will bound $\operatorname* { P r } [ y _ { n } \neq F ( x _ { 1 } ) \ | \ { \dot { y } } _ { n } \neq \bot ]$ . By the security of the PRNG, we can replace the vectors $s$ used in Freivalds’ algorithm by truly uniformly random values in $\mathbb { S } \subseteq \mathbb { F }$ , via a simple hybrid argument. For the $i$ -th linear layer, with operator $W _ { i }$ , input $x _ { i }$ and purported output $y _ { i }$ , we then have that $y _ { i } \neq x _ { i } W _ { i }$ with probability at most $1 / | \mathbb { S } | ^ { k }$ . By a simple union bound, we thus have that $\operatorname* { P r } [ y _ { n } \neq F ( x _ { 1 } ) ] \leq { n } / { | \mathbb { S } | ^ { k } } - \operatorname { n e g l } ( \lambda ) .$ . Note that this bound holds even if the same (secret) random values $s$ are re-used across layers. + +For privacy, consider the views of an adversary $S ^ { * }$ when Slalom is run with inputs $x _ { 1 }$ and $x _ { 1 } ^ { \prime }$ . Again, by the security of the PRNG, we consider a hybrid protocol where we replace the pre-computed blinding vectors $r _ { i }$ by truly uniformly random values in $\mathbb { F }$ . In this hybrid protocol, $\tilde { x } _ { i } = x _ { i } + r _ { i }$ is simply a “one-time-pad” encryption of $x _ { i }$ over the field $\mathbb { F }$ , so $S ^ { * }$ ’s views in both executions of the hybrid protocol are equal (information theoretically). Thus, $S ^ { * }$ ’s views in both executions of the original protocol are computationally indistinguishable. □ + +Proof of Corollary 3.3. The outsourcing protocol between the remote client $\mathcal { C }$ and server $s$ hosting the TEE is simply defined as follows (we assume the model belongs to $s$ ): + +• $\mathsf { s t } \gets \mathsf { P r e p r o c ( ) }$ : $\mathcal { C }$ and the TEE setup a secure authenticated communication channel, using the TEE’s remote attestation property. The TEE receives the model $F$ from $s$ and initializes the Slalom protocol. + +• Outsource $\langle { \mathcal { C } } ( x , { \mathrm { s t } } ) , S ( F ) \rangle$ : – $\mathcal { C }$ sends $x$ to the TEE over the secure channel. – The TEE securely computes $y = F ( x )$ using Slalom. – The TEE sends $y$ (and a publicly verifiable commitment to $F$ ) to $\mathcal { C }$ over the secure channel. + +If the TEE is secure (i.e., it acts as a trusted third party hosted by $s$ ), then the result follows. + +# C PERFORMANCE COMPARISON OF DNN OUTSOURCING SCHEMES + +We provide a brief overview of the outsourcing approaches compared in Table 1. Our baseline runs a DNN in a TEE (a single-threaded Intel SGX enclave) and can provide all the security guarantees of an ML outsourcing scheme. On a high-end GPU (an Nvidia TITAN XP), we achieve over $5 0 \times$ higher throughput but no security. For example, for MobileNet, the enclave evaluates 16 images/sec and the GPU 900 images/sec $5 6 \times$ higher). + +SafetyNets (Ghodsi et al., 2017) and Gazelle (Juvekar et al., 2018) are two representative works that achieve respectively integrity and privacy using purely cryptographic approaches (without a TEE). SafetyNets does not hide the model from either party, while Gazelle leaks some architectural details to the client. The cryptographic techniques used by these systems incur large computation and communication overheads in practice. The largest model evaluated by SafetyNets is a 4-layer TIMIT model with quadratic activations which runs at about 13 images/sec (on a notebook CPU). In our baseline enclave, the same model runs at over 3,500 images/sec. The largest model evaluated by Gazelle is an 8-layer CIFAR10 model. In the enclave, we can evaluate 450 images/sec whereas Gazelle evaluates a single image in 3.5 sec with $3 0 0 \mathrm { M B }$ of communication between client and server. + +A Note on Energy Efficiency. When comparing approaches with different hardware (e.g., our single-core CPU baseline versus Slalom which also uses a GPU), throughput alone is not the fairest metric. E.g., the baseline’s throughput could also be increased by adding more SGX CPUs. A more accurate comparison considers the energy efficiency of a particular approach, a more direct measure of the recurrent costs to the server $s$ . + +For example, when evaluating MobileNet or VGG16, our GPU draws 85W of power, whereas our baseline SGX CPU draws 30W. As noted above, the GPU also achieves more than $5 0 \times$ higher throughput, and thus is at least $1 8 \times$ more energy efficient (e.g., measured in Joules per image) than the enclave. + +For Slalom, we must consider the cost of running both the enclave and GPU. In our evaluations, the outsourced computations on the GPU account for at most $1 0 \%$ of the total running time of Slalom (i.e., the integrity checks and data encryption/decryption in the enclave are the main bottleneck). Thus, the power consumption attributed to Slalom is roughly $1 0 \% \cdot 8 5 \mathrm { W } + 9 0 \% \cdot 3 0 \mathrm { W } = 3 5 . 5 \mathrm { W } .$ Note that when not being in use by Slalom, the trusted CPU or untrusted GPU can be used by other tasks running on the server. As Slalom achieves $4 \times - 2 0 \times$ higher throughput than our baseline for the tasks we evaluate, it is also about $3 . 4 \times - 1 7 . 1 \times$ more energy efficient. + +# D NOTATION FOR STANDARD LINEAR OPERATORS + +Below we describe some common linear operators used in deep neural networks. For simplicity, we omit additive bias terms, and assume that convolutional operators preserve the spatial height and width of their inputs. Our techniques easily extend to convolutions with arbitrary strides, paddings, and window sizes. + +For a fully-connected layer $f _ { \mathrm { F C } }$ , the kernel $W$ has dimension $\left( h _ { \mathrm { i n } } \times h _ { \mathrm { o u t } } \right)$ . For an input $x$ of dimension $h _ { \mathrm { i n } }$ , we have $f _ { \mathrm { F C } } ( \dot { \boldsymbol { x } } ) = \boldsymbol { x } ^ { \top } \boldsymbol { W }$ . The cost of the layer is $h _ { \mathrm { i n } } \cdot h _ { \mathrm { o u t } }$ multiplications. + +A convolutional layer has kernel $W$ of size $( k \times k \times c _ { \mathrm { i n } } \times c _ { \mathrm { o u t } } )$ . On input $x$ of size $( h \times w \times c _ { \mathrm { i n } } )$ , $f _ { \mathrm { c o n v } } ( x ) =$ $\mathsf { C o n v } ( x ; W )$ produces an output of size $( h \times w \times c _ { \mathrm { o u t } } )$ . A convolution can be seen as the combination of two linear operators: a “patch-extraction” process that transforms the input $x$ into an intermediate input $x ^ { \prime }$ of dimension $( \bar { h } \cdot w , k ^ { 2 } \cdot c _ { \mathrm { i n } } ) $ by extracting $k \times k$ patches, followed by a matrix multiplication with $W$ . The cost of this layer is thus $\boldsymbol { k } ^ { 2 } \cdot \boldsymbol { h } \cdot \boldsymbol { w } \cdot \boldsymbol { c } _ { \mathrm { i n } } \cdot \boldsymbol { c } _ { \mathrm { o u t } }$ multiplications. + +A separable convolution has two kernels, $W _ { 1 }$ of size $( k \times k \times c _ { \mathrm { i n } } )$ and $W _ { 2 }$ of size $\left( { c _ { \mathrm { i n } } } \times { c _ { \mathrm { o u t } } } \right)$ . On input $x$ of size $( h \times w \times c _ { \mathrm { i n } } )$ , $f _ { \mathrm { s e p - c o n v } } ( x )$ produces an output of size $( h \times w \times c _ { \mathrm { o u t } } )$ , by applying a depthwise convolution $f _ { \mathrm { d p - c o n v } } ( x )$ with kernel $W _ { 1 }$ followed by a pointwise convolution $f _ { \mathrm { p t - c o n v } } ( x )$ with kernel $W _ { 2 }$ . The depthwise convolution consists of $c _ { \mathrm { i n } }$ independent convolutions with filters of size $k \times k \times 1 \times 1$ , applied to a single input channel, which requires $k ^ { 2 } \cdot h \cdot w \cdot c _ { \mathrm { i n } }$ multiplications. A pointwise convolution is simply a matrix product with an input of size $( h \cdot w ) \times c _ { \mathrm { i n } }$ , and thus requires $h \cdot w \cdot c _ { \mathrm { i n } } \cdot c _ { \mathrm { o u t } }$ multiplications. + +# E NEURAL NETWORK DETAILS + +Table 3 provides details about the two DNNs we use in our evaluation (all pre-trained models are taken from Keras Chollet et al. (2015)). We report top 1 and top 5 accuracy on ImageNet with and without the simple quantization scheme described in Section 3.1. Quantization results in at most a $0 . 5 \%$ drop in top 1 and top 5 accuracy. More elaborate quantization schemes exist (e.g., Micikevicius et al. (2018)) that we have not experimented with in this work. + +We report the number of model parameters, which is relevant to the memory constraints of TEEs such as Intel SGX. We also list the total size of the inputs and outputs of all the model’s linear layers, which impact the amount of communication between trusted and untrusted co-processors in Slalom, as well as the amount of data stored in the TEE when using Freivalds’ algorithm with preprocessing. + +Table 3: Details of models used in our evaluation. Accuracies are computed on the ImageNet validation set. Pre-trained models are from Keras Chollet et al. (2015). + +
AccuracyQuantized
ModelTop 1Top5Top1Top 5LayersParameters (M)Size of layer inputs/outputs (M)
VGG1671.090.070.689.516138.49.1 / 13.6
VGG16 (no top)=-1314.79.1/13.5
MobileNet70.789.670.589.5284.25.5/ 5.0
MobileNet (fused)=1154.23.6/3.1
ResNet 5076.992.476.492.25025.510.0 /10.4
+ +# F MODULAR ARITHMETIC WITH FLOATING POINT OPERATIONS + +In this section, we briefly describe how Slalom performs modular arithmetic over a field $\mathbb { Z } _ { p }$ in the TEE, while leveraging standard floating point operations to maximize computational efficiency. The main computations in the TEE are inner products over $\mathbb { Z } _ { p }$ for Freivalds’ check (a matrix product is itself a set of inner products). + +Our quantization scheme (see Section 3.1) ensures that all DNN values can be represented in $\mathbb { Z } _ { p }$ , for $p \lessapprox 2 ^ { 2 4 }$ , which fits in a standard float. To compute inner products, we first cast elements to doubles (as a single multiplication in $\mathbb { Z } _ { p }$ would exceed the range of integers exactly representable as floats). Single or double precision floats are preferable to integer types on Intel architectures due to the availability of much more efficient SIMD instructions, at a minor reduction in the range of exactly representable integers. + +In our evaluation, we target a soundness error of $2 ^ { - 4 0 }$ for each layer. This leads to a tradeoff between the number of repetitions $k$ of Freivalds’ check, and the size of the set $\mathbb { S }$ from which we draw random values. One check with $| \mathbb { S } | = 2 ^ { 4 0 }$ is problematic, as multiplying elements in $\mathbb { Z } _ { p }$ and $\mathbb { S }$ can exceed the range of integers exactly representable as doubles $( 2 ^ { 5 3 } )$ . With $k = 2$ repetitions, we can set $\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]$ . Multiplications are then bounded by $2 ^ { 2 4 + 1 9 } = 2 ^ { 4 3 }$ , and we can accumulate $2 ^ { 1 0 }$ terms in the inner-product before needing a modular reduction. In practice, we find that increasing $k$ further (and thus reducing $| \mathbb { S } | )$ is not worthwhile, as the cost of performing more inner products trumps the savings from reducing the number of modulos. + +# G RESULTS ON A STANDARD CPU + +For completeness, and to asses how our outsourcing scheme fairs in an environment devoid of Intel SGX’s performance quirks, we rerun the evaluations in Section 4 on the same CPU but outside of SGX’s enclave mode. + +![](images/9e3a7cd6a779288993a211826b1f16979c45c88d6f37c278fede67cb508715d1.jpg) +Figure 5: Micro benchmarks on an untrusted CPU. For three different linear operators, we plot the relative speedup of verifying a result compared to computing it. The dotted line in each plot shows the throughput obtained for computing the operation. + +Figure 5 show the results of the micro-benchmarks for matrix multiplication, convolution and separable convolutions. In all cases, verifying a computation becomes 1-2 orders of magnitude faster than computing it as the outer dimension grows. Compared to the SGX benchmarks, we also see a much better viability of batched verification (we haven’t optimized batched verifications much, as they are inherently slow on SGX. It is likely that these numbers could be improved significantly, to approach those of verification with preprocessing). + +Figure 6 shows benchmarks for VGG16 and MobileNet on a single core with either direct computation or various secure outsourcing strategies. For integrity alone, we achieve savings up to $8 . 9 \times$ and $1 9 . 5 \times$ for MobileNet and VGG16 respectively. Even without storing any secrets in the enclave, we obtain good speedups using batched verification. As noted above, it is likely that the batched results could be further improved. With additional blinding to preserve privacy, we achieve speedups of $3 . 9 \times$ and $8 . 1 \times$ for MobileNet and VGG16 respectively. + +![](images/c8154e92d0e65f4edf1599b73db1e4f3db8f57d0f186fd57a3cf3863327d0a07.jpg) +Figure 6: Inference with integrity and/or privacy on an untrusted CPU. We compare the baseline inference throughput (blue) to that obtained with “on-the-fly” integrity checks (red); batched integrity checks (green); integrity checks with precomputed secrets (yellow); privacy only (black); and privacy and integrity (purple). The fused MobileNet model has no intermediate activation for separable convolutions. + +# H PARALLELIZATION + +Our experiments on SGX in Section 4 where performed using a single execution thread, as SGX enclaves do not have the ability to create threads. We have also experimented with techniques for achieving parallelism in SGX, both for standard computations and outsourced ones, but with little success. + +To optimize for throughput, a simple approach is to run multiple forward passes simultaneously. On a standard CPU, this form of “outer-parallelism” achieves close to linear scaling as we increase the number of threads from 1 to 4 on our quad-core machine. With SGX however, we did not manage to achieve any parallel speedup for VGG16—whether for direct computation or verifying outsourced results—presumably because each independent thread requires extra memory that quickly exceeds the PRM limit. For the smaller MobileNet model, we get less than a $1 . 5 \times$ speedup using up to 4 threads, for direct computation or outsourced verification alike. + +DNNs typically also make use of intra-operation parallelism, i.e., computing the output of a given layer using multiple threads. Our DNN library currently does not support intra-operation parallelism, but implementing a dedicated thread pool for SGX could be an interesting extension for future work. Instead, we evaluate the potential benefits of intra-op parallelism on a standard untrusted CPU, for our matrix-product and convolution benchmarks. We make use of Eigen’s internal multi-threading support to speed up these operations, and custom OpenMP code to parallelize dot products, as Eigen does not do this on its own. + +![](images/827a1dd46e9ddda18510395cc72fb7d148bced674096122d688675387980e22d.jpg) +Figure 7: Multi-threaded micro benchmarks on an untrusted CPU. Reiterates benchmarks for matrix products and convolutions using 4 threads. + +Figure 7 shows the results using 4 threads. For convolutions, we have currently only implemented multi-threading for the verification with preprocessing (which requires only standard dot products). Surprisingly maybe, we find that multi-threading increases the gap between direct and verified computations of matrix products, probably because dot products are extremely easy to parallelize efficiently (compared to full convolutions). We also obtain close to linear speedups for verifiable separable convolutions, but omit the results as we currently do not have an implementation of multi-threaded direct computation for depthwise convolutions, which renders the comparison unfair. Due to the various memory-access overheads in SGX, it is unclear whether similar speedups could be obtained by using intra-op parallelism in an enclave, but this is an avenue worth exploring. \ No newline at end of file diff --git a/parse/train/rJVorjCcKQ/rJVorjCcKQ_content_list.json b/parse/train/rJVorjCcKQ/rJVorjCcKQ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..d6eb52999283290e7391e3dde87fa52421653f12 --- /dev/null +++ b/parse/train/rJVorjCcKQ/rJVorjCcKQ_content_list.json @@ -0,0 +1,1987 @@ +[ + { + "type": "text", + "text": "SLALOM: FAST, VERIFIABLE AND PRIVATE EXECUTION OF NEURAL NETWORKS IN TRUSTED HARDWARE ", + "text_level": 1, + "bbox": [ + 138, + 171, + 861, + 219 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Florian Tramèr \nStanford University \ntramer@cs.stanford.edu ", + "bbox": [ + 145, + 242, + 364, + 285 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Dan Boneh Stanford University dabo@cs.stanford.edu ", + "bbox": [ + 516, + 243, + 715, + 285 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 321, + 544, + 337 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "As Machine Learning (ML) gets applied to security-critical or sensitive domains, there is a growing need for integrity and privacy for outsourced ML computations. A pragmatic solution comes from Trusted Execution Environments (TEEs), which use hardware and software protections to isolate sensitive computations from the untrusted software stack. However, these isolation guarantees come at a price in performance, compared to untrusted alternatives. This paper initiates the study of high performance execution of Deep Neural Networks (DNNs) in TEEs by efficiently partitioning DNN computations between trusted and untrusted devices. Building upon an efficient outsourcing scheme for matrix multiplication, we propose Slalom, a framework that securely delegates execution of all linear layers in a DNN from a TEE (e.g., Intel SGX or Sanctum) to a faster, yet untrusted, co-located processor. We evaluate Slalom by running DNNs in an Intel SGX enclave, which selectively delegates work to an untrusted GPU. For canonical DNNs (VGG16, MobileNet and ResNet variants) we obtain $6 \\times$ to $2 0 \\times$ increases in throughput for verifiable inference, and $4 \\times$ to $1 1 \\times$ for verifiable and private inference. ", + "bbox": [ + 196, + 357, + 803, + 537 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 140, + 571, + 299, + 588 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Machine learning is increasingly used in sensitive decision making and security-critical settings. At the same time, the growth in both cloud offerings and software stack complexity widens the attack surface for ML applications. This raises the question of integrity and privacy guarantees for ML computations in untrusted environments, in particular for ML tasks outsourced by a client to a remote server. Prominent examples include cloud-based ML APIs (e.g., a speech-to-text application that consumes user-provided data) or general ML-as-a-Service platforms. ", + "bbox": [ + 138, + 606, + 862, + 676 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Trusted Execution Environments (TEEs), e.g, Intel SGX (McKeen et al., 2013), ARM TrustZone (Alves & Felton, 2004) or Sanctum (Costan et al., 2016) offer a pragmatic solution to this problem. TEEs use hardware and software protections to isolate sensitive code from other applications, while attesting to its correct execution. Running outsourced ML computations in TEEs provides remote clients with strong privacy and integrity guarantees. ", + "bbox": [ + 138, + 681, + 862, + 738 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "For outsourced ML computations, TEEs outperform pure cryptographic approaches (e.g, (Gilad-Bachrach et al., 2016; Mohassel & Zhang, 2017; Ghodsi et al., 2017; Juvekar et al., 2018)) by multiple orders of magnitude. At the same time, the isolation guarantees of TEEs still come at a steep price in performance, compared to untrusted alternatives (i.e., running ML models on contemporary hardware with no security guarantees). For instance, Intel SGX (Intel Corp., 2015) incurs significant overhead for memory intensive tasks (Orenbach et al., 2017; Harnik & Tsfadia, 2017), has difficulties exploiting multi-threading, and is currently limited to desktop CPUs that are outmatched by untrusted alternatives (e.g., GPUs or server CPUs). Thus, our thesis is that for modern ML workloads, TEEs will be at least an order of magnitude less efficient than the best available untrusted hardware. ", + "bbox": [ + 137, + 746, + 862, + 857 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "This leads us to the main question of this paper: How can we most efficiently leverage TEEs for secure machine learning? This was posed by Stoica et al. (2017) as one of nine open research problems for system challenges in AI. A specific challenge they raised is that of appropriately splitting ML computations between trusted and untrusted components, to increase efficiency as well as security by minimizing the Trusted Computing Base. ", + "bbox": [ + 137, + 176, + 861, + 233 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This paper explores a novel approach to this challenge, wherein a Deep Neural Network (DNN) execution is partially outsourced from a TEE to a co-located, untrusted but faster device. Our approach, inspired by the verifiable ASICs of Wahby et al. (2016), differs from cryptographic ML outsourcing. In our case, work is delegated between two co-located parties, thus allowing for highly interactive—yet conceptually simpler— outsourcing protocols with orders-of-magnitude better efficiency. Our work also departs from prior systems that execute DNNs fully in a TEE (Ohrimenko et al., 2016; Hunt et al., 2018; Cheng et al., 2018; Hanzlik et al., 2018). ", + "bbox": [ + 137, + 239, + 862, + 324 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The main observation that guides our approach is that matrix multiplication—the main bottleneck in DNNs— admits a concretely efficient verifiable outsourcing scheme known as Freivalds’ algorithm (Freivalds, 1977), which can also be turned private in our setting. Our TEE selectively outsources these CPU intensive steps to a fast untrusted co-processor (and runs the remaining steps itself) therefore achieving much better performance than running the entire computation in the enclave, without compromising security. ", + "bbox": [ + 137, + 330, + 864, + 400 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Contributions. We propose Slalom, a framework for efficient DNN inference in any trusted execution environment (e.g., SGX or Sanctum). To evaluate Slalom, we build a lightweight DNN library for Intel SGX, which may be of independent interest. Our library allows for outsourcing all linear layers to an untrusted GPU without compromising integrity or privacy. Our code is available at https://github.com/ftramer/slalom. ", + "bbox": [ + 137, + 409, + 862, + 465 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We formally prove Slalom’s security, and evaluate it on multiple canonical DNNs with a variety of computational costs—VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNets (He et al., 2016). Compared to running all computations in SGX, outsourcing linear layers to an untrusted GPU increases throughput (as well as energy efficiency) by $6 \\times$ to $2 0 \\times$ for verifiable inference, and by $4 \\times$ to $1 1 \\times$ for verifiable and private inference. Finally, we discuss open challenges towards efficient verifiable training of DNNs in TEEs. ", + "bbox": [ + 137, + 472, + 862, + 541 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 137, + 555, + 289, + 571 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 PROBLEM SETTING ", + "text_level": 1, + "bbox": [ + 137, + 585, + 312, + 601 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We consider an outsourcing scheme between a client $\\mathcal { C }$ and a server $s$ , where $s$ executes a DNN $F ( x ) : \\mathcal { X } \\mathcal { Y }$ on data provided by $\\mathcal { C }$ . The DNN can either belong to the user (e.g., as in some ML-as-a-service platforms), or to the server (e.g., as in a cloud-based ML API). Depending on the application, this scheme should satisfy one or more of the following security properties (see Appendix $\\mathbf { B }$ for formal definitions): ", + "bbox": [ + 137, + 612, + 862, + 667 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• t-Integrity: For any $s$ and input $x$ , the probability that a user interacting with $s$ does not abort (i.e., output ⊥) and outputs an incorrect value $\\tilde { y } \\ne F ( x )$ is less than $t$ . \n• Privacy: The server $s$ learns no information about the user’s input $x$ . \n• Model privacy: If the model $F$ is provided by the user, $s$ learns no information about $F$ (beyond e.g., its approximate size). If $F$ belongs to the server, $\\mathcal { C }$ learns no more about $F$ than what is revealed by $y = F ( x )$ . 1 ", + "bbox": [ + 143, + 672, + 862, + 751 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 TRUSTED EXECUTION ENVIRONMENTS (TEES), INTEL SGX, AND A STRONG BASELINE ", + "bbox": [ + 137, + 767, + 789, + 782 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Trusted Execution Environments (TEE) such as Intel SGX, ARM TrustZone or Sanctum (Costan et al., 2016) enable execution of programs in secure enclaves. Hardware protections isolate computations in enclaves from all programs on the same host, including the operating system. Enclaves can produce remote attestations—digital signatures over an enclave’s code—that a remote party can verify using the manufacturer’s public key. Our experiments with Slalom use hardware enclaves provided by Intel SGX (see Appendix A for details).2 ", + "bbox": [ + 133, + 792, + 861, + 821 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/d0f6cc00c0b1482c5f0835cda6bb82c1a97e49dbc4922eca8057b926edb979e8.jpg", + "table_caption": [ + "Table 1: Security guarantees and performance (relative to baseline) of different ML outsourcing schemes. " + ], + "table_footnote": [ + "\\* With an offline preprocessing phase. " + ], + "table_body": "
ModelPrivacy
ApproachTEEIntegrityPrivacyw.r.t. Serverw.r.t. ClientThroughput (relative)
SafetyNets (Ghodsi et al.,2017)1.OOO≤1/200 ×
Gazelle (Juvekar et al.,2018)1O. *O1≤1/1000 ×
Secure baseline (run DNN in TEE).
Insecure baseline (run DNN on GPU)O0≥ 50x
Slalom (Ours)..O4× - 20×
", + "bbox": [ + 150, + 194, + 846, + 292 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 135, + 315, + 862, + 358 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "TEEs offer an efficient solution for ML outsourcing: The server runs an enclave that initiates a secure communication with $\\mathcal { C }$ and evaluates a model $F$ on $\\mathcal { C }$ ’s input data. This simple scheme (which we implemented in SGX, see Section 4) outperforms cryptographic ML outsourcing protocols by 2-3 orders of magnitude (albeit under a different trust model). See Table 1 and Appendix C for a comparison to two representative works. ", + "bbox": [ + 137, + 364, + 862, + 420 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Yet, SGX’s security comes at a performance cost, and there remains a large gap between TEEs and untrusted devices. For example, current SGX CPUs are limited to $1 2 8 \\mathrm { M B }$ of Processor Reserved Memory (PRM) (Costan & Devadas, 2016) and incur severe paging overheads when exceeding this allowance (Orenbach et al., 2017). We also failed to achieve noticeable speed ups for multi-threaded DNN evaluations in SGX enclaves (see Appendix H). For DNN computations, current SGX enclaves thus cannot compete—in terms of performance or energy efficiency (see Appendix C)—with contemporary untrusted hardware, such as a GPU or server CPU. ", + "bbox": [ + 135, + 428, + 862, + 511 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this work, we treat the above simple (yet powerful) TEE scheme as a baseline, and identify settings where we can still improve upon it. We will show that our system, Slalom, substantially outperforms this baseline when the server has access to the model $F$ (e.g., $F$ belongs to $s$ as in cloud ML APIs, or $F$ is public). Slalom performs best for verifiable inference (the setting considered in SafetyNets (Ghodsi et al., 2017)). If the TEE can run some offline data-independent preprocessing (e.g., as in Gazelle (Juvekar et al., 2018)), Slalom also outperforms the baseline for private (and verifiable) outsourced computations in a later online phase. Such a two-stage approach is viable if user data is sent at irregular intervals yet has to be processed with high throughput when available. ", + "bbox": [ + 137, + 517, + 862, + 616 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 OUTSOURCING OUTSOURCED DNNS AND FREIVALDS’ ALGORITHM ", + "bbox": [ + 138, + 633, + 648, + 647 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our idea for speeding up DNN inference in TEEs is to further outsource work from the TEE to a co-located faster untrusted processor. Improving upon the above baseline thus requires that the combined cost of doing work on the untrusted device and verifying it in the TEE be cheaper than evaluating the full DNN in the TEE. ", + "bbox": [ + 135, + 660, + 862, + 702 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Wahby et al. (2016; 2017) aim at this goal for arbitrary computations outsourced between co-located ASICs. The generic non-interactive proofs they use for integrity are similar to those used in SafetyNets (Ghodsi et al., 2017), which incur overheads that are too large to warrant outsourcing in our setting (e.g., Wahby et al. (2016) find that the technology gap between trusted and untrusted devices needs to be of over two decades for their scheme to break even). Similarly for privacy, standard cryptographic outsourcing protocols (e.g., (Juvekar et al., 2018)) are unusable in our setting as simply running the computation in the TEE is much more efficient (see Table 1). ", + "bbox": [ + 137, + 709, + 862, + 792 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To overcome this barrier, we design outsourcing protocols tailored to DNNs, leveraging two insights: ", + "bbox": [ + 135, + 176, + 795, + 191 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1. In our setting, the TEE is co-located with the server’s faster untrusted processors, thus widening the design space to interactive outsourcing protocols with high communication but better efficiency. 2. The TEE always has knowledge of the model and can selectively outsource part of the DNN evaluation and compute others—for which outsourcing is harder—itself. ", + "bbox": [ + 137, + 195, + 862, + 260 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "DNNs are a class of functions that are particularly well suited for selective outsourcing. Indeed, non-linearities— which are hard to securely outsource (with integrity or privacy)—represent a small fraction of the computation in a DNN so we can evaluate these in the TEE (e.g., for VGG16 inference on a single CPU thread, about $1 . 5 \\%$ of the computation is spent on non-linearities). In contrast, linear operators—the main computational bottleneck in DNNs—admit for a conceptually simple yet concretely efficient secure delegation scheme, described below. ", + "bbox": [ + 137, + 263, + 862, + 334 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Integrity. We verify integrity of outsourced linear layers using variants of an algorithm by Freivalds (1977). ", + "bbox": [ + 132, + 352, + 852, + 368 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Lemma 2.1 (Freivalds). Let $A , B$ and $C$ be $n \\times n$ matrices over a field $\\mathbb { F }$ and let s be a uniformly random vector in $\\mathbb { S } ^ { n }$ , for $\\mathbb { S } \\subseteq \\mathbb { F }$ . Then, $\\operatorname* { P r } [ C s = A ( B s ) \\mid C \\neq A B ] = \\operatorname* { P r } [ ( C - A B ) s = \\mathbf { 0 } \\mid ( C - A B ) \\neq \\mathbf { 0 } ] \\leq ^ { 1 } / | \\mathbb { S } |$ . ", + "bbox": [ + 130, + 376, + 857, + 406 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The randomized check requires $3 n ^ { 2 }$ multiplications, a significant reduction (both in concrete terms and asymptotically) over evaluating the product directly. The algorithm has no false negatives and trivially extends to rectangular matrices. Independently repeating the check $k$ times yields soundness error $1 / | \\mathbb { S } | ^ { k }$ . ", + "bbox": [ + 137, + 415, + 862, + 458 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Privacy. Input privacy for outsourced linear operators could be achieved with linearly homomorphic encryption, but the overhead (see the micro-benchmarks in (Juvekar et al., 2018)) is too high to compete with our baseline (i.e., computing the function directly in the TEE would be faster than outsourcing it over encrypted data). ", + "bbox": [ + 135, + 476, + 864, + 518 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We instead propose a very efficient two-stage approach based on symmetric cryptography, i.e., an additive stream cipher. Let $f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }$ be a linear function over a field $\\mathbb { F }$ . In an offline phase, the TEE generates a stream of one-time-use pseudorandom elements $r \\in \\mathbb { F } ^ { m }$ , and pre-computes $u = f ( r )$ . Then, in the online phase when the remote client sends an input $x$ , the TEE computes $\\mathtt { E n c } ( x ) = x + r$ over $\\mathbb { F } ^ { m }$ (i.e., a secure encryption of $x$ with a stream cipher), and outsources the computation of $f ( \\mathsf { E n c } ( x ) )$ to the faster processor. Given the result $f ( \\mathsf { E n c } ( x ) ) = f ( x + r ) = f ( x ) + f ( r ) = f ( x ) \\overset { \\cdot } { + } u$ , the TEE recovers $f ( x )$ using the pre-computed $u$ . ", + "bbox": [ + 137, + 525, + 862, + 611 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Communication. Using Freivalds’ algorithm and symmetric encryption for each linear layer in a DNN incurs high interaction and communication between the TEE and untrusted co-processor (e.g., over 50MB per inference for VGG16, see Table 3). This would be prohibitive if they were not co-located. There are protocols with lower communication than repeatedly using Freivalds’ ((Fiore & Gennaro, 2012; Thaler, 2013; Ghodsi et al., 2017)). Yet, these incur a high overhead on the prover in practice and are thus not suitable in our setting. ", + "bbox": [ + 137, + 627, + 862, + 699 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 SLALOM ", + "text_level": 1, + "bbox": [ + 137, + 728, + 240, + 744 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We introduce Slalom, a three-step approach for outsourcing DNNs from a TEE to an untrusted but faster device: (1) Inputs and weights are quantized and embedded in a field $\\mathbb { F }$ ; (2) Linear layers are outsourced and verified using Freivalds’ algorithm; (3) Inputs of linear layers are encrypted with a pre-computed pseudorandom stream to guarantee privacy. Figure 1 shows two Slalom variants, one to achieve integrity, and one to also achieve privacy. ", + "bbox": [ + 135, + 765, + 864, + 821 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We focus on feed-forward networks with fully connected layers, convolutions, separable convolutions, pooling layers and activations. Slalom can be extended to other architectures (e.g., residual networks, see Section 4.3). ", + "bbox": [ + 133, + 829, + 861, + 858 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/68e3dc2240594a3fa26a194d36ba32950ab09ff2dc6712e779ab23c590da496f.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Slalomwith integrity TEE(F,x1) S(F)
for i∈ [1,n] do
yi=xiWi
xi+1=σ(yi)
1...yn
fori∈[1,n] do assert Freivalds(yi,x,W)
xi+1=σ(yi)
return yn
", + "bbox": [ + 137, + 174, + 477, + 325 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/e4e070963d356a31639df7aca4a78879b76895ffe4fc201b38e685066e487465.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Slalom with integrity& privacy TEE(F,x1) S(F)
Preproc: for i∈[1,n] dori ← Fmi,ui =riWi
for i∈[1,n] do 主 xi=xi+ri
起 yi=xW
yi=yi-ui
assert Freivalds(yi,xi,Wi)
xi+1=σ(yi) return yn
", + "bbox": [ + 495, + 174, + 854, + 327 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 QUANTIZATION ", + "text_level": 1, + "bbox": [ + 137, + 420, + 285, + 434 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The techniques we use for integrity and privacy (Freivalds’ algorithm and stream ciphers) work over a field $\\mathbb { F }$ . We thus quantize all inputs and weights of a DNN to integers, and embed these integers in the field $\\mathbb { Z } _ { p }$ of integers modulo a prime $p$ (where $p$ is larger than all values computed in a DNN evaluation, so as to avoid wrap-around). ", + "bbox": [ + 137, + 446, + 864, + 489 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As in (Gupta et al., 2015), we convert floating point numbers $x$ to a fixed-point representation as $\\tilde { x } = \\mathtt { F P } ( x ; l ) : =$ $\\mathtt { r o u n d } ( 2 ^ { l } \\cdot x ) .$ . For a linear layer with kernel $W$ and bias $b$ , we define integer parameters $\\tilde { W } = \\mathrm { F P } ( W , l ) , \\tilde { b } =$ $\\mathrm { E P } ( b , 2 l )$ . After applying the layer to a quantized input $\\tilde { x }$ , we scale the output by $2 ^ { - l }$ and re-round to an integer. ", + "bbox": [ + 137, + 496, + 864, + 540 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For efficiency reasons, we perform integer arithmetic using floats (so-called fake quantization), and choose $p < 2 ^ { 2 4 }$ to avoid loss of precision (we use $p = 2 ^ { 2 4 } - 3 )$ . For the models we evaluate, setting $l = 8$ for all weights and inputs ensures that all DNN values are bounded by $2 ^ { 2 4 }$ , with less than a $0 . 5 \\%$ drop in accuracy (see Table 3). When performing arithmetic modulo $p$ (e.g., for Freivalds’ algorithm or when computing on encrypted data), we use double-precision floats, to reduce the number of modular reductions required (details are in Appendix F). ", + "bbox": [ + 135, + 546, + 862, + 617 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 VERIFYING COMMON LINEAR OPERATORS ", + "text_level": 1, + "bbox": [ + 137, + 636, + 475, + 650 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We now describe Slalom’s approach to verifying the integrity of outsourced linear layers. We describe these layers in detail in Appendix D and summarize this section’s results in Table 2. ", + "bbox": [ + 133, + 662, + 862, + 691 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Freivalds’ Algorithm for Batches. The most direct way of applying Freivalds’ algorithm to arbitrary linear layers of a DNN is by exploiting batching. Any linear layer $f ( x )$ from inputs of size $m$ to outputs of size $n$ can be represented (with appropriate reshaping) as $f ( x ) = x ^ { \\top } W$ for a (often sparse and implicit) $m \\times n$ matrix $W$ ", + "bbox": [ + 133, + 703, + 862, + 746 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For a batch $X$ of size $B$ , we can outsource $f ( X )$ and check that the output $Y$ satisfies $f ( s ^ { \\top } X ) = s ^ { \\top } Y$ , for a random vector $s$ (we are implicitly applying Freivalds to the matrix product $X W = Y$ ). As the batch size $B$ grows, the cost of evaluating $f$ is amortized and the total verification cost is $| X | + | Y | + \\mathsf { c o s t } _ { f }$ multiplications (i.e., we approach one operation per input and output). Yet, as we show in Section 4.3, while batched verification is worthwhile for processors with larger memory, it is prohibitive in SGX enclaves due to the limited PRM. ", + "bbox": [ + 137, + 751, + 862, + 821 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For full convolutions (and pointwise convolutions), a direct application of Freivalds’ check is worthwhile even for single-element batches. For $f ( x ) = \\mathbf { C o n v } ( x , W )$ and purported output $y$ , we can sample a random vector $s$ of ", + "bbox": [ + 133, + 828, + 862, + 858 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/8093e25c85b772cb9b41d04b60e16481ee83a0c5698d0450951e485d347eae61.jpg", + "table_caption": [ + "Table 2: Complexity (number of multiplications) for evaluating and verifying linear functions. The layers are “Fully Connected”, ”Convolution”, ”Depthwise Convolution” and ”Pointwise Convolution”, defined in Appendix D. Each layer $f$ has an input $x$ , output $y$ and kernel $W$ . We assume a batch size of $B \\geq 1$ . " + ], + "table_footnote": [], + "table_body": "
Layer|x|,|yl|W|costf (B=1)Batched verificationWith preproc.
FChin,houthin·hout|a|·lyB·(lx|+lyl)+cost fB·(lx|+lyl)
Convh·w·Cin,h·w·Coutk² · Cin ·Coutal·k2 · CoutB·(lx|+lyl)+Cin·Cout+ |x| · k²B·(|xl+lyl)
Depth.Convh·w·Cin,h·w·Cink2.Cinlac|.k²B·(lx|+lyl)+cost fB·(|x|+ lyl)
Point. Convh·w ·Cin,h · w· CoutCin·Cout|c| · CoutB·(x|+lyl)+Cin·CoutB·(lx|+|yl)
", + "bbox": [ + 140, + 220, + 854, + 290 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "dimension $c _ { \\mathrm { o u t } }$ (the number of output channels), and check that $\\operatorname { C o n v } ( x , W s ) = y s$ (with appropriate reshaping). \nFor a batch of inputs $X$ , we can also apply Freivalds’ algorithm twice to reduce both $W$ and $X$ . ", + "bbox": [ + 135, + 309, + 861, + 338 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Preprocessing. We now show how to obtain an outsourcing scheme for linear layers that has optimal verification complexity (i.e., $| x | + | y |$ operations) for single-element batches and arbitrary linear operators, while at the same time compressing the DNN’s weights (a welcome property in our memory-limited TEE model). ", + "bbox": [ + 135, + 347, + 862, + 390 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We leverage two facts: (1) DNN weights are fixed at inference time, so part of Freivalds’ check can be precomputed; (2) the TEE can keep secrets from the host $s$ , so the random values $s$ can be re-used across layers or inputs (if we run Freivalds’ check $n$ times with the same secret randomness, the soundness errors grows at most by a factor $n$ ). Our verification scheme with preprocessing follows from a reformulation of Lemma (2.1): ", + "bbox": [ + 135, + 396, + 862, + 453 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lemma 3.1. Let $f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }$ be a linear operator, $f ( x ) : = x ^ { \\top } W$ . Let s be uniformly random in $\\mathbb { S } ^ { n }$ , for $\\mathbb { S } \\subseteq \\mathbb { F }$ , and let $\\tilde { s } : = \\nabla F _ { x } ( s ) = W s$ . For any $\\boldsymbol { x } \\in \\mathbb { F } ^ { m }$ , $y \\in \\mathbb { F } ^ { n }$ , we have $\\operatorname* { P r } \\left[ y ^ { \\top } s = x ^ { \\top } { \\tilde { s } } \\mid y \\neq f ( x ) \\right] \\leq { \\boldsymbol { \\mathrm { 1 } } } / { \\boldsymbol { \\mathrm { | \\mathbb { S } } } } { \\boldsymbol { \\mathrm { | \\nabla } } }$ . ", + "bbox": [ + 133, + 455, + 857, + 488 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The check requires $| x | + | y |$ multiplications, and storage for $s$ and ${ \\tilde { s } } : = W s$ (of size $| x |$ and $| y | ,$ ). To save space, we can reuse the same random $s$ for every layer. The memory footprint of a model is then equal to the size of the inputs of all its linear layers (e.g., for VGG16 the footprint is reduced from 550MB to 36MB, see Table 3). ", + "bbox": [ + 135, + 500, + 864, + 542 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.3 INPUT PRIVACY ", + "text_level": 1, + "bbox": [ + 137, + 553, + 287, + 568 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To guarantee privacy of the client’s inputs, we use precomputed blinding factors for each outsourced computation, as described in Section 2.3. The TEE uses a cryptographic Pseudo Random Number Generator (PRNG) to generate blinding factors. The precomputed “unblinding factors” are encrypted and stored in untrusted memory or disk. In the online phase, the TEE regenerates the blinding factors using the same PRNG seed, and uses the precomputed unblinding factors to decrypt the output of the outsourced linear layer. ", + "bbox": [ + 137, + 579, + 864, + 650 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This blinding process incurs several overheads: (1) the computations on the untrusted device have to be performed over $\\mathbb { Z } _ { p }$ so we use double-precision arithmetic. (2) The trusted and untrusted processors exchange data in-between each layer, rather than at the end of a full inference pass. (3) The TEE has to efficiently load precomputed unblinding factors, which requires either a large amount of RAM, or a fast access to disk (e.g., a PCIe SSD). ", + "bbox": [ + 137, + 655, + 862, + 713 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Slalom’s security is given by the following results. Formal definitions and proofs are in Appendix B. Let negl be a negligible function (for any integer $c > 0$ there exists an integer $N _ { c }$ such that for all $x > N _ { c }$ , $| \\mathrm { n e g l } ( x ) | < \\bar { 1 } / { x ^ { c } } )$ ", + "bbox": [ + 135, + 718, + 861, + 747 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3.2. Let Slalom be the protocol from Figure 1 (right), where $F$ is an $n$ -layer DNN, and Freivalds’ algorithm is repeated k times per layer with random vectors drawn from $\\mathbb { S } \\subseteq \\mathbb { F }$ . Assume all random values are generated using a secure PRNG with security parameter $\\lambda$ . Then, Slalom is a secure outsourcing scheme for $F$ between a TEE and an untrusted co-processor $s$ with privacy and $t$ -integrity for $t = n / \\vert \\mathbb { S } \\vert ^ { k } - \\mathrm { n e g l } ( \\lambda )$ . ", + "bbox": [ + 137, + 751, + 864, + 808 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Corollary 3.3. Assuming the TEE is secure (i.e., it acts as a trusted third party hosted by $s$ ), Slalom is a secure outsourcing scheme between a remote client $\\mathcal { C }$ and server $\\boldsymbol { S }$ with privacy and $t$ -integrity for $t = { \\boldsymbol { \\mathscr { n } } } / { \\boldsymbol { | \\mathbb { S } } } { \\boldsymbol { \\vert \\sp k - \\mathrm { n e g l } } } ( \\lambda )$ . If the model $F$ is the property of $\\boldsymbol { S }$ , the scheme further satisfies model privacy. ", + "bbox": [ + 137, + 813, + 862, + 854 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EMPIRICAL EVALUATION ", + "text_level": 1, + "bbox": [ + 138, + 175, + 377, + 191 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We evaluate Slalom on real Intel SGX hardware, on micro-benchmarks and a sample application (ImageNet inference with VGG16, MobileNet and ResNet models). Our aim is to show that, compared to a baseline that runs inference fully in the TEE, outsourcing linear layers increases performance without sacrificing security. ", + "bbox": [ + 137, + 207, + 862, + 250 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 137, + 268, + 303, + 282 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As enclaves cannot access most OS features (e.g., multi-threading, disk and driver IO), porting a large framework such as TensorFlow or Intel’s MKL-DNN to SGX is hard. Instead, we designed a lightweight $\\mathrm { C } { + + }$ library for feed-forward networks based on Eigen, a linear-algebra library which TensorFlow uses as a CPU backend. Our library implements the forward pass of DNNs, with support for dense layers, standard and separable convolutions, pooling, and activations. When run on a native CPU (without SGX), its performance is comparable to TensorFlow on CPU (compiled with AVX). Our code is available at https://github.com/ftramer/slalom. ", + "bbox": [ + 137, + 295, + 862, + 378 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Slalom performs arithmetic over $\\mathbb { Z } _ { p }$ , for $p = 2 ^ { 2 4 } - 3$ . For integrity, we apply Freivalds’ check twice to each layer $k = 2 ,$ ), with random values from $\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]$ , to achieve 40 bits of statistical soundness per layer (see Appendix F for details on the selection of these parameters). For a 50-layer DNN, $s$ has a chance of less than 1 in 22 billion of fooling the TEE on any incorrect DNN evaluation (a slightly better guarantee than in SafetyNets). For privacy, we use AES-CTR and AES-GCM to generate, encrypt and authenticate blinding factors. ", + "bbox": [ + 137, + 385, + 862, + 457 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 SETUP ", + "text_level": 1, + "bbox": [ + 137, + 474, + 223, + 488 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We use an Intel Core i7-6700 Skylake 3.40GHz processor with 8GB of RAM, a desktop processor with SGX support. The outsourced computations are performed on a co-located Nvidia TITAN XP GPU. Due to a lack of native internal multi-threading in SGX, we run our TEE in a single CPU thread. We discuss challenges for efficient parallelization in Appendix H. We evaluate Slalom on the following workloads: ", + "bbox": [ + 137, + 501, + 862, + 558 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Synthetic benchmarks for matrix products, convolutions and separable convolutions, where we compare the enclave’s running time for computing a linear operation to that of solely verifying the result. • ImageNet (Deng et al., 2009) classification with VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNet He et al. (2016) models (with fused Batch Normalization layers when applicable). ", + "bbox": [ + 140, + 563, + 862, + 623 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "MobileNet, a model tailored for low compute devices, serves as a worst-case benchmark for Slalom, as the model’s design aggressively minimizes the amount of computation performed per layer. We also consider a “fused” variant of MobileNet with no activation between depthwise and pointwise convolutions. Removing these activations improves convergence and accuracy (Chollet, 2017; Sheng et al., 2018), while also making the network more outsourcing-friendly (i.e., it is possible to verify a separable convolution in a single step). ", + "bbox": [ + 135, + 630, + 862, + 700 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Our evaluation focuses on throughput (number of forward passes per second). We also discuss energy efficiency in Appendix C to account for hardware differences between our baseline (TEE only) and Slalom $\\mathrm { ( T E E + G P U ) }$ ). ", + "bbox": [ + 135, + 705, + 861, + 734 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 RESULTS ", + "text_level": 1, + "bbox": [ + 137, + 753, + 240, + 767 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Micro-Benchmarks. Our micro-benchmark suite consists of square matrix products of increasing dimensions, convolutional operations performed by VGG16, and separable convolutions performed by MobileNet. In all cases, the data is pre-loaded inside an enclave, so we only measure the in-enclave execution time. Figure 2 plots the relative speedups of various verification strategies over the cost of computing the linear operation directly. In all cases, the baseline computation is performed in single-precision floating point, and the verification algorithms repeat Freivalds’ check so as to attain at least 40 bits of statistical soundness. ", + "bbox": [ + 137, + 773, + 862, + 857 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/e479efd0e691ddcb877c1c08f199812ca305e3227b9c63d4af690b286c7b0522.jpg", + "image_caption": [ + "Figure 2: Micro benchmarks on Intel SGX. We plot the relative speedup of verifying the result of a linear operator compared to computing it entirely in the enclave. The dotted line shows the throughput obtained for a direct computation. “Fused” separable convolutions contain no intermediate activation. " + ], + "image_footnote": [], + "bbox": [ + 138, + 174, + 856, + 314 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For square matrices of dimensions up to 2048, verifying an outsourced result is $4 \\times$ to $8 \\times$ faster than computing it. For larger matrices, we exceed the limit of SGX’s DRAM, so the enclave resorts to expensive paging which drastically reduces performance both for computation and verification. ", + "bbox": [ + 137, + 372, + 862, + 415 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For convolutions (standard or separable), we achieve large savings with outsourcing if Freivalds’ algorithm is applied with preprocessing. The savings get higher as the number of channels increases. Without preprocessing, Freivalds’ algorithm results in savings when $c _ { \\mathrm { o u t } }$ is large. Due to SGX’s small PRM, batched verification is only effective for operators with small memory footprints. As expected, “truly” separable convolutions (with no intermediate non-linearity) are much faster to verify, as they can be viewed as a single linear operator. ", + "bbox": [ + 137, + 421, + 862, + 492 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Verifiable Inference. Figure 3 shows the throughout of end-to-end forward passes in two neural networks, VGG16 and MobileNet. For integrity, we compare the secure baseline (executing the DNN fully in the enclave) to two variants of the Slalom algorithm in Figure 1. The first (in red) applies Freivalds’ algorithm “on-the-fly”, while the second more efficient variant (in orange) pre-computes part of Freivalds’ check as described in Section 3.2. ", + "bbox": [ + 137, + 502, + 862, + 559 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The VGG16 network is much larger (500MB) than SGX’s PRM. As a result, there is a large overhead on the forward pass and verification without preprocessing. If the enclave securely stores preprocessed products $W r$ for all network weights, we drastically reduce the memory footprint and achieve up to a $2 0 . 3 \\times$ increase in throughput. We also ran the lower-half of the VGG16 network (without the fully connected layers), a common approach for extracting features for transfer learning or object recognition (Liu et al., 2016). This part fits in the PRM, and we thus achieve higher throughput for in-enclave forward passes and on-the-fly verification. ", + "bbox": [ + 137, + 565, + 862, + 650 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For MobileNet, we achieve between $3 . 6 \\times$ and $6 . 4 \\times$ speedups when using Slalom for verifiable inference (for the standard or “fused” model, respectively). The speedups are smaller than for VGG16, as MobileNet performs much fewer operations per layer (verifying a linear layer requires computing at least two multiplications for each input and output. The closer the forward pass gets to that lower-bound, the less we can save by outsourcing). ", + "bbox": [ + 137, + 656, + 862, + 713 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Private Inference. We further benchmark the cost of private DNN inference, where inputs of outsourced linear layers are additionally blinded. Blinding and unblinding each layer’s inputs and outputs is costly, especially in SGX due to the extra in-enclave memory reads and writes. Nevertheless, for VGG16 and the fused MobileNet variant without intermediate activations, we achieve respective speedups of $1 3 . 0 \\times$ and $5 . 0 \\times$ for private outsourcing (in black in Figure 3), and speedups of $1 0 . 7 \\times$ and $4 . 1 \\times$ when also ensuring integrity (in purple). For this benchmark, the precomputed unblinding factor are stored in untrusted memory. ", + "bbox": [ + 137, + 724, + 862, + 809 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We performed the same experiments on a standard CPU (i.e., without SGX) and find that Slalom’s improvements are even higher in non-resource-constrained or multi-threaded environments (see Appendix G-H). Slalom’s improvements over the baseline also hold when accounting for energy efficiency (see Section C). ", + "bbox": [ + 138, + 815, + 861, + 857 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/5df56a4274ed6e233912c5524664ae350b78563790ca22e417ac562aad5df2f1.jpg", + "image_caption": [ + "Figure 3: Verifiable and private inference with Intel SGX. We show results for VGG16, VGG16 without the fully connected layers, MobileNet, and a fused MobileNet variant with no intermediate activation for separable convolutions. We compare the baseline of fully executing the DNN in the enclave (blue) to different secure outsourcing schemes: integrity with Freivalds (red); integrity with Freivalds and precomputed secrets (yellow); privacy only (black); privacy and integrity (purple). " + ], + "image_footnote": [], + "bbox": [ + 138, + 174, + 861, + 272 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/9ceb8a1cf9a5c8503bd599b1f66c4bf349f3d490915536e0c23e1b7269842915.jpg", + "image_caption": [ + "Figure 4: Secure outsourcing of ResNet models with Intel SGX. We compare the baseline of fully executing the DNN in the enclave (blue) to secure outsourcing with integrity (yellow) and privacy and integrity (purple). " + ], + "image_footnote": [], + "bbox": [ + 137, + 371, + 862, + 457 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Extending Slalom to Deep Residual Networks. The Slalom algorithm in Figure 1 and our evaluations above focus on feed-forward architectures. Extending Slalom to more complex DNNs is quite simple. To illustrate, we consider the family of ResNet models (He et al., 2016), which use residual blocks $f ( x ) = \\sigma ( f _ { 1 } ( x ) + f _ { 2 } ( x ) )$ that merge two feed-forward “paths” $f _ { 1 }$ and $f _ { 2 }$ into a final activation $\\sigma$ . To verify integrity of $f ( x )$ , the TEE simply verifies all linear layers in $f _ { 1 }$ and $f _ { 2 }$ and computes $\\sigma$ directly. For privacy, the TEE applies the interactive Slalom protocol in Figure 1 (right) in turn to $f _ { 1 }$ and $f _ { 2 }$ , and then computes $\\sigma$ . The results for the privacy-preserving Slalom variant in Figure 4 use a preliminary implementation that performs all required operations—and thus provides meaningful performance numbers—but without properly constructed unblinding factors. ", + "bbox": [ + 137, + 522, + 862, + 635 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We use the ResNet implementation from Keras Chollet et al. (2015), which contains a pre-trained 50-layer variant. For this model, we find that our quantization scheme results in less than a $0 . 5 \\%$ decrease in accuracy (see Table 3). For other variants (i.e., with 18, 34, 101 and 152 layers) we compute throughput on untrained models. Figure 4 shows benchmarks for different ResNet variants when executed fully in the enclave (our baseline) as well as secure outsourcing with integrity or privacy and integrity. For all models, we achieve $6 . 6 \\times$ to $1 4 . 4 \\times$ speedups for verifiable inference and $4 . 4 \\times$ to $9 . 0 \\times$ speedups when adding privacy. ", + "bbox": [ + 135, + 641, + 862, + 726 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Comparing results for different models is illustrative of how Slalom’s savings scale with model size and architectural design choices. The 18 and 34-layer ResNets use convolutions with $3 \\times 3$ kernels, whereas the larger models mainly use pointwise convolutions. As shown in Table 2 verifying a convolution is about a factor $k ^ { 2 } \\cdot c _ { \\mathrm { o u t } }$ than computing it, which explains the higher savings for models that use convolutions with large kernel windows. When adding more layers to a model, we expect Slalom’s speedup over the baseline to remain constant (e.g., if we duplicate each layer, the baseline computation and the verification should both take twice as long). Yet we find that Slalom’s speedups usually increase as layers get added to the ResNet architecture. This is because the deeper ResNet variants are obtained by duplicating layers towards the end of the pipeline, which have the largest number of channels and for which Slalom achieves the highest savings. ", + "bbox": [ + 135, + 731, + 862, + 858 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CHALLENGES FOR VERIFIABLE AND PRIVATE TRAINING ", + "text_level": 1, + "bbox": [ + 137, + 174, + 637, + 191 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Our techniques for secure outsourcing of DNN inference might also apply to DNN training. Indeed, a backward pass consists of similar linear operators as a forward pass, and can thus be verified with Freivalds’ algorithm. Yet, applying Slalom to DNN training is challenging, as described below, and we leave this problem open. ", + "bbox": [ + 137, + 207, + 864, + 250 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "• Quantizing DNNs for training is harder than for inference, due to large changes in weight magnitudes (Micikevicius et al., 2018). Thus, a more flexible quantization scheme than the one we used would be necessary. • Because the DNN’s weights change during training, the same preprocessed random vectors for Freivalds’ check cannot be re-used indefinitely. The most efficient approach would presumably be to train with very large batches than can then be verified simultaneously. • Finally, the pre-computation techniques we employ for protecting input privacy do not apply for training, as the weights change after every processed batch. Moreover, Slalom does not try to hide the model weights from the untrusted processor, which might be a requirement for private training. ", + "bbox": [ + 143, + 253, + 862, + 375 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 137, + 393, + 282, + 410 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This paper has studied the efficiency of evaluating a DNN in a Trusted Execution Environment (TEE) to provide strong integrity and privacy guarantees. We explored new approaches for segmenting a DNN evaluation to securely outsource work from a trusted environment to a faster co-located but untrusted processor. ", + "bbox": [ + 137, + 425, + 862, + 468 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We designed Slalom, a framework for efficient DNN evaluation that outsources all linear layers from a TEE to a GPU. Slalom leverage Freivalds’ algorithm for verifying correctness of linear operators, and additionally encrypts inputs with precomputed blinding factors to preserve privacy. Slalom can work with any TEE and we evaluated its performance using Intel SGX on various workloads. For canonical DNNs (VGG16, MobileNet and ResNet variants), we have shown that Slalom boosts inference throughput without compromising security. ", + "bbox": [ + 137, + 474, + 861, + 545 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Securely outsourcing matrix products from a TEE has applications in ML beyond DNNs (e.g., non negative matrix factorization, dimensionality reduction, etc.) We have also explored avenues and challenges towards applying similar techniques to DNN training, an interesting direction for future work. Finally, our general approach of outsourcing work from a TEE to a faster co-processor could be applied to other problems which have fast verification algorithms, e.g., those considered in (McConnell et al., 2011; Zhang et al., 2014). ", + "bbox": [ + 137, + 551, + 862, + 622 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 137, + 642, + 250, + 656 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tiago Alves and Don Felton. Trustzone: Integrated hardware and software security-enabling trusted computing in embedded systems. Technical report, ARM, 2004. \nFerdinand Brasser, Urs Müller, Alexandra Dmitrienko, Kari Kostiainen, Srdjan Capkun, and Ahmad-Reza Sadeghi. Software grand exposure: SGX cache attacks are practical. In USENIX Workshop on Offensive Technologies, 2017. \nRan Canetti, Yehuda Lindell, Rafail Ostrovsky, and Amit Sahai. Universally composable two-party and multi-party secure computation. In Proceedings of the thiry-fourth annual ACM symposium on Theory of computing, pp. 494–503. ACM, 2002. \nGuoxing Chen, Sanchuan Chen, Yuan Xiao, Yinqian Zhang, Zhiqiang Lin, and Ten H Lai. SGXPECTRE attacks: Leaking enclave secrets via speculative execution. arXiv preprint arXiv:1802.09085, 2018. \nSanchuan Chen, Xiaokuan Zhang, Michael K Reiter, and Yinqian Zhang. Detecting privileged side-channel attacks in shielded execution with déjá vu. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 7–18. ACM, 2017. ", + "bbox": [ + 133, + 664, + 862, + 857 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Raymond Cheng, Fan Zhang, Jernej Kos, Warren He, Nicholas Hynes, Noah Johnson, Ari Juels, Andrew Miller, and Dawn Song. Ekiden: A platform for confidentiality-preserving, trustworthy, and performant smart contract execution. arXiv preprint arXiv:1804.05141, 2018. ", + "bbox": [ + 133, + 178, + 861, + 217 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "François Chollet et al. Keras. https://keras.io, 2015. ", + "bbox": [ + 137, + 224, + 496, + 239 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "François Chollet. Xception: Deep learning with depthwise separable convolutions. In Conference on Computer Vision and Pattern Recognition (CVPR), 2017. ", + "bbox": [ + 132, + 247, + 862, + 273 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Victor Costan and Srinivas Devadas. Intel SGX explained. https://eprint.iacr.org/2016/086, 2016. ", + "bbox": [ + 135, + 282, + 810, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Victor Costan, Ilia Lebedev, and Srinivas Devadas. Sanctum: Minimal hardware extensions for strong software isolation. In USENIX Security Symposium, 2016. ", + "bbox": [ + 133, + 304, + 857, + 330 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Fergus Dall, Gabrielle De Micheli, Thomas Eisenbarth, Daniel Genkin, Nadia Heninger, Ahmad Moghimi, and Yuval Yarom. Cachequote: Efficiently recovering long-term secrets of sgx epid via cache attacks. IACR Transactions on Cryptographic Hardware and Embedded Systems, 2018(2):171–191, 2018. ", + "bbox": [ + 133, + 339, + 861, + 378 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In Conference on Computer Vision and Pattern Recognition (CVPR), pp. 248–255. IEEE, 2009. ", + "bbox": [ + 133, + 386, + 862, + 414 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dario Fiore and Rosario Gennaro. Publicly verifiable delegation of large polynomials and matrix computations, with applications. In Proceedings of the 2012 ACM conference on Computer and communications security, pp. 501–512. ACM, 2012. ", + "bbox": [ + 135, + 421, + 862, + 460 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ben Fisch, Dhinakaran Vinayagamurthy, Dan Boneh, and Sergey Gorbunov. Iron: functional encryption using intel sgx. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 765–782. ACM, 2017. ", + "bbox": [ + 133, + 468, + 866, + 496 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rusins Freivalds. Probabilistic machines can use less running time. In IFIP congress, volume 839, pp. 842, 1977. ", + "bbox": [ + 137, + 503, + 813, + 518 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zahra Ghodsi, Tianyu Gu, and Siddharth Garg. Safetynets: Verifiable execution of deep neural networks on an untrusted cloud. In Advances In Neural Information Processing Systems (NIPS), pp. 4675–4684, 2017. ", + "bbox": [ + 133, + 526, + 861, + 553 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ran Gilad-Bachrach, Nathan Dowlin, Kim Laine, Kristin Lauter, Michael Naehrig, and John Wernsing. Cryptonets: Applying neural networks to encrypted data with high throughput and accuracy. In International Conference on Machine Learning (ICML), pp. 201–210, 2016. ", + "bbox": [ + 133, + 561, + 861, + 601 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Johannes Götzfried, Moritz Eckert, Sebastian Schinzel, and Tilo Müller. Cache attacks on Intel SGX. In European Workshop on Systems Security, pp. 2. ACM, 2017. ", + "bbox": [ + 132, + 608, + 861, + 636 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Suyog Gupta, Ankur Agrawal, Kailash Gopalakrishnan, and Pritish Narayanan. Deep learning with limited numerical precision. In International Conference on Machine Learning (ICML), pp. 1737–1746, 2015. ", + "bbox": [ + 135, + 643, + 861, + 671 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lucjan Hanzlik, Yang Zhang, Kathrin Grosse, Ahmed Salem, Max Augustin, Michael Backes, and Mario Fritz. Mlcapsule: Guarded offline deployment of machine learning as a service. arXiv preprint arXiv:1808.00590, 2018. ", + "bbox": [ + 135, + 678, + 859, + 705 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Danny Harnik and Eliad Tsfadia. Impressions of Intel SGX performance. https://medium.com/@danny_harnik/ impressions-of-intel-sgx-performance-22442093595a, 2017. Accessed on May 17, 2018. ", + "bbox": [ + 135, + 713, + 862, + 741 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 133, + 748, + 862, + 775 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto, and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv preprint arXiv:1704.04861, 2017. ", + "bbox": [ + 135, + 784, + 861, + 821 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tyler Hunt, Congzheng Song, Reza Shokri, Vitaly Shmatikov, and Emmett Witchel. Chiron: Privacy-preserving machine learning as a service. arXiv preprint arXiv:1803.05961, 2018. ", + "bbox": [ + 135, + 830, + 857, + 858 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Intel Corp. Intel Software Guard Extensions Evaluation SDK. https://software.intel.com/en-us/sgx-sdk, 2015. \nIntel Corp. Intel software guard extensions (sgx) SW development guidance for potential bounds check bypass (CVE2017-5753) side channel exploits. https://software.intel.com/sites/default/files/180204_SGX_ SDK_Developer_Guidance_v1.0.pdf, 2018. \nChiraag Juvekar, Vinod Vaikuntanathan, and Anantha Chandrakasan. Gazelle: A low latency framework for secure neural network inference. arXiv preprint arXiv:1801.05507, 2018. \nPaul Kocher, Daniel Genkin, Daniel Gruss, Werner Haas, Mike Hamburg, Moritz Lipp, Stefan Mangard, Thomas Prescher, Michael Schwarz, and Yuval Yarom. Spectre attacks: Exploiting speculative execution. arXiv preprint arXiv:1801.01203, 2018. \nSangho Lee, Ming-Wei Shih, Prasun Gera, Taesoo Kim, Hyesoon Kim, and Marcus Peinado. Inferring fine-grained control flow inside SGX enclaves with branch shadowing. In USENIX Security Symposium, pp. 16–18, 2017. \nWei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. SSD: Single shot multibox detector. In European Conference on Computer Vision (ECCV), pp. 21–37. Springer, 2016. \nRoss M McConnell, Kurt Mehlhorn, Stefan Näher, and Pascal Schweitzer. Certifying algorithms. Computer Science Review, 5(2):119–161, 2011. \nFrank McKeen, Ilya Alex, Alex Berenzon, Carlos Rozas, Hisham Shafi, Vedvyas Shanbhogue, and Uday Savagaonkar. Innovative instructions and software model for isolated execution. In International Workshop on Hardware and Architectural Support for Security and Privacy (HASP), 2013. \nPaulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael Houston, Oleksii Kuchaev, Ganesh Venkatesh, et al. Mixed precision training. In International Conference on Learning Representations (ICLR), 2018. \nAhmad Moghimi, Gorka Irazoqui, and Thomas Eisenbarth. Cachezoom: How SGX amplifies the power of cache attacks. In International Conference on Cryptographic Hardware and Embedded Systems, pp. 69–90. Springer, 2017. \nPayman Mohassel and Yupeng Zhang. SecureML: A system for scalable privacy-preserving machine learning. In IEEE Symposium on Security and Privacy, pp. 19–38. IEEE, 2017. \nOlga Ohrimenko, Felix Schuster, Cdric Fournet, Aastha Mehta, Sebastian Nowozin, Kapil Vaswani, and Manuel Costa. Oblivious multi-party machine learning on trusted processors. In USENIX Security Symposium, 2016. \nMeni Orenbach, Pavel Lifshits, Marina Minkin, and Mark Silberstein. Eleos: Exitless os services for sgx enclaves. In Proceedings of the Twelfth European Conference on Computer Systems, pp. 238–253. ACM, 2017. \nRafael Pass, Elaine Shi, and Florian Tramèr. Formal abstractions for attested execution secure processors. In EUROCRYPT’17, 2017. \nTao Sheng, Chen Feng, Shaojie Zhuo, Xiaopeng Zhang, Liang Shen, and Mickey Aleksic. A quantization-friendly separable convolution for mobilenets. arXiv preprint arXiv:1803.08607, 2018. \nMing-Wei Shih, Sangho Lee, Taesoo Kim, and Marcus Peinado. T-SGX: Eradicating controlled-channel attacks against enclave programs. In Network and Distributed System Security Symposium (NDSS), 2017. \nShweta Shinde, Zheng Leong Chua, Viswesh Narayanan, and Prateek Saxena. Preventing page faults from telling your secrets. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 317–328. ACM, 2016. \nKaren Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. \nIon Stoica, Dawn Song, Raluca Ada Popa, David Patterson, Michael W Mahoney, Randy Katz, Anthony D Joseph, Michael Jordan, Joseph M Hellerstein, Joseph E Gonzalez, et al. A Berkeley view of systems challenges for AI. arXiv preprint arXiv:1712.05855, 2017. \nPramod Subramanyan, Rohit Sinha, Ilia Lebedev, Srinivas Devadas, and Sanjit A Seshia. A formal foundation for secure remote execution of enclaves. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 2435–2450. ACM, 2017. \nJustin Thaler. Time-optimal interactive proofs for circuit evaluation. In Advances in Cryptology–CRYPTO 2013, pp. 71–89. Springer, 2013. \nFlorian Tramèr, Fan Zhang, Huang Lin, Jean-Pierre Hubaux, Ari Juels, and Elaine Shi. Sealed-Glass Proofs: Using transparent enclaves to prove and sell knowledge. In IEEE European Symposium on Security and Privacy, 2017. \nJo Van Bulck, Nico Weichbrodt, Rüdiger Kapitza, Frank Piessens, and Raoul Strackx. Telling your secrets without page faults: Stealthy page table-based attacks on enclaved execution. In USENIX Security Symposium, 2017. \nJo Van Bulck, Marina Minkin, Ofir Weisse, Daniel Genkin, Baris Kasikci, Frank Piessens, Mark Silberstein, Thomas F. Wenisch, Yuval Yarom, and Raoul Strackx. Foreshadow: Extracting the keys to the Intel SGX kingdom with transient out-of-order execution. In Proceedings of the 27th USENIX Security Symposium, 2018. \nRiad S Wahby, Max Howald, Siddharth Garg, Abhi Shelat, and Michael Walfish. Verifiable ASICs. In IEEE Symposium on Security and Privacy, pp. 759–778. IEEE, 2016. \nRiad S Wahby, Ye Ji, Andrew J Blumberg, Abhi Shelat, Justin Thaler, Michael Walfish, and Thomas Wies. Full accounting for verifiable outsourcing. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 2071–2086. ACM, 2017. \nYuanzhong Xu, Weidong Cui, and Marcus Peinado. Controlled-channel attacks: Deterministic side channels for untrusted operating systems. In S&P’15, pp. 640–656. IEEE, 2015. \nYupeng Zhang, Charalampos Papamanthou, and Jonathan Katz. Alitheia: Towards practical verifiable graph processing. In Proceedings of the 2014 ACM SIGSAC Conference on Computer and Communications Security, pp. 856–867. ACM, 2014. ", + "bbox": [ + 132, + 154, + 866, + 861 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 132, + 178, + 866, + 566 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A DETAILS ON INTEL SGX SECURITY ", + "text_level": 1, + "bbox": [ + 137, + 588, + 470, + 604 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "SGX enclaves isolate execution of a program from all other processes on a same host, including a potentially malicious OS. In particular, enclave memory is fully encrypted and authenticated. When a word is read from memory into a CPU register, a Memory Management Engine handles the decryption (Costan & Devadas, 2016). ", + "bbox": [ + 137, + 619, + 862, + 662 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "While SGX covers many software and hardware attack vectors, there is a large and prominent class of sidechannel attacks that it explicitly does not address (Costan & Devadas, 2016; Tramèr et al., 2017). In the past years, many attacks have been proposed, with the goal of undermining privacy of enclave computations $\\mathrm { { X u } }$ et al., 2015; Brasser et al., 2017; Moghimi et al., 2017; Götzfried et al., 2017; Van Bulck et al., 2017; Lee et al., 2017). Most of these attacks rely on data dependent code behavior in an enclave (e.g., branching or memory access) that can be partially observed by other processes running on the same host. These side-channels are a minor concern for the DNN computations considered in this paper, as the standard computations in a DNN are data-oblivious (i.e., the same operations are applied regardless of the input data) (Ohrimenko et al., 2016). ", + "bbox": [ + 137, + 669, + 862, + 781 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The recent Spectre attacks on speculative execution (Kocher et al., 2018) also prove damaging to SGX (as well as to most other processors), as recently shown (Chen et al., 2018; Dall et al., 2018; Van Bulck et al., 2018). Mitigations for these side-channel attacks are being developed (Shinde et al., 2016; Shih et al., 2017; Chen et al., 2017; Intel Corp., 2018) but a truly secure solution might require some architectural changes, e.g., as in the proposed Sanctum processor (Costan et al., 2016). ", + "bbox": [ + 137, + 786, + 862, + 857 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We refrain from formally modeling SGX’s (or other TEE’s) security in this paper, as Slalom is mostly concerned with outsourcing protocols wherein the TEE acts as a client. We refer the interested reader to (Pass et al., 2017; Fisch et al., 2017; Subramanyan et al., 2017) for different attempts at such formalisms. ", + "bbox": [ + 135, + 176, + 864, + 219 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B FORMAL SECURITY DEFINITIONS AND PROOFS ", + "text_level": 1, + "bbox": [ + 137, + 241, + 563, + 257 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We define a secure outsourcing scheme, between a client $\\mathcal { C }$ and a server $s$ , for a DNN $F ( x ) : \\mathcal { X } \\mathcal { Y }$ from some family $\\mathcal { F }$ (e.g., all DNNs of a given size). We first assume that the model $F$ is known to both $\\mathcal { C }$ and $s$ : ", + "bbox": [ + 135, + 273, + 862, + 303 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Definition B.1 (Secure Outsourcing Schemes). A secure outsourcing scheme consists of an offline preprocessing algorithm Preproc, as well as an interactive online protocol Outsource $\\langle \\mathcal { C } , \\mathcal { S } \\rangle$ , defined as follows: ", + "bbox": [ + 135, + 306, + 859, + 335 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• $\\mathsf { s t } \\gets \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } )$ : The preprocessing algorithm is run by $\\mathcal { C }$ and generates some data-independent state $\\mathtt { s t }$ (e.g., cryptographic keys or precomputed values to accelerate the online outsourcing protocol.) • $\\mathcal { V } \\cup \\{ \\bot \\} \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle \\mathrm { : }$ : The online outsourcing protocol is initiated by $\\mathcal { C }$ with inputs $( F , x , s \\ t )$ . At the end of the protocol, $\\mathcal { C }$ either outputs a value $y \\in \\mathcal { V }$ or aborts (i.e., $\\mathcal { C }$ outputs $\\perp$ ). ", + "bbox": [ + 138, + 340, + 862, + 407 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The properties that we may require from a secure outsourcing scheme are: ", + "bbox": [ + 140, + 412, + 622, + 428 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• Correctness: For any $\\begin{array} { r l r l } { F } & { { } \\in } & { { \\mathcal { F } } } \\end{array}$ and $\\begin{array} { r l r l } { x } & { { } \\in } & { { \\mathcal { X } } } \\end{array}$ , running $\\begin{array} { r l r } { \\mathsf { s t } } & { { } \\gets } & { \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } ) } \\end{array}$ and $y $ Outsource $\\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle$ yields $y = F ( x )$ . ", + "bbox": [ + 143, + 431, + 856, + 463 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• t-Integrity: For any $F \\in { \\mathcal { F } }$ , input $x \\in \\mathcal { X }$ and probabilistic polynomial-time adversary $S ^ { * }$ , the probability that $\\tilde { y } = \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { \\ast } ( F ) \\rangle$ and $\\tilde { y } \\notin \\{ F ( x ) , \\bot \\}$ is less than $t$ . ", + "bbox": [ + 145, + 468, + 857, + 500 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• Input privacy: For any $F \\in { \\mathcal { F } }$ , inputs $x , x ^ { \\prime } \\in { \\mathcal { X } }$ and probabilistic poly-time adversary ${ \\boldsymbol { S } } ^ { * }$ , the views of $S ^ { * }$ in Outsource $\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } ( F ) \\rangle$ and Outsource $\\langle \\mathcal { C } ( F , \\overline { { x ^ { \\prime } } } , \\mathrm { { s t } } ) , S ^ { \\ast } ( \\mathrm { { \\bar { F } } } ) \\rangle$ are computationally indistinguishable. ", + "bbox": [ + 147, + 506, + 857, + 535 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• Efficiency: The online computation of $\\mathcal { C }$ in Outsource should be less than the cost for $\\mathcal { C }$ to evaluate $F \\in { \\mathcal { F } }$ . ", + "bbox": [ + 142, + 541, + 862, + 558 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Model Privacy. In some applications a secure outsourcing scheme may also require to hide the model $F$ from either $s$ or $\\mathcal { C }$ (in which case that party would obviously not take $F$ as input in the above scheme). ", + "bbox": [ + 137, + 573, + 862, + 602 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Privacy with respect to an adversarial server ${ \\boldsymbol { S } } ^ { * }$ (which Slalom does not provide), is defined as the indistinguishability of $S ^ { * }$ ’s views in Outsource $\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } \\rangle$ and Outsource $\\langle \\mathcal { C } ( F ^ { \\prime } , x , \\mathrm { s t } ) , S ^ { * } \\rangle$ for any $F , F ^ { \\prime } \\in \\mathcal { F }$ . ", + "bbox": [ + 135, + 608, + 862, + 637 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "As noted in Section 2.1, a meaningful model-privacy guarantee with respect to $\\mathcal { C }$ requires that $s$ first commit to a specific DNN $F$ , and then convinces $\\mathcal { C }$ that her outputs were produced with the same model as all other clients’. We refer the reader to Canetti et al. (2002) for formal definitions for such commit-and-prove schemes, and to Tramèr et al. (2017) who show how to trivially instantiate them using a TEE. ", + "bbox": [ + 137, + 643, + 862, + 700 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Theorem 3.2. Let $\\mathrm { s t ~ ~ }$ Preproc and Outsource $\\langle \\mathrm { T E E } ( F , x , \\mathrm { s t } ) , S \\rangle$ be the outsourcing scheme defined in Figure 1 (right). We assume that all random values sampled by the TEE are produced by a secure cryptographically secure pseudorandom number generator (PRNG) (with elements in $\\mathbb { S } \\subseteq \\mathbb { F }$ for the integritycheck vectors $s$ used in Freivalds’ algorithm, and in $\\mathbb { F }$ for the blinding vectors $r _ { i }$ ). ", + "bbox": [ + 137, + 709, + 862, + 767 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We first consider integrity. Assume that the scheme is run with input $x _ { 1 }$ and that the TEE outputs $y _ { n }$ . We will bound $\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) \\ | \\ { \\dot { y } } _ { n } \\neq \\bot ]$ . By the security of the PRNG, we can replace the vectors $s$ used in Freivalds’ algorithm by truly uniformly random values in $\\mathbb { S } \\subseteq \\mathbb { F }$ , via a simple hybrid argument. For the $i$ -th linear layer, with operator $W _ { i }$ , input $x _ { i }$ and purported output $y _ { i }$ , we then have that $y _ { i } \\neq x _ { i } W _ { i }$ with probability at most $1 / | \\mathbb { S } | ^ { k }$ . By a simple union bound, we thus have that $\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) ] \\leq { n } / { | \\mathbb { S } | ^ { k } } - \\operatorname { n e g l } ( \\lambda ) .$ . Note that this bound holds even if the same (secret) random values $s$ are re-used across layers. ", + "bbox": [ + 137, + 773, + 862, + 858 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For privacy, consider the views of an adversary $S ^ { * }$ when Slalom is run with inputs $x _ { 1 }$ and $x _ { 1 } ^ { \\prime }$ . Again, by the security of the PRNG, we consider a hybrid protocol where we replace the pre-computed blinding vectors $r _ { i }$ by truly uniformly random values in $\\mathbb { F }$ . In this hybrid protocol, $\\tilde { x } _ { i } = x _ { i } + r _ { i }$ is simply a “one-time-pad” encryption of $x _ { i }$ over the field $\\mathbb { F }$ , so $S ^ { * }$ ’s views in both executions of the hybrid protocol are equal (information theoretically). Thus, $S ^ { * }$ ’s views in both executions of the original protocol are computationally indistinguishable. □ ", + "bbox": [ + 137, + 176, + 862, + 247 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Proof of Corollary 3.3. The outsourcing protocol between the remote client $\\mathcal { C }$ and server $s$ hosting the TEE is simply defined as follows (we assume the model belongs to $s$ ): ", + "bbox": [ + 137, + 261, + 859, + 289 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "• $\\mathsf { s t } \\gets \\mathsf { P r e p r o c ( ) }$ : $\\mathcal { C }$ and the TEE setup a secure authenticated communication channel, using the TEE’s remote attestation property. The TEE receives the model $F$ from $s$ and initializes the Slalom protocol. ", + "bbox": [ + 140, + 295, + 859, + 324 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "• Outsource $\\langle { \\mathcal { C } } ( x , { \\mathrm { s t } } ) , S ( F ) \\rangle$ : – $\\mathcal { C }$ sends $x$ to the TEE over the secure channel. – The TEE securely computes $y = F ( x )$ using Slalom. – The TEE sends $y$ (and a publicly verifiable commitment to $F$ ) to $\\mathcal { C }$ over the secure channel. ", + "bbox": [ + 145, + 329, + 785, + 393 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "If the TEE is secure (i.e., it acts as a trusted third party hosted by $s$ ), then the result follows. ", + "bbox": [ + 135, + 400, + 740, + 415 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C PERFORMANCE COMPARISON OF DNN OUTSOURCING SCHEMES ", + "text_level": 1, + "bbox": [ + 140, + 439, + 710, + 455 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We provide a brief overview of the outsourcing approaches compared in Table 1. Our baseline runs a DNN in a TEE (a single-threaded Intel SGX enclave) and can provide all the security guarantees of an ML outsourcing scheme. On a high-end GPU (an Nvidia TITAN XP), we achieve over $5 0 \\times$ higher throughput but no security. For example, for MobileNet, the enclave evaluates 16 images/sec and the GPU 900 images/sec $5 6 \\times$ higher). ", + "bbox": [ + 137, + 473, + 862, + 529 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "SafetyNets (Ghodsi et al., 2017) and Gazelle (Juvekar et al., 2018) are two representative works that achieve respectively integrity and privacy using purely cryptographic approaches (without a TEE). SafetyNets does not hide the model from either party, while Gazelle leaks some architectural details to the client. The cryptographic techniques used by these systems incur large computation and communication overheads in practice. The largest model evaluated by SafetyNets is a 4-layer TIMIT model with quadratic activations which runs at about 13 images/sec (on a notebook CPU). In our baseline enclave, the same model runs at over 3,500 images/sec. The largest model evaluated by Gazelle is an 8-layer CIFAR10 model. In the enclave, we can evaluate 450 images/sec whereas Gazelle evaluates a single image in 3.5 sec with $3 0 0 \\mathrm { M B }$ of communication between client and server. ", + "bbox": [ + 137, + 536, + 861, + 648 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A Note on Energy Efficiency. When comparing approaches with different hardware (e.g., our single-core CPU baseline versus Slalom which also uses a GPU), throughput alone is not the fairest metric. E.g., the baseline’s throughput could also be increased by adding more SGX CPUs. A more accurate comparison considers the energy efficiency of a particular approach, a more direct measure of the recurrent costs to the server $s$ . ", + "bbox": [ + 137, + 661, + 862, + 718 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For example, when evaluating MobileNet or VGG16, our GPU draws 85W of power, whereas our baseline SGX CPU draws 30W. As noted above, the GPU also achieves more than $5 0 \\times$ higher throughput, and thus is at least $1 8 \\times$ more energy efficient (e.g., measured in Joules per image) than the enclave. ", + "bbox": [ + 137, + 723, + 862, + 767 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For Slalom, we must consider the cost of running both the enclave and GPU. In our evaluations, the outsourced computations on the GPU account for at most $1 0 \\%$ of the total running time of Slalom (i.e., the integrity checks and data encryption/decryption in the enclave are the main bottleneck). Thus, the power consumption attributed to Slalom is roughly $1 0 \\% \\cdot 8 5 \\mathrm { W } + 9 0 \\% \\cdot 3 0 \\mathrm { W } = 3 5 . 5 \\mathrm { W } .$ Note that when not being in use by Slalom, the trusted CPU or untrusted GPU can be used by other tasks running on the server. As Slalom achieves $4 \\times - 2 0 \\times$ higher throughput than our baseline for the tasks we evaluate, it is also about $3 . 4 \\times - 1 7 . 1 \\times$ more energy efficient. ", + "bbox": [ + 137, + 773, + 861, + 858 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D NOTATION FOR STANDARD LINEAR OPERATORS ", + "text_level": 1, + "bbox": [ + 135, + 174, + 573, + 191 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Below we describe some common linear operators used in deep neural networks. For simplicity, we omit additive bias terms, and assume that convolutional operators preserve the spatial height and width of their inputs. Our techniques easily extend to convolutions with arbitrary strides, paddings, and window sizes. ", + "bbox": [ + 135, + 217, + 862, + 260 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For a fully-connected layer $f _ { \\mathrm { F C } }$ , the kernel $W$ has dimension $\\left( h _ { \\mathrm { i n } } \\times h _ { \\mathrm { o u t } } \\right)$ . For an input $x$ of dimension $h _ { \\mathrm { i n } }$ , we have $f _ { \\mathrm { F C } } ( \\dot { \\boldsymbol { x } } ) = \\boldsymbol { x } ^ { \\top } \\boldsymbol { W }$ . The cost of the layer is $h _ { \\mathrm { i n } } \\cdot h _ { \\mathrm { o u t } }$ multiplications. ", + "bbox": [ + 135, + 266, + 861, + 295 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A convolutional layer has kernel $W$ of size $( k \\times k \\times c _ { \\mathrm { i n } } \\times c _ { \\mathrm { o u t } } )$ . On input $x$ of size $( h \\times w \\times c _ { \\mathrm { i n } } )$ , $f _ { \\mathrm { c o n v } } ( x ) =$ $\\mathsf { C o n v } ( x ; W )$ produces an output of size $( h \\times w \\times c _ { \\mathrm { o u t } } )$ . A convolution can be seen as the combination of two linear operators: a “patch-extraction” process that transforms the input $x$ into an intermediate input $x ^ { \\prime }$ of dimension $( \\bar { h } \\cdot w , k ^ { 2 } \\cdot c _ { \\mathrm { i n } } ) $ by extracting $k \\times k$ patches, followed by a matrix multiplication with $W$ . The cost of this layer is thus $\\boldsymbol { k } ^ { 2 } \\cdot \\boldsymbol { h } \\cdot \\boldsymbol { w } \\cdot \\boldsymbol { c } _ { \\mathrm { i n } } \\cdot \\boldsymbol { c } _ { \\mathrm { o u t } }$ multiplications. ", + "bbox": [ + 137, + 301, + 862, + 372 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A separable convolution has two kernels, $W _ { 1 }$ of size $( k \\times k \\times c _ { \\mathrm { i n } } )$ and $W _ { 2 }$ of size $\\left( { c _ { \\mathrm { i n } } } \\times { c _ { \\mathrm { o u t } } } \\right)$ . On input $x$ of size $( h \\times w \\times c _ { \\mathrm { i n } } )$ , $f _ { \\mathrm { s e p - c o n v } } ( x )$ produces an output of size $( h \\times w \\times c _ { \\mathrm { o u t } } )$ , by applying a depthwise convolution $f _ { \\mathrm { d p - c o n v } } ( x )$ with kernel $W _ { 1 }$ followed by a pointwise convolution $f _ { \\mathrm { p t - c o n v } } ( x )$ with kernel $W _ { 2 }$ . The depthwise convolution consists of $c _ { \\mathrm { i n } }$ independent convolutions with filters of size $k \\times k \\times 1 \\times 1$ , applied to a single input channel, which requires $k ^ { 2 } \\cdot h \\cdot w \\cdot c _ { \\mathrm { i n } }$ multiplications. A pointwise convolution is simply a matrix product with an input of size $( h \\cdot w ) \\times c _ { \\mathrm { i n } }$ , and thus requires $h \\cdot w \\cdot c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u t } }$ multiplications. ", + "bbox": [ + 135, + 377, + 862, + 463 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "E NEURAL NETWORK DETAILS ", + "text_level": 1, + "bbox": [ + 137, + 501, + 413, + 517 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Table 3 provides details about the two DNNs we use in our evaluation (all pre-trained models are taken from Keras Chollet et al. (2015)). We report top 1 and top 5 accuracy on ImageNet with and without the simple quantization scheme described in Section 3.1. Quantization results in at most a $0 . 5 \\%$ drop in top 1 and top 5 accuracy. More elaborate quantization schemes exist (e.g., Micikevicius et al. (2018)) that we have not experimented with in this work. ", + "bbox": [ + 137, + 542, + 862, + 613 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We report the number of model parameters, which is relevant to the memory constraints of TEEs such as Intel SGX. We also list the total size of the inputs and outputs of all the model’s linear layers, which impact the amount of communication between trusted and untrusted co-processors in Slalom, as well as the amount of data stored in the TEE when using Freivalds’ algorithm with preprocessing. ", + "bbox": [ + 137, + 619, + 862, + 676 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/0f91fa022782d0ac5f385e372dd812fdd263b672ff72a2a75427796980f9477e.jpg", + "table_caption": [ + "Table 3: Details of models used in our evaluation. Accuracies are computed on the ImageNet validation set. Pre-trained models are from Keras Chollet et al. (2015). " + ], + "table_footnote": [], + "table_body": "
AccuracyQuantized
ModelTop 1Top5Top1Top 5LayersParameters (M)Size of layer inputs/outputs (M)
VGG1671.090.070.689.516138.49.1 / 13.6
VGG16 (no top)=-1314.79.1/13.5
MobileNet70.789.670.589.5284.25.5/ 5.0
MobileNet (fused)=1154.23.6/3.1
ResNet 5076.992.476.492.25025.510.0 /10.4
", + "bbox": [ + 150, + 742, + 843, + 844 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "F MODULAR ARITHMETIC WITH FLOATING POINT OPERATIONS", + "text_level": 1, + "bbox": [ + 135, + 174, + 683, + 191 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this section, we briefly describe how Slalom performs modular arithmetic over a field $\\mathbb { Z } _ { p }$ in the TEE, while leveraging standard floating point operations to maximize computational efficiency. The main computations in the TEE are inner products over $\\mathbb { Z } _ { p }$ for Freivalds’ check (a matrix product is itself a set of inner products). ", + "bbox": [ + 137, + 208, + 861, + 251 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Our quantization scheme (see Section 3.1) ensures that all DNN values can be represented in $\\mathbb { Z } _ { p }$ , for $p \\lessapprox 2 ^ { 2 4 }$ , which fits in a standard float. To compute inner products, we first cast elements to doubles (as a single multiplication in $\\mathbb { Z } _ { p }$ would exceed the range of integers exactly representable as floats). Single or double precision floats are preferable to integer types on Intel architectures due to the availability of much more efficient SIMD instructions, at a minor reduction in the range of exactly representable integers. ", + "bbox": [ + 137, + 258, + 862, + 329 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In our evaluation, we target a soundness error of $2 ^ { - 4 0 }$ for each layer. This leads to a tradeoff between the number of repetitions $k$ of Freivalds’ check, and the size of the set $\\mathbb { S }$ from which we draw random values. One check with $| \\mathbb { S } | = 2 ^ { 4 0 }$ is problematic, as multiplying elements in $\\mathbb { Z } _ { p }$ and $\\mathbb { S }$ can exceed the range of integers exactly representable as doubles $( 2 ^ { 5 3 } )$ . With $k = 2$ repetitions, we can set $\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]$ . Multiplications are then bounded by $2 ^ { 2 4 + 1 9 } = 2 ^ { 4 3 }$ , and we can accumulate $2 ^ { 1 0 }$ terms in the inner-product before needing a modular reduction. In practice, we find that increasing $k$ further (and thus reducing $| \\mathbb { S } | )$ is not worthwhile, as the cost of performing more inner products trumps the savings from reducing the number of modulos. ", + "bbox": [ + 137, + 335, + 862, + 435 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "G RESULTS ON A STANDARD CPU ", + "text_level": 1, + "bbox": [ + 138, + 458, + 437, + 474 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For completeness, and to asses how our outsourcing scheme fairs in an environment devoid of Intel SGX’s performance quirks, we rerun the evaluations in Section 4 on the same CPU but outside of SGX’s enclave mode. ", + "bbox": [ + 133, + 492, + 862, + 521 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/9e3a7cd6a779288993a211826b1f16979c45c88d6f37c278fede67cb508715d1.jpg", + "image_caption": [ + "Figure 5: Micro benchmarks on an untrusted CPU. For three different linear operators, we plot the relative speedup of verifying a result compared to computing it. The dotted line in each plot shows the throughput obtained for computing the operation. " + ], + "image_footnote": [], + "bbox": [ + 137, + 536, + 859, + 678 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Figure 5 show the results of the micro-benchmarks for matrix multiplication, convolution and separable convolutions. In all cases, verifying a computation becomes 1-2 orders of magnitude faster than computing it as the outer dimension grows. Compared to the SGX benchmarks, we also see a much better viability of batched verification (we haven’t optimized batched verifications much, as they are inherently slow on SGX. It is likely that these numbers could be improved significantly, to approach those of verification with preprocessing). ", + "bbox": [ + 135, + 738, + 862, + 809 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Figure 6 shows benchmarks for VGG16 and MobileNet on a single core with either direct computation or various secure outsourcing strategies. For integrity alone, we achieve savings up to $8 . 9 \\times$ and $1 9 . 5 \\times$ for MobileNet and VGG16 respectively. Even without storing any secrets in the enclave, we obtain good speedups using batched verification. As noted above, it is likely that the batched results could be further improved. With additional blinding to preserve privacy, we achieve speedups of $3 . 9 \\times$ and $8 . 1 \\times$ for MobileNet and VGG16 respectively. ", + "bbox": [ + 137, + 814, + 861, + 858 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/c8154e92d0e65f4edf1599b73db1e4f3db8f57d0f186fd57a3cf3863327d0a07.jpg", + "image_caption": [ + "Figure 6: Inference with integrity and/or privacy on an untrusted CPU. We compare the baseline inference throughput (blue) to that obtained with “on-the-fly” integrity checks (red); batched integrity checks (green); integrity checks with precomputed secrets (yellow); privacy only (black); and privacy and integrity (purple). The fused MobileNet model has no intermediate activation for separable convolutions. " + ], + "image_footnote": [], + "bbox": [ + 147, + 174, + 861, + 270 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "", + "bbox": [ + 133, + 348, + 862, + 377 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "H PARALLELIZATION ", + "text_level": 1, + "bbox": [ + 137, + 397, + 330, + 414 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Our experiments on SGX in Section 4 where performed using a single execution thread, as SGX enclaves do not have the ability to create threads. We have also experimented with techniques for achieving parallelism in SGX, both for standard computations and outsourced ones, but with little success. ", + "bbox": [ + 133, + 429, + 864, + 472 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "To optimize for throughput, a simple approach is to run multiple forward passes simultaneously. On a standard CPU, this form of “outer-parallelism” achieves close to linear scaling as we increase the number of threads from 1 to 4 on our quad-core machine. With SGX however, we did not manage to achieve any parallel speedup for VGG16—whether for direct computation or verifying outsourced results—presumably because each independent thread requires extra memory that quickly exceeds the PRM limit. For the smaller MobileNet model, we get less than a $1 . 5 \\times$ speedup using up to 4 threads, for direct computation or outsourced verification alike. ", + "bbox": [ + 135, + 478, + 862, + 563 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "DNNs typically also make use of intra-operation parallelism, i.e., computing the output of a given layer using multiple threads. Our DNN library currently does not support intra-operation parallelism, but implementing a dedicated thread pool for SGX could be an interesting extension for future work. Instead, we evaluate the potential benefits of intra-op parallelism on a standard untrusted CPU, for our matrix-product and convolution benchmarks. We make use of Eigen’s internal multi-threading support to speed up these operations, and custom OpenMP code to parallelize dot products, as Eigen does not do this on its own. ", + "bbox": [ + 135, + 568, + 862, + 652 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/827a1dd46e9ddda18510395cc72fb7d148bced674096122d688675387980e22d.jpg", + "image_caption": [ + "Figure 7: Multi-threaded micro benchmarks on an untrusted CPU. Reiterates benchmarks for matrix products and convolutions using 4 threads. " + ], + "image_footnote": [], + "bbox": [ + 232, + 665, + 763, + 819 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Figure 7 shows the results using 4 threads. For convolutions, we have currently only implemented multi-threading for the verification with preprocessing (which requires only standard dot products). Surprisingly maybe, we find that multi-threading increases the gap between direct and verified computations of matrix products, probably because dot products are extremely easy to parallelize efficiently (compared to full convolutions). We also obtain close to linear speedups for verifiable separable convolutions, but omit the results as we currently do not have an implementation of multi-threaded direct computation for depthwise convolutions, which renders the comparison unfair. Due to the various memory-access overheads in SGX, it is unclear whether similar speedups could be obtained by using intra-op parallelism in an enclave, but this is an avenue worth exploring. ", + "bbox": [ + 137, + 176, + 862, + 289 + ], + "page_idx": 18 + } +] \ No newline at end of file diff --git a/parse/train/rJVorjCcKQ/rJVorjCcKQ_middle.json b/parse/train/rJVorjCcKQ/rJVorjCcKQ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..5fd393ae1bfe94f354a0815a393d0f10413a8dec --- /dev/null +++ b/parse/train/rJVorjCcKQ/rJVorjCcKQ_middle.json @@ -0,0 +1,51839 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 85, + 136, + 527, + 174 + ], + "lines": [ + { + "bbox": [ + 83, + 136, + 529, + 155 + ], + "spans": [ + { + "bbox": [ + 83, + 136, + 529, + 155 + ], + "score": 1.0, + "content": "SLALOM: FAST, VERIFIABLE AND PRIVATE EXECUTION OF", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 156, + 426, + 175 + ], + "spans": [ + { + "bbox": [ + 82, + 156, + 426, + 175 + ], + "score": 1.0, + "content": "NEURAL NETWORKS IN TRUSTED HARDWARE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 89, + 192, + 223, + 226 + ], + "lines": [ + { + "bbox": [ + 88, + 192, + 158, + 204 + ], + "spans": [ + { + "bbox": [ + 88, + 192, + 158, + 204 + ], + "score": 1.0, + "content": "Florian Tramèr", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 203, + 170, + 216 + ], + "spans": [ + { + "bbox": [ + 89, + 203, + 170, + 216 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 216, + 223, + 226 + ], + "spans": [ + { + "bbox": [ + 90, + 216, + 223, + 226 + ], + "score": 1.0, + "content": "tramer@cs.stanford.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 316, + 193, + 438, + 226 + ], + "lines": [ + { + "bbox": [ + 316, + 193, + 366, + 204 + ], + "spans": [ + { + "bbox": [ + 316, + 193, + 366, + 204 + ], + "score": 1.0, + "content": "Dan Boneh", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 316, + 203, + 397, + 216 + ], + "spans": [ + { + "bbox": [ + 316, + 203, + 397, + 216 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 317, + 216, + 438, + 226 + ], + "spans": [ + { + "bbox": [ + 317, + 216, + 438, + 226 + ], + "score": 1.0, + "content": "dabo@cs.stanford.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 278, + 255, + 333, + 267 + ], + "lines": [ + { + "bbox": [ + 276, + 254, + 336, + 270 + ], + "spans": [ + { + "bbox": [ + 276, + 254, + 336, + 270 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 120, + 283, + 492, + 426 + ], + "lines": [ + { + "bbox": [ + 119, + 283, + 493, + 296 + ], + "spans": [ + { + "bbox": [ + 119, + 283, + 493, + 296 + ], + "score": 1.0, + "content": "As Machine Learning (ML) gets applied to security-critical or sensitive domains, there is a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 294, + 492, + 307 + ], + "spans": [ + { + "bbox": [ + 119, + 294, + 492, + 307 + ], + "score": 1.0, + "content": "growing need for integrity and privacy for outsourced ML computations. A pragmatic solution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 118, + 305, + 492, + 317 + ], + "spans": [ + { + "bbox": [ + 118, + 305, + 492, + 317 + ], + "score": 1.0, + "content": "comes from Trusted Execution Environments (TEEs), which use hardware and software", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 118, + 316, + 492, + 328 + ], + "spans": [ + { + "bbox": [ + 118, + 316, + 492, + 328 + ], + "score": 1.0, + "content": "protections to isolate sensitive computations from the untrusted software stack. However, these", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 118, + 327, + 492, + 339 + ], + "spans": [ + { + "bbox": [ + 118, + 327, + 492, + 339 + ], + "score": 1.0, + "content": "isolation guarantees come at a price in performance, compared to untrusted alternatives. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 118, + 338, + 493, + 351 + ], + "spans": [ + { + "bbox": [ + 118, + 338, + 493, + 351 + ], + "score": 1.0, + "content": "paper initiates the study of high performance execution of Deep Neural Networks (DNNs) in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 118, + 348, + 493, + 362 + ], + "spans": [ + { + "bbox": [ + 118, + 348, + 493, + 362 + ], + "score": 1.0, + "content": "TEEs by efficiently partitioning DNN computations between trusted and untrusted devices.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 358, + 494, + 373 + ], + "spans": [ + { + "bbox": [ + 118, + 358, + 494, + 373 + ], + "score": 1.0, + "content": "Building upon an efficient outsourcing scheme for matrix multiplication, we propose Slalom, a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 118, + 368, + 494, + 385 + ], + "spans": [ + { + "bbox": [ + 118, + 368, + 494, + 385 + ], + "score": 1.0, + "content": "framework that securely delegates execution of all linear layers in a DNN from a TEE (e.g.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 118, + 380, + 493, + 395 + ], + "spans": [ + { + "bbox": [ + 118, + 380, + 493, + 395 + ], + "score": 1.0, + "content": "Intel SGX or Sanctum) to a faster, yet untrusted, co-located processor. We evaluate Slalom by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 119, + 393, + 493, + 405 + ], + "spans": [ + { + "bbox": [ + 119, + 393, + 493, + 405 + ], + "score": 1.0, + "content": "running DNNs in an Intel SGX enclave, which selectively delegates work to an untrusted GPU.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 404, + 492, + 415 + ], + "spans": [ + { + "bbox": [ + 118, + 404, + 408, + 415 + ], + "score": 1.0, + "content": "For canonical DNNs (VGG16, MobileNet and ResNet variants) we obtain", + "type": "text" + }, + { + "bbox": [ + 409, + 404, + 423, + 414 + ], + "score": 0.87, + "content": "6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 404, + 433, + 415 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 434, + 404, + 453, + 414 + ], + "score": 0.87, + "content": "2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 404, + 492, + 415 + ], + "score": 1.0, + "content": "increases", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 118, + 415, + 477, + 427 + ], + "spans": [ + { + "bbox": [ + 118, + 415, + 288, + 427 + ], + "score": 1.0, + "content": "in throughput for verifiable inference, and", + "type": "text" + }, + { + "bbox": [ + 289, + 415, + 303, + 425 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 415, + 314, + 427 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 314, + 415, + 333, + 425 + ], + "score": 0.89, + "content": "1 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 415, + 477, + 427 + ], + "score": 1.0, + "content": "for verifiable and private inference.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 86, + 453, + 183, + 466 + ], + "lines": [ + { + "bbox": [ + 82, + 452, + 185, + 469 + ], + "spans": [ + { + "bbox": [ + 82, + 452, + 185, + 469 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 85, + 480, + 528, + 536 + ], + "lines": [ + { + "bbox": [ + 82, + 479, + 530, + 493 + ], + "spans": [ + { + "bbox": [ + 82, + 479, + 530, + 493 + ], + "score": 1.0, + "content": "Machine learning is increasingly used in sensitive decision making and security-critical settings. At the same time,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 491, + 529, + 503 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 529, + 503 + ], + "score": 1.0, + "content": "the growth in both cloud offerings and software stack complexity widens the attack surface for ML applications.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 501, + 529, + 515 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 529, + 515 + ], + "score": 1.0, + "content": "This raises the question of integrity and privacy guarantees for ML computations in untrusted environments, in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 513, + 529, + 526 + ], + "spans": [ + { + "bbox": [ + 82, + 513, + 529, + 526 + ], + "score": 1.0, + "content": "particular for ML tasks outsourced by a client to a remote server. Prominent examples include cloud-based ML", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 524, + 530, + 537 + ], + "spans": [ + { + "bbox": [ + 82, + 524, + 530, + 537 + ], + "score": 1.0, + "content": "APIs (e.g., a speech-to-text application that consumes user-provided data) or general ML-as-a-Service platforms.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 85, + 540, + 528, + 585 + ], + "lines": [ + { + "bbox": [ + 83, + 541, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 83, + 541, + 529, + 554 + ], + "score": 1.0, + "content": "Trusted Execution Environments (TEEs), e.g, Intel SGX (McKeen et al., 2013), ARM TrustZone (Alves & Felton,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 552, + 528, + 565 + ], + "spans": [ + { + "bbox": [ + 83, + 552, + 528, + 565 + ], + "score": 1.0, + "content": "2004) or Sanctum (Costan et al., 2016) offer a pragmatic solution to this problem. TEEs use hardware and software", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 561, + 528, + 577 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 528, + 577 + ], + "score": 1.0, + "content": "protections to isolate sensitive code from other applications, while attesting to its correct execution. Running", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 81, + 573, + 514, + 588 + ], + "spans": [ + { + "bbox": [ + 81, + 573, + 514, + 588 + ], + "score": 1.0, + "content": "outsourced ML computations in TEEs provides remote clients with strong privacy and integrity guarantees.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 84, + 591, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 591, + 530, + 604 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 530, + 604 + ], + "score": 1.0, + "content": "For outsourced ML computations, TEEs outperform pure cryptographic approaches (e.g, (Gilad-Bachrach et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 601, + 529, + 615 + ], + "spans": [ + { + "bbox": [ + 82, + 601, + 529, + 615 + ], + "score": 1.0, + "content": "2016; Mohassel & Zhang, 2017; Ghodsi et al., 2017; Juvekar et al., 2018)) by multiple orders of magnitude. At", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 83, + 614, + 529, + 626 + ], + "spans": [ + { + "bbox": [ + 83, + 614, + 529, + 626 + ], + "score": 1.0, + "content": "the same time, the isolation guarantees of TEEs still come at a steep price in performance, compared to untrusted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 624, + 530, + 637 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 530, + 637 + ], + "score": 1.0, + "content": "alternatives (i.e., running ML models on contemporary hardware with no security guarantees). For instance,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 635, + 529, + 647 + ], + "spans": [ + { + "bbox": [ + 83, + 635, + 529, + 647 + ], + "score": 1.0, + "content": "Intel SGX (Intel Corp., 2015) incurs significant overhead for memory intensive tasks (Orenbach et al., 2017;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 83, + 646, + 528, + 658 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 528, + 658 + ], + "score": 1.0, + "content": "Harnik & Tsfadia, 2017), has difficulties exploiting multi-threading, and is currently limited to desktop CPUs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 657, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 83, + 657, + 528, + 669 + ], + "score": 1.0, + "content": "that are outmatched by untrusted alternatives (e.g., GPUs or server CPUs). Thus, our thesis is that for modern ML", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 82, + 667, + 531, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 531, + 681 + ], + "score": 1.0, + "content": "workloads, TEEs will be at least an order of magnitude less efficient than the best available untrusted hardware.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 285, + 708 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 85, + 136, + 527, + 174 + ], + "lines": [ + { + "bbox": [ + 83, + 136, + 529, + 155 + ], + "spans": [ + { + "bbox": [ + 83, + 136, + 529, + 155 + ], + "score": 1.0, + "content": "SLALOM: FAST, VERIFIABLE AND PRIVATE EXECUTION OF", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 156, + 426, + 175 + ], + "spans": [ + { + "bbox": [ + 82, + 156, + 426, + 175 + ], + "score": 1.0, + "content": "NEURAL NETWORKS IN TRUSTED HARDWARE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 89, + 192, + 223, + 226 + ], + "lines": [ + { + "bbox": [ + 88, + 192, + 158, + 204 + ], + "spans": [ + { + "bbox": [ + 88, + 192, + 158, + 204 + ], + "score": 1.0, + "content": "Florian Tramèr", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 203, + 170, + 216 + ], + "spans": [ + { + "bbox": [ + 89, + 203, + 170, + 216 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 216, + 223, + 226 + ], + "spans": [ + { + "bbox": [ + 90, + 216, + 223, + 226 + ], + "score": 1.0, + "content": "tramer@cs.stanford.edu", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 88, + 192, + 223, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 316, + 193, + 438, + 226 + ], + "lines": [ + { + "bbox": [ + 316, + 193, + 366, + 204 + ], + "spans": [ + { + "bbox": [ + 316, + 193, + 366, + 204 + ], + "score": 1.0, + "content": "Dan Boneh", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 316, + 203, + 397, + 216 + ], + "spans": [ + { + "bbox": [ + 316, + 203, + 397, + 216 + ], + "score": 1.0, + "content": "Stanford University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 317, + 216, + 438, + 226 + ], + "spans": [ + { + "bbox": [ + 317, + 216, + 438, + 226 + ], + "score": 1.0, + "content": "dabo@cs.stanford.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 316, + 193, + 438, + 226 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 255, + 333, + 267 + ], + "lines": [ + { + "bbox": [ + 276, + 254, + 336, + 270 + ], + "spans": [ + { + "bbox": [ + 276, + 254, + 336, + 270 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 120, + 283, + 492, + 426 + ], + "lines": [ + { + "bbox": [ + 119, + 283, + 493, + 296 + ], + "spans": [ + { + "bbox": [ + 119, + 283, + 493, + 296 + ], + "score": 1.0, + "content": "As Machine Learning (ML) gets applied to security-critical or sensitive domains, there is a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 294, + 492, + 307 + ], + "spans": [ + { + "bbox": [ + 119, + 294, + 492, + 307 + ], + "score": 1.0, + "content": "growing need for integrity and privacy for outsourced ML computations. A pragmatic solution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 118, + 305, + 492, + 317 + ], + "spans": [ + { + "bbox": [ + 118, + 305, + 492, + 317 + ], + "score": 1.0, + "content": "comes from Trusted Execution Environments (TEEs), which use hardware and software", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 118, + 316, + 492, + 328 + ], + "spans": [ + { + "bbox": [ + 118, + 316, + 492, + 328 + ], + "score": 1.0, + "content": "protections to isolate sensitive computations from the untrusted software stack. However, these", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 118, + 327, + 492, + 339 + ], + "spans": [ + { + "bbox": [ + 118, + 327, + 492, + 339 + ], + "score": 1.0, + "content": "isolation guarantees come at a price in performance, compared to untrusted alternatives. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 118, + 338, + 493, + 351 + ], + "spans": [ + { + "bbox": [ + 118, + 338, + 493, + 351 + ], + "score": 1.0, + "content": "paper initiates the study of high performance execution of Deep Neural Networks (DNNs) in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 118, + 348, + 493, + 362 + ], + "spans": [ + { + "bbox": [ + 118, + 348, + 493, + 362 + ], + "score": 1.0, + "content": "TEEs by efficiently partitioning DNN computations between trusted and untrusted devices.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 358, + 494, + 373 + ], + "spans": [ + { + "bbox": [ + 118, + 358, + 494, + 373 + ], + "score": 1.0, + "content": "Building upon an efficient outsourcing scheme for matrix multiplication, we propose Slalom, a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 118, + 368, + 494, + 385 + ], + "spans": [ + { + "bbox": [ + 118, + 368, + 494, + 385 + ], + "score": 1.0, + "content": "framework that securely delegates execution of all linear layers in a DNN from a TEE (e.g.,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 118, + 380, + 493, + 395 + ], + "spans": [ + { + "bbox": [ + 118, + 380, + 493, + 395 + ], + "score": 1.0, + "content": "Intel SGX or Sanctum) to a faster, yet untrusted, co-located processor. We evaluate Slalom by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 119, + 393, + 493, + 405 + ], + "spans": [ + { + "bbox": [ + 119, + 393, + 493, + 405 + ], + "score": 1.0, + "content": "running DNNs in an Intel SGX enclave, which selectively delegates work to an untrusted GPU.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 118, + 404, + 492, + 415 + ], + "spans": [ + { + "bbox": [ + 118, + 404, + 408, + 415 + ], + "score": 1.0, + "content": "For canonical DNNs (VGG16, MobileNet and ResNet variants) we obtain", + "type": "text" + }, + { + "bbox": [ + 409, + 404, + 423, + 414 + ], + "score": 0.87, + "content": "6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 404, + 433, + 415 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 434, + 404, + 453, + 414 + ], + "score": 0.87, + "content": "2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 404, + 492, + 415 + ], + "score": 1.0, + "content": "increases", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 118, + 415, + 477, + 427 + ], + "spans": [ + { + "bbox": [ + 118, + 415, + 288, + 427 + ], + "score": 1.0, + "content": "in throughput for verifiable inference, and", + "type": "text" + }, + { + "bbox": [ + 289, + 415, + 303, + 425 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 415, + 314, + 427 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 314, + 415, + 333, + 425 + ], + "score": 0.89, + "content": "1 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 415, + 477, + 427 + ], + "score": 1.0, + "content": "for verifiable and private inference.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15, + "bbox_fs": [ + 118, + 283, + 494, + 427 + ] + }, + { + "type": "title", + "bbox": [ + 86, + 453, + 183, + 466 + ], + "lines": [ + { + "bbox": [ + 82, + 452, + 185, + 469 + ], + "spans": [ + { + "bbox": [ + 82, + 452, + 185, + 469 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 85, + 480, + 528, + 536 + ], + "lines": [ + { + "bbox": [ + 82, + 479, + 530, + 493 + ], + "spans": [ + { + "bbox": [ + 82, + 479, + 530, + 493 + ], + "score": 1.0, + "content": "Machine learning is increasingly used in sensitive decision making and security-critical settings. At the same time,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 491, + 529, + 503 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 529, + 503 + ], + "score": 1.0, + "content": "the growth in both cloud offerings and software stack complexity widens the attack surface for ML applications.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 501, + 529, + 515 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 529, + 515 + ], + "score": 1.0, + "content": "This raises the question of integrity and privacy guarantees for ML computations in untrusted environments, in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 513, + 529, + 526 + ], + "spans": [ + { + "bbox": [ + 82, + 513, + 529, + 526 + ], + "score": 1.0, + "content": "particular for ML tasks outsourced by a client to a remote server. Prominent examples include cloud-based ML", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 524, + 530, + 537 + ], + "spans": [ + { + "bbox": [ + 82, + 524, + 530, + 537 + ], + "score": 1.0, + "content": "APIs (e.g., a speech-to-text application that consumes user-provided data) or general ML-as-a-Service platforms.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 82, + 479, + 530, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 85, + 540, + 528, + 585 + ], + "lines": [ + { + "bbox": [ + 83, + 541, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 83, + 541, + 529, + 554 + ], + "score": 1.0, + "content": "Trusted Execution Environments (TEEs), e.g, Intel SGX (McKeen et al., 2013), ARM TrustZone (Alves & Felton,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 552, + 528, + 565 + ], + "spans": [ + { + "bbox": [ + 83, + 552, + 528, + 565 + ], + "score": 1.0, + "content": "2004) or Sanctum (Costan et al., 2016) offer a pragmatic solution to this problem. TEEs use hardware and software", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 561, + 528, + 577 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 528, + 577 + ], + "score": 1.0, + "content": "protections to isolate sensitive code from other applications, while attesting to its correct execution. Running", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 81, + 573, + 514, + 588 + ], + "spans": [ + { + "bbox": [ + 81, + 573, + 514, + 588 + ], + "score": 1.0, + "content": "outsourced ML computations in TEEs provides remote clients with strong privacy and integrity guarantees.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 81, + 541, + 529, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 591, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 591, + 530, + 604 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 530, + 604 + ], + "score": 1.0, + "content": "For outsourced ML computations, TEEs outperform pure cryptographic approaches (e.g, (Gilad-Bachrach et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 601, + 529, + 615 + ], + "spans": [ + { + "bbox": [ + 82, + 601, + 529, + 615 + ], + "score": 1.0, + "content": "2016; Mohassel & Zhang, 2017; Ghodsi et al., 2017; Juvekar et al., 2018)) by multiple orders of magnitude. At", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 83, + 614, + 529, + 626 + ], + "spans": [ + { + "bbox": [ + 83, + 614, + 529, + 626 + ], + "score": 1.0, + "content": "the same time, the isolation guarantees of TEEs still come at a steep price in performance, compared to untrusted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 624, + 530, + 637 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 530, + 637 + ], + "score": 1.0, + "content": "alternatives (i.e., running ML models on contemporary hardware with no security guarantees). For instance,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 635, + 529, + 647 + ], + "spans": [ + { + "bbox": [ + 83, + 635, + 529, + 647 + ], + "score": 1.0, + "content": "Intel SGX (Intel Corp., 2015) incurs significant overhead for memory intensive tasks (Orenbach et al., 2017;", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 83, + 646, + 528, + 658 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 528, + 658 + ], + "score": 1.0, + "content": "Harnik & Tsfadia, 2017), has difficulties exploiting multi-threading, and is currently limited to desktop CPUs", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 657, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 83, + 657, + 528, + 669 + ], + "score": 1.0, + "content": "that are outmatched by untrusted alternatives (e.g., GPUs or server CPUs). Thus, our thesis is that for modern ML", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 82, + 667, + 531, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 531, + 681 + ], + "score": 1.0, + "content": "workloads, TEEs will be at least an order of magnitude less efficient than the best available untrusted hardware.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 82, + 591, + 531, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 527, + 185 + ], + "lines": [ + { + "bbox": [ + 82, + 139, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 139, + 529, + 154 + ], + "score": 1.0, + "content": "This leads us to the main question of this paper: How can we most efficiently leverage TEEs for secure machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 150, + 529, + 165 + ], + "spans": [ + { + "bbox": [ + 82, + 150, + 529, + 165 + ], + "score": 1.0, + "content": "learning? This was posed by Stoica et al. (2017) as one of nine open research problems for system challenges", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 162, + 528, + 175 + ], + "spans": [ + { + "bbox": [ + 83, + 162, + 528, + 175 + ], + "score": 1.0, + "content": "in AI. A specific challenge they raised is that of appropriately splitting ML computations between trusted and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 519, + 187 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 519, + 187 + ], + "score": 1.0, + "content": "untrusted components, to increase efficiency as well as security by minimizing the Trusted Computing Base.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 84, + 190, + 528, + 257 + ], + "lines": [ + { + "bbox": [ + 83, + 190, + 529, + 204 + ], + "spans": [ + { + "bbox": [ + 83, + 190, + 529, + 204 + ], + "score": 1.0, + "content": "This paper explores a novel approach to this challenge, wherein a Deep Neural Network (DNN) execution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 201, + 528, + 215 + ], + "spans": [ + { + "bbox": [ + 82, + 201, + 528, + 215 + ], + "score": 1.0, + "content": "is partially outsourced from a TEE to a co-located, untrusted but faster device. Our approach, inspired by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 212, + 529, + 225 + ], + "spans": [ + { + "bbox": [ + 82, + 212, + 529, + 225 + ], + "score": 1.0, + "content": "the verifiable ASICs of Wahby et al. (2016), differs from cryptographic ML outsourcing. In our case, work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 223, + 527, + 236 + ], + "spans": [ + { + "bbox": [ + 82, + 223, + 527, + 236 + ], + "score": 1.0, + "content": "is delegated between two co-located parties, thus allowing for highly interactive—yet conceptually simpler—", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 235, + 528, + 246 + ], + "spans": [ + { + "bbox": [ + 83, + 235, + 528, + 246 + ], + "score": 1.0, + "content": "outsourcing protocols with orders-of-magnitude better efficiency. Our work also departs from prior systems that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 245, + 530, + 258 + ], + "spans": [ + { + "bbox": [ + 82, + 245, + 530, + 258 + ], + "score": 1.0, + "content": "execute DNNs fully in a TEE (Ohrimenko et al., 2016; Hunt et al., 2018; Cheng et al., 2018; Hanzlik et al., 2018).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 84, + 262, + 529, + 317 + ], + "lines": [ + { + "bbox": [ + 83, + 262, + 529, + 274 + ], + "spans": [ + { + "bbox": [ + 83, + 262, + 529, + 274 + ], + "score": 1.0, + "content": "The main observation that guides our approach is that matrix multiplication—the main bottleneck in DNNs—", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 273, + 529, + 285 + ], + "spans": [ + { + "bbox": [ + 83, + 273, + 529, + 285 + ], + "score": 1.0, + "content": "admits a concretely efficient verifiable outsourcing scheme known as Freivalds’ algorithm (Freivalds, 1977),", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 283, + 530, + 297 + ], + "spans": [ + { + "bbox": [ + 82, + 283, + 530, + 297 + ], + "score": 1.0, + "content": "which can also be turned private in our setting. Our TEE selectively outsources these CPU intensive steps to a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 295, + 528, + 307 + ], + "spans": [ + { + "bbox": [ + 83, + 295, + 528, + 307 + ], + "score": 1.0, + "content": "fast untrusted co-processor (and runs the remaining steps itself) therefore achieving much better performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 305, + 417, + 320 + ], + "spans": [ + { + "bbox": [ + 82, + 305, + 417, + 320 + ], + "score": 1.0, + "content": "than running the entire computation in the enclave, without compromising security.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 84, + 324, + 528, + 369 + ], + "lines": [ + { + "bbox": [ + 83, + 324, + 529, + 337 + ], + "spans": [ + { + "bbox": [ + 83, + 324, + 529, + 337 + ], + "score": 1.0, + "content": "Contributions. We propose Slalom, a framework for efficient DNN inference in any trusted execution environ-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 335, + 528, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 335, + 528, + 347 + ], + "score": 1.0, + "content": "ment (e.g., SGX or Sanctum). To evaluate Slalom, we build a lightweight DNN library for Intel SGX, which", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 346, + 529, + 359 + ], + "spans": [ + { + "bbox": [ + 82, + 346, + 529, + 359 + ], + "score": 1.0, + "content": "may be of independent interest. Our library allows for outsourcing all linear layers to an untrusted GPU without", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 357, + 524, + 370 + ], + "spans": [ + { + "bbox": [ + 82, + 357, + 524, + 370 + ], + "score": 1.0, + "content": "compromising integrity or privacy. Our code is available at https://github.com/ftramer/slalom.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 84, + 374, + 528, + 429 + ], + "lines": [ + { + "bbox": [ + 83, + 374, + 527, + 386 + ], + "spans": [ + { + "bbox": [ + 83, + 374, + 527, + 386 + ], + "score": 1.0, + "content": "We formally prove Slalom’s security, and evaluate it on multiple canonical DNNs with a variety of computational", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 384, + 530, + 398 + ], + "spans": [ + { + "bbox": [ + 82, + 384, + 530, + 398 + ], + "score": 1.0, + "content": "costs—VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNets (He et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "spans": [ + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "score": 1.0, + "content": "2016). Compared to running all computations in SGX, outsourcing linear layers to an untrusted GPU increases", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 407, + 528, + 419 + ], + "spans": [ + { + "bbox": [ + 83, + 407, + 258, + 419 + ], + "score": 1.0, + "content": "throughput (as well as energy efficiency) by", + "type": "text" + }, + { + "bbox": [ + 259, + 407, + 273, + 417 + ], + "score": 0.87, + "content": "6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 407, + 284, + 419 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 285, + 407, + 303, + 417 + ], + "score": 0.89, + "content": "2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 407, + 428, + 419 + ], + "score": 1.0, + "content": "for verifiable inference, and by", + "type": "text" + }, + { + "bbox": [ + 429, + 407, + 443, + 417 + ], + "score": 0.86, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 407, + 454, + 419 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 454, + 407, + 473, + 417 + ], + "score": 0.88, + "content": "1 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 407, + 528, + 419 + ], + "score": 1.0, + "content": "for verifiable", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 83, + 418, + 530, + 431 + ], + "spans": [ + { + "bbox": [ + 83, + 418, + 530, + 431 + ], + "score": 1.0, + "content": "and private inference. Finally, we discuss open challenges towards efficient verifiable training of DNNs in TEEs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 84, + 440, + 177, + 453 + ], + "lines": [ + { + "bbox": [ + 81, + 438, + 178, + 456 + ], + "spans": [ + { + "bbox": [ + 81, + 438, + 178, + 456 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 84, + 464, + 191, + 476 + ], + "lines": [ + { + "bbox": [ + 83, + 465, + 192, + 477 + ], + "spans": [ + { + "bbox": [ + 83, + 465, + 192, + 477 + ], + "score": 1.0, + "content": "2.1 PROBLEM SETTING", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 84, + 485, + 528, + 529 + ], + "lines": [ + { + "bbox": [ + 82, + 485, + 527, + 499 + ], + "spans": [ + { + "bbox": [ + 82, + 485, + 292, + 499 + ], + "score": 1.0, + "content": "We consider an outsourcing scheme between a client", + "type": "text" + }, + { + "bbox": [ + 293, + 486, + 300, + 495 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 485, + 350, + 499 + ], + "score": 1.0, + "content": "and a server", + "type": "text" + }, + { + "bbox": [ + 351, + 486, + 358, + 495 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 485, + 388, + 499 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 389, + 486, + 397, + 495 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 485, + 464, + 499 + ], + "score": 1.0, + "content": "executes a DNN", + "type": "text" + }, + { + "bbox": [ + 465, + 485, + 527, + 497 + ], + "score": 0.9, + "content": "F ( x ) : \\mathcal { X } \\mathcal { Y }", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 495, + 529, + 509 + ], + "spans": [ + { + "bbox": [ + 82, + 495, + 163, + 509 + ], + "score": 1.0, + "content": "on data provided by", + "type": "text" + }, + { + "bbox": [ + 164, + 497, + 171, + 506 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 495, + 529, + 509 + ], + "score": 1.0, + "content": ". The DNN can either belong to the user (e.g., as in some ML-as-a-service platforms), or to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 506, + 529, + 521 + ], + "spans": [ + { + "bbox": [ + 82, + 506, + 529, + 521 + ], + "score": 1.0, + "content": "the server (e.g., as in a cloud-based ML API). Depending on the application, this scheme should satisfy one or", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 517, + 413, + 531 + ], + "spans": [ + { + "bbox": [ + 82, + 517, + 309, + 531 + ], + "score": 1.0, + "content": "more of the following security properties (see Appendix", + "type": "text" + }, + { + "bbox": [ + 309, + 519, + 317, + 528 + ], + "score": 0.25, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 517, + 413, + 531 + ], + "score": 1.0, + "content": "for formal definitions):", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 88, + 533, + 528, + 595 + ], + "lines": [ + { + "bbox": [ + 88, + 534, + 528, + 546 + ], + "spans": [ + { + "bbox": [ + 88, + 534, + 181, + 546 + ], + "score": 1.0, + "content": "• t-Integrity: For any", + "type": "text" + }, + { + "bbox": [ + 181, + 534, + 189, + 544 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 534, + 230, + 546 + ], + "score": 1.0, + "content": "and input", + "type": "text" + }, + { + "bbox": [ + 231, + 536, + 237, + 544 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 534, + 411, + 546 + ], + "score": 1.0, + "content": ", the probability that a user interacting with", + "type": "text" + }, + { + "bbox": [ + 411, + 534, + 419, + 544 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 534, + 528, + 546 + ], + "score": 1.0, + "content": "does not abort (i.e., output", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 96, + 545, + 331, + 558 + ], + "spans": [ + { + "bbox": [ + 96, + 545, + 234, + 558 + ], + "score": 1.0, + "content": "⊥) and outputs an incorrect value", + "type": "text" + }, + { + "bbox": [ + 234, + 546, + 274, + 557 + ], + "score": 0.93, + "content": "\\tilde { y } \\ne F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 545, + 322, + 558 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 322, + 546, + 327, + 555 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 545, + 331, + 558 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 88, + 557, + 378, + 572 + ], + "spans": [ + { + "bbox": [ + 88, + 557, + 181, + 572 + ], + "score": 1.0, + "content": "• Privacy: The server", + "type": "text" + }, + { + "bbox": [ + 181, + 559, + 189, + 569 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 557, + 367, + 572 + ], + "score": 1.0, + "content": "learns no information about the user’s input", + "type": "text" + }, + { + "bbox": [ + 367, + 561, + 374, + 569 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 557, + 378, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 571, + 528, + 585 + ], + "spans": [ + { + "bbox": [ + 88, + 571, + 218, + 585 + ], + "score": 1.0, + "content": "• Model privacy: If the model", + "type": "text" + }, + { + "bbox": [ + 218, + 573, + 227, + 582 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 571, + 325, + 585 + ], + "score": 1.0, + "content": "is provided by the user,", + "type": "text" + }, + { + "bbox": [ + 326, + 573, + 334, + 582 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 571, + 450, + 585 + ], + "score": 1.0, + "content": "learns no information about", + "type": "text" + }, + { + "bbox": [ + 450, + 573, + 459, + 582 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 571, + 528, + 585 + ], + "score": 1.0, + "content": "(beyond e.g., its", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 96, + 582, + 528, + 596 + ], + "spans": [ + { + "bbox": [ + 96, + 582, + 182, + 596 + ], + "score": 1.0, + "content": "approximate size). If", + "type": "text" + }, + { + "bbox": [ + 182, + 584, + 191, + 593 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 582, + 278, + 596 + ], + "score": 1.0, + "content": "belongs to the server,", + "type": "text" + }, + { + "bbox": [ + 279, + 584, + 286, + 593 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 582, + 372, + 596 + ], + "score": 1.0, + "content": "learns no more about", + "type": "text" + }, + { + "bbox": [ + 372, + 584, + 381, + 593 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 582, + 480, + 596 + ], + "score": 1.0, + "content": "than what is revealed by", + "type": "text" + }, + { + "bbox": [ + 480, + 583, + 520, + 595 + ], + "score": 0.92, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 521, + 582, + 528, + 596 + ], + "score": 1.0, + "content": ". 1", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 84, + 608, + 483, + 620 + ], + "lines": [ + { + "bbox": [ + 83, + 606, + 483, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 606, + 483, + 620 + ], + "score": 1.0, + "content": "2.2 TRUSTED EXECUTION ENVIRONMENTS (TEES), INTEL SGX, AND A STRONG BASELINE", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 82, + 628, + 527, + 651 + ], + "lines": [ + { + "bbox": [ + 83, + 629, + 528, + 640 + ], + "spans": [ + { + "bbox": [ + 83, + 629, + 528, + 640 + ], + "score": 1.0, + "content": "Trusted Execution Environments (TEE) such as Intel SGX, ARM TrustZone or Sanctum (Costan et al., 2016)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 640, + 528, + 651 + ], + "spans": [ + { + "bbox": [ + 82, + 640, + 528, + 651 + ], + "score": 1.0, + "content": "enable execution of programs in secure enclaves. Hardware protections isolate computations in enclaves from all", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 83, + 658, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 96, + 657, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 96, + 657, + 346, + 670 + ], + "score": 1.0, + "content": "1For this zero-knowledge guarantee to be meaningful in our context,", + "type": "text" + }, + { + "bbox": [ + 347, + 661, + 353, + 668 + ], + "score": 0.87, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 657, + 528, + 670 + ], + "score": 1.0, + "content": "would first commit to a specific DNN, and then", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 669, + 486, + 679 + ], + "spans": [ + { + "bbox": [ + 83, + 669, + 118, + 679 + ], + "score": 1.0, + "content": "convince", + "type": "text" + }, + { + "bbox": [ + 118, + 669, + 124, + 678 + ], + "score": 0.71, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 669, + 486, + 679 + ], + "score": 1.0, + "content": "that this DNN was correctly evaluated on her input, without revealing anything else about the DNN.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 286, + 708 + ], + "lines": [ + { + "bbox": [ + 278, + 698, + 287, + 710 + ], + "spans": [ + { + "bbox": [ + 278, + 698, + 287, + 710 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 527, + 185 + ], + "lines": [ + { + "bbox": [ + 82, + 139, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 139, + 529, + 154 + ], + "score": 1.0, + "content": "This leads us to the main question of this paper: How can we most efficiently leverage TEEs for secure machine", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 150, + 529, + 165 + ], + "spans": [ + { + "bbox": [ + 82, + 150, + 529, + 165 + ], + "score": 1.0, + "content": "learning? This was posed by Stoica et al. (2017) as one of nine open research problems for system challenges", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 162, + 528, + 175 + ], + "spans": [ + { + "bbox": [ + 83, + 162, + 528, + 175 + ], + "score": 1.0, + "content": "in AI. A specific challenge they raised is that of appropriately splitting ML computations between trusted and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 519, + 187 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 519, + 187 + ], + "score": 1.0, + "content": "untrusted components, to increase efficiency as well as security by minimizing the Trusted Computing Base.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 82, + 139, + 529, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 190, + 528, + 257 + ], + "lines": [ + { + "bbox": [ + 83, + 190, + 529, + 204 + ], + "spans": [ + { + "bbox": [ + 83, + 190, + 529, + 204 + ], + "score": 1.0, + "content": "This paper explores a novel approach to this challenge, wherein a Deep Neural Network (DNN) execution", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 201, + 528, + 215 + ], + "spans": [ + { + "bbox": [ + 82, + 201, + 528, + 215 + ], + "score": 1.0, + "content": "is partially outsourced from a TEE to a co-located, untrusted but faster device. Our approach, inspired by", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 212, + 529, + 225 + ], + "spans": [ + { + "bbox": [ + 82, + 212, + 529, + 225 + ], + "score": 1.0, + "content": "the verifiable ASICs of Wahby et al. (2016), differs from cryptographic ML outsourcing. In our case, work", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 223, + 527, + 236 + ], + "spans": [ + { + "bbox": [ + 82, + 223, + 527, + 236 + ], + "score": 1.0, + "content": "is delegated between two co-located parties, thus allowing for highly interactive—yet conceptually simpler—", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 235, + 528, + 246 + ], + "spans": [ + { + "bbox": [ + 83, + 235, + 528, + 246 + ], + "score": 1.0, + "content": "outsourcing protocols with orders-of-magnitude better efficiency. Our work also departs from prior systems that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 245, + 530, + 258 + ], + "spans": [ + { + "bbox": [ + 82, + 245, + 530, + 258 + ], + "score": 1.0, + "content": "execute DNNs fully in a TEE (Ohrimenko et al., 2016; Hunt et al., 2018; Cheng et al., 2018; Hanzlik et al., 2018).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 82, + 190, + 530, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 262, + 529, + 317 + ], + "lines": [ + { + "bbox": [ + 83, + 262, + 529, + 274 + ], + "spans": [ + { + "bbox": [ + 83, + 262, + 529, + 274 + ], + "score": 1.0, + "content": "The main observation that guides our approach is that matrix multiplication—the main bottleneck in DNNs—", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 273, + 529, + 285 + ], + "spans": [ + { + "bbox": [ + 83, + 273, + 529, + 285 + ], + "score": 1.0, + "content": "admits a concretely efficient verifiable outsourcing scheme known as Freivalds’ algorithm (Freivalds, 1977),", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 283, + 530, + 297 + ], + "spans": [ + { + "bbox": [ + 82, + 283, + 530, + 297 + ], + "score": 1.0, + "content": "which can also be turned private in our setting. Our TEE selectively outsources these CPU intensive steps to a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 295, + 528, + 307 + ], + "spans": [ + { + "bbox": [ + 83, + 295, + 528, + 307 + ], + "score": 1.0, + "content": "fast untrusted co-processor (and runs the remaining steps itself) therefore achieving much better performance", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 305, + 417, + 320 + ], + "spans": [ + { + "bbox": [ + 82, + 305, + 417, + 320 + ], + "score": 1.0, + "content": "than running the entire computation in the enclave, without compromising security.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 82, + 262, + 530, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 324, + 528, + 369 + ], + "lines": [ + { + "bbox": [ + 83, + 324, + 529, + 337 + ], + "spans": [ + { + "bbox": [ + 83, + 324, + 529, + 337 + ], + "score": 1.0, + "content": "Contributions. We propose Slalom, a framework for efficient DNN inference in any trusted execution environ-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 335, + 528, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 335, + 528, + 347 + ], + "score": 1.0, + "content": "ment (e.g., SGX or Sanctum). To evaluate Slalom, we build a lightweight DNN library for Intel SGX, which", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 346, + 529, + 359 + ], + "spans": [ + { + "bbox": [ + 82, + 346, + 529, + 359 + ], + "score": 1.0, + "content": "may be of independent interest. Our library allows for outsourcing all linear layers to an untrusted GPU without", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 357, + 524, + 370 + ], + "spans": [ + { + "bbox": [ + 82, + 357, + 524, + 370 + ], + "score": 1.0, + "content": "compromising integrity or privacy. Our code is available at https://github.com/ftramer/slalom.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 82, + 324, + 529, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 374, + 528, + 429 + ], + "lines": [ + { + "bbox": [ + 83, + 374, + 527, + 386 + ], + "spans": [ + { + "bbox": [ + 83, + 374, + 527, + 386 + ], + "score": 1.0, + "content": "We formally prove Slalom’s security, and evaluate it on multiple canonical DNNs with a variety of computational", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 384, + 530, + 398 + ], + "spans": [ + { + "bbox": [ + 82, + 384, + 530, + 398 + ], + "score": 1.0, + "content": "costs—VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard et al., 2017), and ResNets (He et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "spans": [ + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "score": 1.0, + "content": "2016). Compared to running all computations in SGX, outsourcing linear layers to an untrusted GPU increases", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 407, + 528, + 419 + ], + "spans": [ + { + "bbox": [ + 83, + 407, + 258, + 419 + ], + "score": 1.0, + "content": "throughput (as well as energy efficiency) by", + "type": "text" + }, + { + "bbox": [ + 259, + 407, + 273, + 417 + ], + "score": 0.87, + "content": "6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 407, + 284, + 419 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 285, + 407, + 303, + 417 + ], + "score": 0.89, + "content": "2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 407, + 428, + 419 + ], + "score": 1.0, + "content": "for verifiable inference, and by", + "type": "text" + }, + { + "bbox": [ + 429, + 407, + 443, + 417 + ], + "score": 0.86, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 407, + 454, + 419 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 454, + 407, + 473, + 417 + ], + "score": 0.88, + "content": "1 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 407, + 528, + 419 + ], + "score": 1.0, + "content": "for verifiable", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 83, + 418, + 530, + 431 + ], + "spans": [ + { + "bbox": [ + 83, + 418, + 530, + 431 + ], + "score": 1.0, + "content": "and private inference. Finally, we discuss open challenges towards efficient verifiable training of DNNs in TEEs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21, + "bbox_fs": [ + 82, + 374, + 530, + 431 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 440, + 177, + 453 + ], + "lines": [ + { + "bbox": [ + 81, + 438, + 178, + 456 + ], + "spans": [ + { + "bbox": [ + 81, + 438, + 178, + 456 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 84, + 464, + 191, + 476 + ], + "lines": [ + { + "bbox": [ + 83, + 465, + 192, + 477 + ], + "spans": [ + { + "bbox": [ + 83, + 465, + 192, + 477 + ], + "score": 1.0, + "content": "2.1 PROBLEM SETTING", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 84, + 485, + 528, + 529 + ], + "lines": [ + { + "bbox": [ + 82, + 485, + 527, + 499 + ], + "spans": [ + { + "bbox": [ + 82, + 485, + 292, + 499 + ], + "score": 1.0, + "content": "We consider an outsourcing scheme between a client", + "type": "text" + }, + { + "bbox": [ + 293, + 486, + 300, + 495 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 485, + 350, + 499 + ], + "score": 1.0, + "content": "and a server", + "type": "text" + }, + { + "bbox": [ + 351, + 486, + 358, + 495 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 485, + 388, + 499 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 389, + 486, + 397, + 495 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 485, + 464, + 499 + ], + "score": 1.0, + "content": "executes a DNN", + "type": "text" + }, + { + "bbox": [ + 465, + 485, + 527, + 497 + ], + "score": 0.9, + "content": "F ( x ) : \\mathcal { X } \\mathcal { Y }", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 495, + 529, + 509 + ], + "spans": [ + { + "bbox": [ + 82, + 495, + 163, + 509 + ], + "score": 1.0, + "content": "on data provided by", + "type": "text" + }, + { + "bbox": [ + 164, + 497, + 171, + 506 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 495, + 529, + 509 + ], + "score": 1.0, + "content": ". The DNN can either belong to the user (e.g., as in some ML-as-a-service platforms), or to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 506, + 529, + 521 + ], + "spans": [ + { + "bbox": [ + 82, + 506, + 529, + 521 + ], + "score": 1.0, + "content": "the server (e.g., as in a cloud-based ML API). Depending on the application, this scheme should satisfy one or", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 517, + 413, + 531 + ], + "spans": [ + { + "bbox": [ + 82, + 517, + 309, + 531 + ], + "score": 1.0, + "content": "more of the following security properties (see Appendix", + "type": "text" + }, + { + "bbox": [ + 309, + 519, + 317, + 528 + ], + "score": 0.25, + "content": "\\mathbf { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 517, + 413, + 531 + ], + "score": 1.0, + "content": "for formal definitions):", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 82, + 485, + 529, + 531 + ] + }, + { + "type": "list", + "bbox": [ + 88, + 533, + 528, + 595 + ], + "lines": [ + { + "bbox": [ + 88, + 534, + 528, + 546 + ], + "spans": [ + { + "bbox": [ + 88, + 534, + 181, + 546 + ], + "score": 1.0, + "content": "• t-Integrity: For any", + "type": "text" + }, + { + "bbox": [ + 181, + 534, + 189, + 544 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 534, + 230, + 546 + ], + "score": 1.0, + "content": "and input", + "type": "text" + }, + { + "bbox": [ + 231, + 536, + 237, + 544 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 534, + 411, + 546 + ], + "score": 1.0, + "content": ", the probability that a user interacting with", + "type": "text" + }, + { + "bbox": [ + 411, + 534, + 419, + 544 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 534, + 528, + 546 + ], + "score": 1.0, + "content": "does not abort (i.e., output", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 96, + 545, + 331, + 558 + ], + "spans": [ + { + "bbox": [ + 96, + 545, + 234, + 558 + ], + "score": 1.0, + "content": "⊥) and outputs an incorrect value", + "type": "text" + }, + { + "bbox": [ + 234, + 546, + 274, + 557 + ], + "score": 0.93, + "content": "\\tilde { y } \\ne F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 545, + 322, + 558 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 322, + 546, + 327, + 555 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 545, + 331, + 558 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 557, + 378, + 572 + ], + "spans": [ + { + "bbox": [ + 88, + 557, + 181, + 572 + ], + "score": 1.0, + "content": "• Privacy: The server", + "type": "text" + }, + { + "bbox": [ + 181, + 559, + 189, + 569 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 557, + 367, + 572 + ], + "score": 1.0, + "content": "learns no information about the user’s input", + "type": "text" + }, + { + "bbox": [ + 367, + 561, + 374, + 569 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 557, + 378, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 88, + 571, + 528, + 585 + ], + "spans": [ + { + "bbox": [ + 88, + 571, + 218, + 585 + ], + "score": 1.0, + "content": "• Model privacy: If the model", + "type": "text" + }, + { + "bbox": [ + 218, + 573, + 227, + 582 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 571, + 325, + 585 + ], + "score": 1.0, + "content": "is provided by the user,", + "type": "text" + }, + { + "bbox": [ + 326, + 573, + 334, + 582 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 571, + 450, + 585 + ], + "score": 1.0, + "content": "learns no information about", + "type": "text" + }, + { + "bbox": [ + 450, + 573, + 459, + 582 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 571, + 528, + 585 + ], + "score": 1.0, + "content": "(beyond e.g., its", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 96, + 582, + 528, + 596 + ], + "spans": [ + { + "bbox": [ + 96, + 582, + 182, + 596 + ], + "score": 1.0, + "content": "approximate size). If", + "type": "text" + }, + { + "bbox": [ + 182, + 584, + 191, + 593 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 582, + 278, + 596 + ], + "score": 1.0, + "content": "belongs to the server,", + "type": "text" + }, + { + "bbox": [ + 279, + 584, + 286, + 593 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 582, + 372, + 596 + ], + "score": 1.0, + "content": "learns no more about", + "type": "text" + }, + { + "bbox": [ + 372, + 584, + 381, + 593 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 582, + 480, + 596 + ], + "score": 1.0, + "content": "than what is revealed by", + "type": "text" + }, + { + "bbox": [ + 480, + 583, + 520, + 595 + ], + "score": 0.92, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 521, + 582, + 528, + 596 + ], + "score": 1.0, + "content": ". 1", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 88, + 534, + 528, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 608, + 483, + 620 + ], + "lines": [ + { + "bbox": [ + 83, + 606, + 483, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 606, + 483, + 620 + ], + "score": 1.0, + "content": "2.2 TRUSTED EXECUTION ENVIRONMENTS (TEES), INTEL SGX, AND A STRONG BASELINE", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 83, + 606, + 483, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 628, + 527, + 651 + ], + "lines": [ + { + "bbox": [ + 83, + 629, + 528, + 640 + ], + "spans": [ + { + "bbox": [ + 83, + 629, + 528, + 640 + ], + "score": 1.0, + "content": "Trusted Execution Environments (TEE) such as Intel SGX, ARM TrustZone or Sanctum (Costan et al., 2016)", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 640, + 528, + 651 + ], + "spans": [ + { + "bbox": [ + 82, + 640, + 528, + 651 + ], + "score": 1.0, + "content": "enable execution of programs in secure enclaves. Hardware protections isolate computations in enclaves from all", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 82, + 250, + 529, + 263 + ], + "spans": [ + { + "bbox": [ + 82, + 250, + 529, + 263 + ], + "score": 1.0, + "content": "programs on the same host, including the operating system. Enclaves can produce remote attestations—digital", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 261, + 529, + 274 + ], + "spans": [ + { + "bbox": [ + 82, + 261, + 529, + 274 + ], + "score": 1.0, + "content": "signatures over an enclave’s code—that a remote party can verify using the manufacturer’s public key. Our", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 81, + 271, + 493, + 285 + ], + "spans": [ + { + "bbox": [ + 81, + 271, + 493, + 285 + ], + "score": 1.0, + "content": "experiments with Slalom use hardware enclaves provided by Intel SGX (see Appendix A for details).2", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 36.5, + "bbox_fs": [ + 82, + 629, + 528, + 651 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 92, + 154, + 518, + 232 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 84, + 138, + 524, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 137, + 525, + 151 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 525, + 151 + ], + "score": 1.0, + "content": "Table 1: Security guarantees and performance (relative to baseline) of different ML outsourcing schemes.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 92, + 154, + 518, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 92, + 154, + 518, + 232 + ], + "spans": [ + { + "bbox": [ + 92, + 154, + 518, + 232 + ], + "score": 0.956, + "html": "
ModelPrivacy
ApproachTEEIntegrityPrivacyw.r.t. Serverw.r.t. ClientThroughput (relative)
SafetyNets (Ghodsi et al.,2017)1.OOO≤1/200 ×
Gazelle (Juvekar et al.,2018)1O. *O1≤1/1000 ×
Secure baseline (run DNN in TEE).
Insecure baseline (run DNN on GPU)O0≥ 50x
Slalom (Ours)..O4× - 20×
", + "type": "table", + "image_path": "d0f6cc00c0b1482c5f0835cda6bb82c1a97e49dbc4922eca8057b926edb979e8.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 92, + 154, + 518, + 180.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 92, + 180.0, + 518, + 206.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 92, + 206.0, + 518, + 232.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 95, + 234, + 217, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 93, + 231, + 218, + 247 + ], + "spans": [ + { + "bbox": [ + 93, + 231, + 218, + 247 + ], + "score": 1.0, + "content": "* With an offline preprocessing phase.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 83, + 250, + 528, + 284 + ], + "lines": [ + { + "bbox": [ + 82, + 250, + 529, + 263 + ], + "spans": [ + { + "bbox": [ + 82, + 250, + 529, + 263 + ], + "score": 1.0, + "content": "programs on the same host, including the operating system. Enclaves can produce remote attestations—digital", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 261, + 529, + 274 + ], + "spans": [ + { + "bbox": [ + 82, + 261, + 529, + 274 + ], + "score": 1.0, + "content": "signatures over an enclave’s code—that a remote party can verify using the manufacturer’s public key. Our", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 81, + 271, + 493, + 285 + ], + "spans": [ + { + "bbox": [ + 81, + 271, + 493, + 285 + ], + "score": 1.0, + "content": "experiments with Slalom use hardware enclaves provided by Intel SGX (see Appendix A for details).2", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 84, + 289, + 528, + 333 + ], + "lines": [ + { + "bbox": [ + 82, + 289, + 529, + 302 + ], + "spans": [ + { + "bbox": [ + 82, + 289, + 529, + 302 + ], + "score": 1.0, + "content": "TEEs offer an efficient solution for ML outsourcing: The server runs an enclave that initiates a secure communi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 83, + 300, + 529, + 312 + ], + "spans": [ + { + "bbox": [ + 83, + 300, + 131, + 312 + ], + "score": 1.0, + "content": "cation with", + "type": "text" + }, + { + "bbox": [ + 131, + 300, + 138, + 310 + ], + "score": 0.72, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 300, + 230, + 312 + ], + "score": 1.0, + "content": "and evaluates a model", + "type": "text" + }, + { + "bbox": [ + 230, + 300, + 239, + 310 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 300, + 252, + 312 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 252, + 300, + 260, + 310 + ], + "score": 0.72, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 300, + 529, + 312 + ], + "score": 1.0, + "content": "’s input data. This simple scheme (which we implemented in SGX,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 84, + 311, + 528, + 322 + ], + "spans": [ + { + "bbox": [ + 84, + 311, + 528, + 322 + ], + "score": 1.0, + "content": "see Section 4) outperforms cryptographic ML outsourcing protocols by 2-3 orders of magnitude (albeit under a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 322, + 475, + 334 + ], + "spans": [ + { + "bbox": [ + 83, + 322, + 475, + 334 + ], + "score": 1.0, + "content": "different trust model). See Table 1 and Appendix C for a comparison to two representative works.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 83, + 339, + 528, + 405 + ], + "lines": [ + { + "bbox": [ + 82, + 338, + 528, + 352 + ], + "spans": [ + { + "bbox": [ + 82, + 338, + 528, + 352 + ], + "score": 1.0, + "content": "Yet, SGX’s security comes at a performance cost, and there remains a large gap between TEEs and untrusted", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 350, + 528, + 362 + ], + "spans": [ + { + "bbox": [ + 83, + 350, + 304, + 362 + ], + "score": 1.0, + "content": "devices. For example, current SGX CPUs are limited to", + "type": "text" + }, + { + "bbox": [ + 305, + 350, + 338, + 360 + ], + "score": 0.31, + "content": "1 2 8 \\mathrm { M B }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 350, + 528, + 362 + ], + "score": 1.0, + "content": "of Processor Reserved Memory (PRM) (Costan", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 361, + 529, + 374 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 529, + 374 + ], + "score": 1.0, + "content": "& Devadas, 2016) and incur severe paging overheads when exceeding this allowance (Orenbach et al., 2017).", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 370, + 528, + 385 + ], + "spans": [ + { + "bbox": [ + 82, + 370, + 528, + 385 + ], + "score": 1.0, + "content": "We also failed to achieve noticeable speed ups for multi-threaded DNN evaluations in SGX enclaves (see", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 383, + 529, + 396 + ], + "spans": [ + { + "bbox": [ + 82, + 383, + 529, + 396 + ], + "score": 1.0, + "content": "Appendix H). For DNN computations, current SGX enclaves thus cannot compete—in terms of performance or", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 81, + 393, + 518, + 407 + ], + "spans": [ + { + "bbox": [ + 81, + 393, + 518, + 407 + ], + "score": 1.0, + "content": "energy efficiency (see Appendix C)—with contemporary untrusted hardware, such as a GPU or server CPU.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 84, + 410, + 528, + 488 + ], + "lines": [ + { + "bbox": [ + 82, + 410, + 529, + 424 + ], + "spans": [ + { + "bbox": [ + 82, + 410, + 529, + 424 + ], + "score": 1.0, + "content": "In this work, we treat the above simple (yet powerful) TEE scheme as a baseline, and identify settings where we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 421, + 528, + 434 + ], + "spans": [ + { + "bbox": [ + 82, + 421, + 528, + 434 + ], + "score": 1.0, + "content": "can still improve upon it. We will show that our system, Slalom, substantially outperforms this baseline when the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 432, + 528, + 445 + ], + "spans": [ + { + "bbox": [ + 82, + 432, + 207, + 445 + ], + "score": 1.0, + "content": "server has access to the model", + "type": "text" + }, + { + "bbox": [ + 208, + 433, + 217, + 443 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 432, + 240, + 445 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + }, + { + "bbox": [ + 241, + 433, + 250, + 443 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 432, + 295, + 445 + ], + "score": 1.0, + "content": "belongs to", + "type": "text" + }, + { + "bbox": [ + 295, + 433, + 303, + 443 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 432, + 404, + 445 + ], + "score": 1.0, + "content": "as in cloud ML APIs, or", + "type": "text" + }, + { + "bbox": [ + 405, + 433, + 414, + 442 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 432, + 528, + 445 + ], + "score": 1.0, + "content": "is public). Slalom performs", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 443, + 529, + 457 + ], + "spans": [ + { + "bbox": [ + 82, + 443, + 529, + 457 + ], + "score": 1.0, + "content": "best for verifiable inference (the setting considered in SafetyNets (Ghodsi et al., 2017)). If the TEE can run some", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 455, + 528, + 467 + ], + "spans": [ + { + "bbox": [ + 82, + 455, + 528, + 467 + ], + "score": 1.0, + "content": "offline data-independent preprocessing (e.g., as in Gazelle (Juvekar et al., 2018)), Slalom also outperforms the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 465, + 529, + 479 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 529, + 479 + ], + "score": 1.0, + "content": "baseline for private (and verifiable) outsourced computations in a later online phase. Such a two-stage approach", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 81, + 476, + 523, + 490 + ], + "spans": [ + { + "bbox": [ + 81, + 476, + 523, + 490 + ], + "score": 1.0, + "content": "is viable if user data is sent at irregular intervals yet has to be processed with high throughput when available.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 85, + 502, + 397, + 513 + ], + "lines": [ + { + "bbox": [ + 82, + 501, + 399, + 515 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 399, + 515 + ], + "score": 1.0, + "content": "2.3 OUTSOURCING OUTSOURCED DNNS AND FREIVALDS’ ALGORITHM", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 83, + 523, + 528, + 556 + ], + "lines": [ + { + "bbox": [ + 83, + 523, + 528, + 535 + ], + "spans": [ + { + "bbox": [ + 83, + 523, + 528, + 535 + ], + "score": 1.0, + "content": "Our idea for speeding up DNN inference in TEEs is to further outsource work from the TEE to a co-located", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 534, + 528, + 548 + ], + "spans": [ + { + "bbox": [ + 82, + 534, + 528, + 548 + ], + "score": 1.0, + "content": "faster untrusted processor. Improving upon the above baseline thus requires that the combined cost of doing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 545, + 523, + 557 + ], + "spans": [ + { + "bbox": [ + 83, + 545, + 523, + 557 + ], + "score": 1.0, + "content": "work on the untrusted device and verifying it in the TEE be cheaper than evaluating the full DNN in the TEE.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 84, + 562, + 528, + 628 + ], + "lines": [ + { + "bbox": [ + 83, + 561, + 528, + 575 + ], + "spans": [ + { + "bbox": [ + 83, + 561, + 528, + 575 + ], + "score": 1.0, + "content": "Wahby et al. (2016; 2017) aim at this goal for arbitrary computations outsourced between co-located ASICs. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 573, + 529, + 586 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 586 + ], + "score": 1.0, + "content": "generic non-interactive proofs they use for integrity are similar to those used in SafetyNets (Ghodsi et al., 2017),", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 583, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 583, + 529, + 598 + ], + "score": 1.0, + "content": "which incur overheads that are too large to warrant outsourcing in our setting (e.g., Wahby et al. (2016) find that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 83, + 595, + 528, + 608 + ], + "spans": [ + { + "bbox": [ + 83, + 595, + 528, + 608 + ], + "score": 1.0, + "content": "the technology gap between trusted and untrusted devices needs to be of over two decades for their scheme to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 606, + 528, + 618 + ], + "spans": [ + { + "bbox": [ + 83, + 606, + 528, + 618 + ], + "score": 1.0, + "content": "break even). Similarly for privacy, standard cryptographic outsourcing protocols (e.g., (Juvekar et al., 2018)) are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 616, + 511, + 630 + ], + "spans": [ + { + "bbox": [ + 82, + 616, + 511, + 630 + ], + "score": 1.0, + "content": "unusable in our setting as simply running the computation in the TEE is much more efficient (see Table 1).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 83, + 639, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 95, + 636, + 529, + 652 + ], + "spans": [ + { + "bbox": [ + 95, + 636, + 529, + 652 + ], + "score": 1.0, + "content": "2SGX has recently come under several side-channel attacks (Chen et al., 2018; Van Bulck et al., 2018). Intel is making", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 649, + 528, + 659 + ], + "spans": [ + { + "bbox": [ + 83, + 649, + 528, + 659 + ], + "score": 1.0, + "content": "firmware and hardware updates to SGX with the goal of preventing these attacks. In time, it is likely that SGX can be made", + "type": "text" + } + ] + }, + { + "bbox": [ + 82, + 658, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 658, + 528, + 669 + ], + "score": 1.0, + "content": "sufficiently secure to satisfy the requirements needed for Slalom. Even if not, other enclave architectures are available, such", + "type": "text" + } + ] + }, + { + "bbox": [ + 82, + 668, + 460, + 680 + ], + "spans": [ + { + "bbox": [ + 82, + 668, + 460, + 680 + ], + "score": 1.0, + "content": "as Sanctum for RISC-V (Costan et al., 2016) or possibly a separate co-processor for security operations.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 286, + 707 + ], + "lines": [ + { + "bbox": [ + 278, + 698, + 287, + 709 + ], + "spans": [ + { + "bbox": [ + 278, + 698, + 287, + 709 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 92, + 154, + 518, + 232 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 84, + 138, + 524, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 137, + 525, + 151 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 525, + 151 + ], + "score": 1.0, + "content": "Table 1: Security guarantees and performance (relative to baseline) of different ML outsourcing schemes.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 92, + 154, + 518, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 92, + 154, + 518, + 232 + ], + "spans": [ + { + "bbox": [ + 92, + 154, + 518, + 232 + ], + "score": 0.956, + "html": "
ModelPrivacy
ApproachTEEIntegrityPrivacyw.r.t. Serverw.r.t. ClientThroughput (relative)
SafetyNets (Ghodsi et al.,2017)1.OOO≤1/200 ×
Gazelle (Juvekar et al.,2018)1O. *O1≤1/1000 ×
Secure baseline (run DNN in TEE).
Insecure baseline (run DNN on GPU)O0≥ 50x
Slalom (Ours)..O4× - 20×
", + "type": "table", + "image_path": "d0f6cc00c0b1482c5f0835cda6bb82c1a97e49dbc4922eca8057b926edb979e8.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 92, + 154, + 518, + 180.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 92, + 180.0, + 518, + 206.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 92, + 206.0, + 518, + 232.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 95, + 234, + 217, + 244 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 93, + 231, + 218, + 247 + ], + "spans": [ + { + "bbox": [ + 93, + 231, + 218, + 247 + ], + "score": 1.0, + "content": "* With an offline preprocessing phase.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 83, + 250, + 528, + 284 + ], + "lines": [], + "index": 6, + "bbox_fs": [ + 81, + 250, + 529, + 285 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 84, + 289, + 528, + 333 + ], + "lines": [ + { + "bbox": [ + 82, + 289, + 529, + 302 + ], + "spans": [ + { + "bbox": [ + 82, + 289, + 529, + 302 + ], + "score": 1.0, + "content": "TEEs offer an efficient solution for ML outsourcing: The server runs an enclave that initiates a secure communi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 83, + 300, + 529, + 312 + ], + "spans": [ + { + "bbox": [ + 83, + 300, + 131, + 312 + ], + "score": 1.0, + "content": "cation with", + "type": "text" + }, + { + "bbox": [ + 131, + 300, + 138, + 310 + ], + "score": 0.72, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 300, + 230, + 312 + ], + "score": 1.0, + "content": "and evaluates a model", + "type": "text" + }, + { + "bbox": [ + 230, + 300, + 239, + 310 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 300, + 252, + 312 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 252, + 300, + 260, + 310 + ], + "score": 0.72, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 300, + 529, + 312 + ], + "score": 1.0, + "content": "’s input data. This simple scheme (which we implemented in SGX,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 84, + 311, + 528, + 322 + ], + "spans": [ + { + "bbox": [ + 84, + 311, + 528, + 322 + ], + "score": 1.0, + "content": "see Section 4) outperforms cryptographic ML outsourcing protocols by 2-3 orders of magnitude (albeit under a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 322, + 475, + 334 + ], + "spans": [ + { + "bbox": [ + 83, + 322, + 475, + 334 + ], + "score": 1.0, + "content": "different trust model). See Table 1 and Appendix C for a comparison to two representative works.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 82, + 289, + 529, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 339, + 528, + 405 + ], + "lines": [ + { + "bbox": [ + 82, + 338, + 528, + 352 + ], + "spans": [ + { + "bbox": [ + 82, + 338, + 528, + 352 + ], + "score": 1.0, + "content": "Yet, SGX’s security comes at a performance cost, and there remains a large gap between TEEs and untrusted", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 350, + 528, + 362 + ], + "spans": [ + { + "bbox": [ + 83, + 350, + 304, + 362 + ], + "score": 1.0, + "content": "devices. For example, current SGX CPUs are limited to", + "type": "text" + }, + { + "bbox": [ + 305, + 350, + 338, + 360 + ], + "score": 0.31, + "content": "1 2 8 \\mathrm { M B }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 350, + 528, + 362 + ], + "score": 1.0, + "content": "of Processor Reserved Memory (PRM) (Costan", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 361, + 529, + 374 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 529, + 374 + ], + "score": 1.0, + "content": "& Devadas, 2016) and incur severe paging overheads when exceeding this allowance (Orenbach et al., 2017).", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 370, + 528, + 385 + ], + "spans": [ + { + "bbox": [ + 82, + 370, + 528, + 385 + ], + "score": 1.0, + "content": "We also failed to achieve noticeable speed ups for multi-threaded DNN evaluations in SGX enclaves (see", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 383, + 529, + 396 + ], + "spans": [ + { + "bbox": [ + 82, + 383, + 529, + 396 + ], + "score": 1.0, + "content": "Appendix H). For DNN computations, current SGX enclaves thus cannot compete—in terms of performance or", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 81, + 393, + 518, + 407 + ], + "spans": [ + { + "bbox": [ + 81, + 393, + 518, + 407 + ], + "score": 1.0, + "content": "energy efficiency (see Appendix C)—with contemporary untrusted hardware, such as a GPU or server CPU.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 81, + 338, + 529, + 407 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 410, + 528, + 488 + ], + "lines": [ + { + "bbox": [ + 82, + 410, + 529, + 424 + ], + "spans": [ + { + "bbox": [ + 82, + 410, + 529, + 424 + ], + "score": 1.0, + "content": "In this work, we treat the above simple (yet powerful) TEE scheme as a baseline, and identify settings where we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 421, + 528, + 434 + ], + "spans": [ + { + "bbox": [ + 82, + 421, + 528, + 434 + ], + "score": 1.0, + "content": "can still improve upon it. We will show that our system, Slalom, substantially outperforms this baseline when the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 432, + 528, + 445 + ], + "spans": [ + { + "bbox": [ + 82, + 432, + 207, + 445 + ], + "score": 1.0, + "content": "server has access to the model", + "type": "text" + }, + { + "bbox": [ + 208, + 433, + 217, + 443 + ], + "score": 0.82, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 432, + 240, + 445 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + }, + { + "bbox": [ + 241, + 433, + 250, + 443 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 432, + 295, + 445 + ], + "score": 1.0, + "content": "belongs to", + "type": "text" + }, + { + "bbox": [ + 295, + 433, + 303, + 443 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 432, + 404, + 445 + ], + "score": 1.0, + "content": "as in cloud ML APIs, or", + "type": "text" + }, + { + "bbox": [ + 405, + 433, + 414, + 442 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 432, + 528, + 445 + ], + "score": 1.0, + "content": "is public). Slalom performs", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 443, + 529, + 457 + ], + "spans": [ + { + "bbox": [ + 82, + 443, + 529, + 457 + ], + "score": 1.0, + "content": "best for verifiable inference (the setting considered in SafetyNets (Ghodsi et al., 2017)). If the TEE can run some", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 455, + 528, + 467 + ], + "spans": [ + { + "bbox": [ + 82, + 455, + 528, + 467 + ], + "score": 1.0, + "content": "offline data-independent preprocessing (e.g., as in Gazelle (Juvekar et al., 2018)), Slalom also outperforms the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 465, + 529, + 479 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 529, + 479 + ], + "score": 1.0, + "content": "baseline for private (and verifiable) outsourced computations in a later online phase. Such a two-stage approach", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 81, + 476, + 523, + 490 + ], + "spans": [ + { + "bbox": [ + 81, + 476, + 523, + 490 + ], + "score": 1.0, + "content": "is viable if user data is sent at irregular intervals yet has to be processed with high throughput when available.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21, + "bbox_fs": [ + 81, + 410, + 529, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 85, + 502, + 397, + 513 + ], + "lines": [ + { + "bbox": [ + 82, + 501, + 399, + 515 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 399, + 515 + ], + "score": 1.0, + "content": "2.3 OUTSOURCING OUTSOURCED DNNS AND FREIVALDS’ ALGORITHM", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 82, + 501, + 399, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 523, + 528, + 556 + ], + "lines": [ + { + "bbox": [ + 83, + 523, + 528, + 535 + ], + "spans": [ + { + "bbox": [ + 83, + 523, + 528, + 535 + ], + "score": 1.0, + "content": "Our idea for speeding up DNN inference in TEEs is to further outsource work from the TEE to a co-located", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 534, + 528, + 548 + ], + "spans": [ + { + "bbox": [ + 82, + 534, + 528, + 548 + ], + "score": 1.0, + "content": "faster untrusted processor. Improving upon the above baseline thus requires that the combined cost of doing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 545, + 523, + 557 + ], + "spans": [ + { + "bbox": [ + 83, + 545, + 523, + 557 + ], + "score": 1.0, + "content": "work on the untrusted device and verifying it in the TEE be cheaper than evaluating the full DNN in the TEE.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 82, + 523, + 528, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 562, + 528, + 628 + ], + "lines": [ + { + "bbox": [ + 83, + 561, + 528, + 575 + ], + "spans": [ + { + "bbox": [ + 83, + 561, + 528, + 575 + ], + "score": 1.0, + "content": "Wahby et al. (2016; 2017) aim at this goal for arbitrary computations outsourced between co-located ASICs. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 573, + 529, + 586 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 586 + ], + "score": 1.0, + "content": "generic non-interactive proofs they use for integrity are similar to those used in SafetyNets (Ghodsi et al., 2017),", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 583, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 583, + 529, + 598 + ], + "score": 1.0, + "content": "which incur overheads that are too large to warrant outsourcing in our setting (e.g., Wahby et al. (2016) find that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 83, + 595, + 528, + 608 + ], + "spans": [ + { + "bbox": [ + 83, + 595, + 528, + 608 + ], + "score": 1.0, + "content": "the technology gap between trusted and untrusted devices needs to be of over two decades for their scheme to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 606, + 528, + 618 + ], + "spans": [ + { + "bbox": [ + 83, + 606, + 528, + 618 + ], + "score": 1.0, + "content": "break even). Similarly for privacy, standard cryptographic outsourcing protocols (e.g., (Juvekar et al., 2018)) are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 616, + 511, + 630 + ], + "spans": [ + { + "bbox": [ + 82, + 616, + 511, + 630 + ], + "score": 1.0, + "content": "unusable in our setting as simply running the computation in the TEE is much more efficient (see Table 1).", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 82, + 561, + 529, + 630 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 83, + 140, + 487, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 138, + 488, + 155 + ], + "spans": [ + { + "bbox": [ + 82, + 138, + 488, + 155 + ], + "score": 1.0, + "content": "To overcome this barrier, we design outsourcing protocols tailored to DNNs, leveraging two insights:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 155, + 528, + 206 + ], + "lines": [ + { + "bbox": [ + 84, + 154, + 528, + 169 + ], + "spans": [ + { + "bbox": [ + 84, + 154, + 528, + 169 + ], + "score": 1.0, + "content": "1. In our setting, the TEE is co-located with the server’s faster untrusted processors, thus widening the design", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 96, + 165, + 455, + 181 + ], + "spans": [ + { + "bbox": [ + 96, + 165, + 455, + 181 + ], + "score": 1.0, + "content": "space to interactive outsourcing protocols with high communication but better efficiency.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 83, + 183, + 528, + 197 + ], + "score": 1.0, + "content": "2. The TEE always has knowledge of the model and can selectively outsource part of the DNN evaluation and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 96, + 195, + 328, + 207 + ], + "spans": [ + { + "bbox": [ + 96, + 195, + 328, + 207 + ], + "score": 1.0, + "content": "compute others—for which outsourcing is harder—itself.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 84, + 209, + 528, + 265 + ], + "lines": [ + { + "bbox": [ + 83, + 210, + 529, + 222 + ], + "spans": [ + { + "bbox": [ + 83, + 210, + 529, + 222 + ], + "score": 1.0, + "content": "DNNs are a class of functions that are particularly well suited for selective outsourcing. Indeed, non-linearities—", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 83, + 221, + 529, + 233 + ], + "spans": [ + { + "bbox": [ + 83, + 221, + 529, + 233 + ], + "score": 1.0, + "content": "which are hard to securely outsource (with integrity or privacy)—represent a small fraction of the computation in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 232, + 528, + 244 + ], + "spans": [ + { + "bbox": [ + 82, + 232, + 493, + 244 + ], + "score": 1.0, + "content": "a DNN so we can evaluate these in the TEE (e.g., for VGG16 inference on a single CPU thread, about", + "type": "text" + }, + { + "bbox": [ + 494, + 232, + 516, + 243 + ], + "score": 0.88, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 232, + 528, + 244 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 243, + 529, + 255 + ], + "spans": [ + { + "bbox": [ + 83, + 243, + 529, + 255 + ], + "score": 1.0, + "content": "the computation is spent on non-linearities). In contrast, linear operators—the main computational bottleneck in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 253, + 517, + 267 + ], + "spans": [ + { + "bbox": [ + 82, + 253, + 517, + 267 + ], + "score": 1.0, + "content": "DNNs—admit for a conceptually simple yet concretely efficient secure delegation scheme, described below.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 81, + 279, + 522, + 292 + ], + "lines": [ + { + "bbox": [ + 83, + 279, + 523, + 293 + ], + "spans": [ + { + "bbox": [ + 83, + 279, + 523, + 293 + ], + "score": 1.0, + "content": "Integrity. We verify integrity of outsourced linear layers using variants of an algorithm by Freivalds (1977).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 80, + 298, + 525, + 322 + ], + "lines": [ + { + "bbox": [ + 82, + 298, + 527, + 312 + ], + "spans": [ + { + "bbox": [ + 82, + 298, + 198, + 312 + ], + "score": 1.0, + "content": "Lemma 2.1 (Freivalds). Let", + "type": "text" + }, + { + "bbox": [ + 198, + 299, + 218, + 310 + ], + "score": 0.66, + "content": "A , B", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 298, + 237, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 237, + 299, + 246, + 309 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 298, + 258, + 312 + ], + "score": 1.0, + "content": "be", + "type": "text" + }, + { + "bbox": [ + 258, + 300, + 282, + 309 + ], + "score": 0.86, + "content": "n \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 298, + 365, + 312 + ], + "score": 1.0, + "content": "matrices over a field", + "type": "text" + }, + { + "bbox": [ + 365, + 299, + 373, + 309 + ], + "score": 0.66, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 298, + 527, + 312 + ], + "score": 1.0, + "content": "and let s be a uniformly random vector", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 308, + 498, + 324 + ], + "spans": [ + { + "bbox": [ + 81, + 308, + 93, + 324 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 93, + 310, + 105, + 320 + ], + "score": 0.82, + "content": "\\mathbb { S } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 106, + 308, + 123, + 324 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 124, + 310, + 150, + 321 + ], + "score": 0.88, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 308, + 178, + 324 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 179, + 310, + 493, + 322 + ], + "score": 0.85, + "content": "\\operatorname* { P r } [ C s = A ( B s ) \\mid C \\neq A B ] = \\operatorname* { P r } [ ( C - A B ) s = \\mathbf { 0 } \\mid ( C - A B ) \\neq \\mathbf { 0 } ] \\leq ^ { 1 } / | \\mathbb { S } |", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 308, + 498, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 84, + 329, + 528, + 363 + ], + "lines": [ + { + "bbox": [ + 82, + 327, + 529, + 342 + ], + "spans": [ + { + "bbox": [ + 82, + 327, + 211, + 342 + ], + "score": 1.0, + "content": "The randomized check requires", + "type": "text" + }, + { + "bbox": [ + 212, + 328, + 228, + 339 + ], + "score": 0.88, + "content": "3 n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 327, + 529, + 342 + ], + "score": 1.0, + "content": "multiplications, a significant reduction (both in concrete terms and asymp-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 83, + 341, + 528, + 353 + ], + "spans": [ + { + "bbox": [ + 83, + 341, + 528, + 353 + ], + "score": 1.0, + "content": "totically) over evaluating the product directly. The algorithm has no false negatives and trivially extends to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 351, + 459, + 364 + ], + "spans": [ + { + "bbox": [ + 82, + 351, + 309, + 364 + ], + "score": 1.0, + "content": "rectangular matrices. Independently repeating the check", + "type": "text" + }, + { + "bbox": [ + 309, + 352, + 317, + 361 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 351, + 433, + 364 + ], + "score": 1.0, + "content": "times yields soundness error", + "type": "text" + }, + { + "bbox": [ + 433, + 351, + 454, + 363 + ], + "score": 0.92, + "content": "1 / | \\mathbb { S } | ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 351, + 459, + 364 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 83, + 377, + 529, + 411 + ], + "lines": [ + { + "bbox": [ + 82, + 377, + 529, + 391 + ], + "spans": [ + { + "bbox": [ + 82, + 377, + 529, + 391 + ], + "score": 1.0, + "content": "Privacy. Input privacy for outsourced linear operators could be achieved with linearly homomorphic encryption,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 83, + 389, + 528, + 401 + ], + "spans": [ + { + "bbox": [ + 83, + 389, + 528, + 401 + ], + "score": 1.0, + "content": "but the overhead (see the micro-benchmarks in (Juvekar et al., 2018)) is too high to compete with our baseline", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 83, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "(i.e., computing the function directly in the TEE would be faster than outsourcing it over encrypted data).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 84, + 416, + 528, + 484 + ], + "lines": [ + { + "bbox": [ + 82, + 415, + 529, + 429 + ], + "spans": [ + { + "bbox": [ + 82, + 415, + 529, + 429 + ], + "score": 1.0, + "content": "We instead propose a very efficient two-stage approach based on symmetric cryptography, i.e., an additive stream", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 425, + 529, + 441 + ], + "spans": [ + { + "bbox": [ + 82, + 425, + 131, + 441 + ], + "score": 1.0, + "content": "cipher. Let", + "type": "text" + }, + { + "bbox": [ + 131, + 428, + 189, + 439 + ], + "score": 0.92, + "content": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 425, + 320, + 441 + ], + "score": 1.0, + "content": "be a linear function over a field", + "type": "text" + }, + { + "bbox": [ + 320, + 428, + 328, + 437 + ], + "score": 0.54, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 425, + 529, + 441 + ], + "score": 1.0, + "content": ". In an offline phase, the TEE generates a stream", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 437, + 529, + 452 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 248, + 452 + ], + "score": 1.0, + "content": "of one-time-use pseudorandom elements", + "type": "text" + }, + { + "bbox": [ + 248, + 439, + 279, + 449 + ], + "score": 0.9, + "content": "r \\in \\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 437, + 357, + 452 + ], + "score": 1.0, + "content": ", and pre-computes", + "type": "text" + }, + { + "bbox": [ + 358, + 439, + 396, + 450 + ], + "score": 0.93, + "content": "u = f ( r )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 437, + 529, + 452 + ], + "score": 1.0, + "content": ". Then, in the online phase when", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 448, + 527, + 463 + ], + "spans": [ + { + "bbox": [ + 82, + 448, + 214, + 463 + ], + "score": 1.0, + "content": "the remote client sends an input", + "type": "text" + }, + { + "bbox": [ + 215, + 451, + 222, + 459 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 448, + 303, + 463 + ], + "score": 1.0, + "content": ", the TEE computes", + "type": "text" + }, + { + "bbox": [ + 303, + 450, + 369, + 461 + ], + "score": 0.9, + "content": "\\mathtt { E n c } ( x ) = x + r", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 448, + 390, + 463 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 390, + 450, + 405, + 460 + ], + "score": 0.87, + "content": "\\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 448, + 520, + 463 + ], + "score": 1.0, + "content": "(i.e., a secure encryption of", + "type": "text" + }, + { + "bbox": [ + 520, + 451, + 527, + 459 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 460, + 529, + 474 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 319, + 474 + ], + "score": 1.0, + "content": "with a stream cipher), and outsources the computation of", + "type": "text" + }, + { + "bbox": [ + 320, + 461, + 362, + 472 + ], + "score": 0.9, + "content": "f ( \\mathsf { E n c } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 460, + 529, + 474 + ], + "score": 1.0, + "content": "to the faster processor. Given the result", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 471, + 496, + 484 + ], + "spans": [ + { + "bbox": [ + 83, + 471, + 291, + 484 + ], + "score": 0.84, + "content": "f ( \\mathsf { E n c } ( x ) ) = f ( x + r ) = f ( x ) + f ( r ) = f ( x ) \\overset { \\cdot } { + } u", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 471, + 366, + 484 + ], + "score": 1.0, + "content": ", the TEE recovers", + "type": "text" + }, + { + "bbox": [ + 366, + 471, + 387, + 483 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 471, + 484, + 484 + ], + "score": 1.0, + "content": "using the pre-computed", + "type": "text" + }, + { + "bbox": [ + 485, + 473, + 491, + 481 + ], + "score": 0.7, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 471, + 496, + 484 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 84, + 497, + 528, + 554 + ], + "lines": [ + { + "bbox": [ + 83, + 498, + 528, + 510 + ], + "spans": [ + { + "bbox": [ + 83, + 498, + 528, + 510 + ], + "score": 1.0, + "content": "Communication. Using Freivalds’ algorithm and symmetric encryption for each linear layer in a DNN incurs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 508, + 528, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 508, + 528, + 522 + ], + "score": 1.0, + "content": "high interaction and communication between the TEE and untrusted co-processor (e.g., over 50MB per inference", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 519, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 519, + 529, + 532 + ], + "score": 1.0, + "content": "for VGG16, see Table 3). This would be prohibitive if they were not co-located. There are protocols with lower", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 81, + 530, + 530, + 544 + ], + "spans": [ + { + "bbox": [ + 81, + 530, + 530, + 544 + ], + "score": 1.0, + "content": "communication than repeatedly using Freivalds’ ((Fiore & Gennaro, 2012; Thaler, 2013; Ghodsi et al., 2017)).", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 541, + 469, + 555 + ], + "spans": [ + { + "bbox": [ + 82, + 541, + 469, + 555 + ], + "score": 1.0, + "content": "Yet, these incur a high overhead on the prover in practice and are thus not suitable in our setting.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 84, + 577, + 147, + 590 + ], + "lines": [ + { + "bbox": [ + 81, + 574, + 150, + 592 + ], + "spans": [ + { + "bbox": [ + 81, + 574, + 150, + 592 + ], + "score": 1.0, + "content": "3 SLALOM", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 83, + 606, + 529, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 606, + 529, + 620 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 529, + 620 + ], + "score": 1.0, + "content": "We introduce Slalom, a three-step approach for outsourcing DNNs from a TEE to an untrusted but faster device:", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 617, + 529, + 630 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 333, + 630 + ], + "score": 1.0, + "content": "(1) Inputs and weights are quantized and embedded in a field", + "type": "text" + }, + { + "bbox": [ + 334, + 618, + 341, + 628 + ], + "score": 0.27, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 617, + 529, + 630 + ], + "score": 1.0, + "content": "; (2) Linear layers are outsourced and verified", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 628, + 529, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 529, + 642 + ], + "score": 1.0, + "content": "using Freivalds’ algorithm; (3) Inputs of linear layers are encrypted with a pre-computed pseudorandom stream to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 81, + 639, + 531, + 654 + ], + "spans": [ + { + "bbox": [ + 81, + 639, + 531, + 654 + ], + "score": 1.0, + "content": "guarantee privacy. Figure 1 shows two Slalom variants, one to achieve integrity, and one to also achieve privacy.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 82, + 657, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "score": 1.0, + "content": "We focus on feed-forward networks with fully connected layers, convolutions, separable convolutions, pooling", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 668, + 526, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 668, + 526, + 681 + ], + "score": 1.0, + "content": "layers and activations. Slalom can be extended to other architectures (e.g., residual networks, see Section 4.3).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 285, + 707 + ], + "lines": [ + { + "bbox": [ + 278, + 698, + 286, + 710 + ], + "spans": [ + { + "bbox": [ + 278, + 698, + 286, + 710 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 83, + 140, + 487, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 138, + 488, + 155 + ], + "spans": [ + { + "bbox": [ + 82, + 138, + 488, + 155 + ], + "score": 1.0, + "content": "To overcome this barrier, we design outsourcing protocols tailored to DNNs, leveraging two insights:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 82, + 138, + 488, + 155 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 155, + 528, + 206 + ], + "lines": [ + { + "bbox": [ + 84, + 154, + 528, + 169 + ], + "spans": [ + { + "bbox": [ + 84, + 154, + 528, + 169 + ], + "score": 1.0, + "content": "1. In our setting, the TEE is co-located with the server’s faster untrusted processors, thus widening the design", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 96, + 165, + 455, + 181 + ], + "spans": [ + { + "bbox": [ + 96, + 165, + 455, + 181 + ], + "score": 1.0, + "content": "space to interactive outsourcing protocols with high communication but better efficiency.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 83, + 183, + 528, + 197 + ], + "score": 1.0, + "content": "2. The TEE always has knowledge of the model and can selectively outsource part of the DNN evaluation and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 96, + 195, + 328, + 207 + ], + "spans": [ + { + "bbox": [ + 96, + 195, + 328, + 207 + ], + "score": 1.0, + "content": "compute others—for which outsourcing is harder—itself.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 83, + 154, + 528, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 209, + 528, + 265 + ], + "lines": [ + { + "bbox": [ + 83, + 210, + 529, + 222 + ], + "spans": [ + { + "bbox": [ + 83, + 210, + 529, + 222 + ], + "score": 1.0, + "content": "DNNs are a class of functions that are particularly well suited for selective outsourcing. Indeed, non-linearities—", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 83, + 221, + 529, + 233 + ], + "spans": [ + { + "bbox": [ + 83, + 221, + 529, + 233 + ], + "score": 1.0, + "content": "which are hard to securely outsource (with integrity or privacy)—represent a small fraction of the computation in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 232, + 528, + 244 + ], + "spans": [ + { + "bbox": [ + 82, + 232, + 493, + 244 + ], + "score": 1.0, + "content": "a DNN so we can evaluate these in the TEE (e.g., for VGG16 inference on a single CPU thread, about", + "type": "text" + }, + { + "bbox": [ + 494, + 232, + 516, + 243 + ], + "score": 0.88, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 232, + 528, + 244 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 243, + 529, + 255 + ], + "spans": [ + { + "bbox": [ + 83, + 243, + 529, + 255 + ], + "score": 1.0, + "content": "the computation is spent on non-linearities). In contrast, linear operators—the main computational bottleneck in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 253, + 517, + 267 + ], + "spans": [ + { + "bbox": [ + 82, + 253, + 517, + 267 + ], + "score": 1.0, + "content": "DNNs—admit for a conceptually simple yet concretely efficient secure delegation scheme, described below.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 82, + 210, + 529, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 81, + 279, + 522, + 292 + ], + "lines": [ + { + "bbox": [ + 83, + 279, + 523, + 293 + ], + "spans": [ + { + "bbox": [ + 83, + 279, + 523, + 293 + ], + "score": 1.0, + "content": "Integrity. We verify integrity of outsourced linear layers using variants of an algorithm by Freivalds (1977).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 83, + 279, + 523, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 80, + 298, + 525, + 322 + ], + "lines": [ + { + "bbox": [ + 82, + 298, + 527, + 312 + ], + "spans": [ + { + "bbox": [ + 82, + 298, + 198, + 312 + ], + "score": 1.0, + "content": "Lemma 2.1 (Freivalds). Let", + "type": "text" + }, + { + "bbox": [ + 198, + 299, + 218, + 310 + ], + "score": 0.66, + "content": "A , B", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 298, + 237, + 312 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 237, + 299, + 246, + 309 + ], + "score": 0.77, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 298, + 258, + 312 + ], + "score": 1.0, + "content": "be", + "type": "text" + }, + { + "bbox": [ + 258, + 300, + 282, + 309 + ], + "score": 0.86, + "content": "n \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 298, + 365, + 312 + ], + "score": 1.0, + "content": "matrices over a field", + "type": "text" + }, + { + "bbox": [ + 365, + 299, + 373, + 309 + ], + "score": 0.66, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 298, + 527, + 312 + ], + "score": 1.0, + "content": "and let s be a uniformly random vector", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 308, + 498, + 324 + ], + "spans": [ + { + "bbox": [ + 81, + 308, + 93, + 324 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 93, + 310, + 105, + 320 + ], + "score": 0.82, + "content": "\\mathbb { S } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 106, + 308, + 123, + 324 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 124, + 310, + 150, + 321 + ], + "score": 0.88, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 308, + 178, + 324 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + }, + { + "bbox": [ + 179, + 310, + 493, + 322 + ], + "score": 0.85, + "content": "\\operatorname* { P r } [ C s = A ( B s ) \\mid C \\neq A B ] = \\operatorname* { P r } [ ( C - A B ) s = \\mathbf { 0 } \\mid ( C - A B ) \\neq \\mathbf { 0 } ] \\leq ^ { 1 } / | \\mathbb { S } |", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 308, + 498, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 81, + 298, + 527, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 329, + 528, + 363 + ], + "lines": [ + { + "bbox": [ + 82, + 327, + 529, + 342 + ], + "spans": [ + { + "bbox": [ + 82, + 327, + 211, + 342 + ], + "score": 1.0, + "content": "The randomized check requires", + "type": "text" + }, + { + "bbox": [ + 212, + 328, + 228, + 339 + ], + "score": 0.88, + "content": "3 n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 327, + 529, + 342 + ], + "score": 1.0, + "content": "multiplications, a significant reduction (both in concrete terms and asymp-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 83, + 341, + 528, + 353 + ], + "spans": [ + { + "bbox": [ + 83, + 341, + 528, + 353 + ], + "score": 1.0, + "content": "totically) over evaluating the product directly. The algorithm has no false negatives and trivially extends to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 351, + 459, + 364 + ], + "spans": [ + { + "bbox": [ + 82, + 351, + 309, + 364 + ], + "score": 1.0, + "content": "rectangular matrices. Independently repeating the check", + "type": "text" + }, + { + "bbox": [ + 309, + 352, + 317, + 361 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 351, + 433, + 364 + ], + "score": 1.0, + "content": "times yields soundness error", + "type": "text" + }, + { + "bbox": [ + 433, + 351, + 454, + 363 + ], + "score": 0.92, + "content": "1 / | \\mathbb { S } | ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 351, + 459, + 364 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 82, + 327, + 529, + 364 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 377, + 529, + 411 + ], + "lines": [ + { + "bbox": [ + 82, + 377, + 529, + 391 + ], + "spans": [ + { + "bbox": [ + 82, + 377, + 529, + 391 + ], + "score": 1.0, + "content": "Privacy. Input privacy for outsourced linear operators could be achieved with linearly homomorphic encryption,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 83, + 389, + 528, + 401 + ], + "spans": [ + { + "bbox": [ + 83, + 389, + 528, + 401 + ], + "score": 1.0, + "content": "but the overhead (see the micro-benchmarks in (Juvekar et al., 2018)) is too high to compete with our baseline", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 83, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "(i.e., computing the function directly in the TEE would be faster than outsourcing it over encrypted data).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 82, + 377, + 529, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 416, + 528, + 484 + ], + "lines": [ + { + "bbox": [ + 82, + 415, + 529, + 429 + ], + "spans": [ + { + "bbox": [ + 82, + 415, + 529, + 429 + ], + "score": 1.0, + "content": "We instead propose a very efficient two-stage approach based on symmetric cryptography, i.e., an additive stream", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 425, + 529, + 441 + ], + "spans": [ + { + "bbox": [ + 82, + 425, + 131, + 441 + ], + "score": 1.0, + "content": "cipher. Let", + "type": "text" + }, + { + "bbox": [ + 131, + 428, + 189, + 439 + ], + "score": 0.92, + "content": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 425, + 320, + 441 + ], + "score": 1.0, + "content": "be a linear function over a field", + "type": "text" + }, + { + "bbox": [ + 320, + 428, + 328, + 437 + ], + "score": 0.54, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 425, + 529, + 441 + ], + "score": 1.0, + "content": ". In an offline phase, the TEE generates a stream", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 437, + 529, + 452 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 248, + 452 + ], + "score": 1.0, + "content": "of one-time-use pseudorandom elements", + "type": "text" + }, + { + "bbox": [ + 248, + 439, + 279, + 449 + ], + "score": 0.9, + "content": "r \\in \\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 437, + 357, + 452 + ], + "score": 1.0, + "content": ", and pre-computes", + "type": "text" + }, + { + "bbox": [ + 358, + 439, + 396, + 450 + ], + "score": 0.93, + "content": "u = f ( r )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 437, + 529, + 452 + ], + "score": 1.0, + "content": ". Then, in the online phase when", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 448, + 527, + 463 + ], + "spans": [ + { + "bbox": [ + 82, + 448, + 214, + 463 + ], + "score": 1.0, + "content": "the remote client sends an input", + "type": "text" + }, + { + "bbox": [ + 215, + 451, + 222, + 459 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 448, + 303, + 463 + ], + "score": 1.0, + "content": ", the TEE computes", + "type": "text" + }, + { + "bbox": [ + 303, + 450, + 369, + 461 + ], + "score": 0.9, + "content": "\\mathtt { E n c } ( x ) = x + r", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 448, + 390, + 463 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 390, + 450, + 405, + 460 + ], + "score": 0.87, + "content": "\\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 448, + 520, + 463 + ], + "score": 1.0, + "content": "(i.e., a secure encryption of", + "type": "text" + }, + { + "bbox": [ + 520, + 451, + 527, + 459 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 460, + 529, + 474 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 319, + 474 + ], + "score": 1.0, + "content": "with a stream cipher), and outsources the computation of", + "type": "text" + }, + { + "bbox": [ + 320, + 461, + 362, + 472 + ], + "score": 0.9, + "content": "f ( \\mathsf { E n c } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 460, + 529, + 474 + ], + "score": 1.0, + "content": "to the faster processor. Given the result", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 471, + 496, + 484 + ], + "spans": [ + { + "bbox": [ + 83, + 471, + 291, + 484 + ], + "score": 0.84, + "content": "f ( \\mathsf { E n c } ( x ) ) = f ( x + r ) = f ( x ) + f ( r ) = f ( x ) \\overset { \\cdot } { + } u", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 471, + 366, + 484 + ], + "score": 1.0, + "content": ", the TEE recovers", + "type": "text" + }, + { + "bbox": [ + 366, + 471, + 387, + 483 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 471, + 484, + 484 + ], + "score": 1.0, + "content": "using the pre-computed", + "type": "text" + }, + { + "bbox": [ + 485, + 473, + 491, + 481 + ], + "score": 0.7, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 471, + 496, + 484 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 82, + 415, + 529, + 484 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 497, + 528, + 554 + ], + "lines": [ + { + "bbox": [ + 83, + 498, + 528, + 510 + ], + "spans": [ + { + "bbox": [ + 83, + 498, + 528, + 510 + ], + "score": 1.0, + "content": "Communication. Using Freivalds’ algorithm and symmetric encryption for each linear layer in a DNN incurs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 508, + 528, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 508, + 528, + 522 + ], + "score": 1.0, + "content": "high interaction and communication between the TEE and untrusted co-processor (e.g., over 50MB per inference", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 519, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 519, + 529, + 532 + ], + "score": 1.0, + "content": "for VGG16, see Table 3). This would be prohibitive if they were not co-located. There are protocols with lower", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 81, + 530, + 530, + 544 + ], + "spans": [ + { + "bbox": [ + 81, + 530, + 530, + 544 + ], + "score": 1.0, + "content": "communication than repeatedly using Freivalds’ ((Fiore & Gennaro, 2012; Thaler, 2013; Ghodsi et al., 2017)).", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 541, + 469, + 555 + ], + "spans": [ + { + "bbox": [ + 82, + 541, + 469, + 555 + ], + "score": 1.0, + "content": "Yet, these incur a high overhead on the prover in practice and are thus not suitable in our setting.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 81, + 498, + 530, + 555 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 577, + 147, + 590 + ], + "lines": [ + { + "bbox": [ + 81, + 574, + 150, + 592 + ], + "spans": [ + { + "bbox": [ + 81, + 574, + 150, + 592 + ], + "score": 1.0, + "content": "3 SLALOM", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 83, + 606, + 529, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 606, + 529, + 620 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 529, + 620 + ], + "score": 1.0, + "content": "We introduce Slalom, a three-step approach for outsourcing DNNs from a TEE to an untrusted but faster device:", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 617, + 529, + 630 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 333, + 630 + ], + "score": 1.0, + "content": "(1) Inputs and weights are quantized and embedded in a field", + "type": "text" + }, + { + "bbox": [ + 334, + 618, + 341, + 628 + ], + "score": 0.27, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 617, + 529, + 630 + ], + "score": 1.0, + "content": "; (2) Linear layers are outsourced and verified", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 628, + 529, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 529, + 642 + ], + "score": 1.0, + "content": "using Freivalds’ algorithm; (3) Inputs of linear layers are encrypted with a pre-computed pseudorandom stream to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 81, + 639, + 531, + 654 + ], + "spans": [ + { + "bbox": [ + 81, + 639, + 531, + 654 + ], + "score": 1.0, + "content": "guarantee privacy. Figure 1 shows two Slalom variants, one to achieve integrity, and one to also achieve privacy.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 81, + 606, + 531, + 654 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 657, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "score": 1.0, + "content": "We focus on feed-forward networks with fully connected layers, convolutions, separable convolutions, pooling", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 668, + 526, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 668, + 526, + 681 + ], + "score": 1.0, + "content": "layers and activations. Slalom can be extended to other architectures (e.g., residual networks, see Section 4.3).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 82, + 655, + 528, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 84, + 138, + 292, + 258 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 84, + 138, + 292, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 84, + 138, + 292, + 258 + ], + "spans": [ + { + "bbox": [ + 84, + 138, + 292, + 258 + ], + "score": 0.422, + "html": "
Slalomwith integrity TEE(F,x1) S(F)
for i∈ [1,n] do
yi=xiWi
xi+1=σ(yi)
1...yn
fori∈[1,n] do assert Freivalds(yi,x,W)
xi+1=σ(yi)
return yn
", + "type": "table", + "image_path": "68e3dc2240594a3fa26a194d36ba32950ab09ff2dc6712e779ab23c590da496f.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 84, + 138, + 292, + 153.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 84, + 153.0, + 292, + 168.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 84, + 168.0, + 292, + 183.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 84, + 183.0, + 292, + 198.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 84, + 198.0, + 292, + 213.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 84, + 213.0, + 292, + 228.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 84, + 228.0, + 292, + 243.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 84, + 243.0, + 292, + 258.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 303, + 138, + 523, + 259 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 303, + 138, + 523, + 259 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 303, + 138, + 523, + 259 + ], + "spans": [ + { + "bbox": [ + 303, + 138, + 523, + 259 + ], + "score": 0.481, + "html": "
Slalom with integrity& privacy TEE(F,x1) S(F)
Preproc: for i∈[1,n] dori ← Fmi,ui =riWi
for i∈[1,n] do 主 xi=xi+ri
起 yi=xW
yi=yi-ui
assert Freivalds(yi,xi,Wi)
xi+1=σ(yi) return yn
", + "type": "table", + "image_path": "e4e070963d356a31639df7aca4a78879b76895ffe4fc201b38e685066e487465.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 303, + 138, + 523, + 153.125 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 303, + 153.125, + 523, + 168.25 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 303, + 168.25, + 523, + 183.375 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 303, + 183.375, + 523, + 198.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 303, + 198.5, + 523, + 213.625 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 303, + 213.625, + 523, + 228.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 303, + 228.75, + 523, + 243.875 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 303, + 243.875, + 523, + 259.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 84, + 333, + 175, + 344 + ], + "lines": [ + { + "bbox": [ + 82, + 331, + 177, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 331, + 177, + 347 + ], + "score": 1.0, + "content": "3.1 QUANTIZATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 84, + 354, + 529, + 388 + ], + "lines": [ + { + "bbox": [ + 83, + 353, + 529, + 367 + ], + "spans": [ + { + "bbox": [ + 83, + 353, + 518, + 367 + ], + "score": 1.0, + "content": "The techniques we use for integrity and privacy (Freivalds’ algorithm and stream ciphers) work over a field", + "type": "text" + }, + { + "bbox": [ + 519, + 354, + 526, + 364 + ], + "score": 0.59, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 353, + 529, + 367 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 363, + 529, + 379 + ], + "spans": [ + { + "bbox": [ + 82, + 363, + 470, + 379 + ], + "score": 1.0, + "content": "We thus quantize all inputs and weights of a DNN to integers, and embed these integers in the field", + "type": "text" + }, + { + "bbox": [ + 471, + 366, + 483, + 378 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 363, + 529, + 379 + ], + "score": 1.0, + "content": "of integers", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 376, + 530, + 389 + ], + "spans": [ + { + "bbox": [ + 83, + 376, + 148, + 389 + ], + "score": 1.0, + "content": "modulo a prime", + "type": "text" + }, + { + "bbox": [ + 149, + 378, + 155, + 388 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 376, + 185, + 389 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 186, + 378, + 192, + 388 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 376, + 530, + 389 + ], + "score": 1.0, + "content": "is larger than all values computed in a DNN evaluation, so as to avoid wrap-around).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 84, + 393, + 529, + 428 + ], + "lines": [ + { + "bbox": [ + 83, + 393, + 528, + 406 + ], + "spans": [ + { + "bbox": [ + 83, + 393, + 322, + 406 + ], + "score": 1.0, + "content": "As in (Gupta et al., 2015), we convert floating point numbers", + "type": "text" + }, + { + "bbox": [ + 323, + 396, + 330, + 403 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 393, + 461, + 406 + ], + "score": 1.0, + "content": "to a fixed-point representation as", + "type": "text" + }, + { + "bbox": [ + 461, + 393, + 528, + 405 + ], + "score": 0.87, + "content": "\\tilde { x } = \\mathtt { F P } ( x ; l ) : =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 84, + 404, + 529, + 419 + ], + "spans": [ + { + "bbox": [ + 84, + 405, + 144, + 417 + ], + "score": 0.54, + "content": "\\mathtt { r o u n d } ( 2 ^ { l } \\cdot x ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 404, + 268, + 419 + ], + "score": 1.0, + "content": ". For a linear layer with kernel", + "type": "text" + }, + { + "bbox": [ + 268, + 406, + 280, + 416 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 404, + 317, + 419 + ], + "score": 1.0, + "content": "and bias", + "type": "text" + }, + { + "bbox": [ + 317, + 406, + 323, + 416 + ], + "score": 0.75, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 404, + 446, + 419 + ], + "score": 1.0, + "content": ", we define integer parameters", + "type": "text" + }, + { + "bbox": [ + 446, + 405, + 529, + 418 + ], + "score": 0.89, + "content": "\\tilde { W } = \\mathrm { F P } ( W , l ) , \\tilde { b } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 415, + 530, + 430 + ], + "spans": [ + { + "bbox": [ + 83, + 417, + 121, + 429 + ], + "score": 0.91, + "content": "\\mathrm { E P } ( b , 2 l )", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 415, + 304, + 430 + ], + "score": 1.0, + "content": ". After applying the layer to a quantized input", + "type": "text" + }, + { + "bbox": [ + 304, + 418, + 311, + 427 + ], + "score": 0.81, + "content": "\\tilde { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 415, + 406, + 430 + ], + "score": 1.0, + "content": ", we scale the output by", + "type": "text" + }, + { + "bbox": [ + 406, + 416, + 421, + 427 + ], + "score": 0.88, + "content": "2 ^ { - l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 415, + 530, + 430 + ], + "score": 1.0, + "content": "and re-round to an integer.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 83, + 433, + 528, + 489 + ], + "lines": [ + { + "bbox": [ + 82, + 433, + 529, + 447 + ], + "spans": [ + { + "bbox": [ + 82, + 433, + 529, + 447 + ], + "score": 1.0, + "content": "For efficiency reasons, we perform integer arithmetic using floats (so-called fake quantization), and choose", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 442, + 529, + 459 + ], + "spans": [ + { + "bbox": [ + 83, + 444, + 116, + 456 + ], + "score": 0.91, + "content": "p < 2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 442, + 249, + 459 + ], + "score": 1.0, + "content": "to avoid loss of precision (we use", + "type": "text" + }, + { + "bbox": [ + 250, + 444, + 301, + 456 + ], + "score": 0.9, + "content": "p = 2 ^ { 2 4 } - 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 442, + 445, + 459 + ], + "score": 1.0, + "content": ". For the models we evaluate, setting", + "type": "text" + }, + { + "bbox": [ + 446, + 445, + 469, + 455 + ], + "score": 0.89, + "content": "l = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 442, + 529, + 459 + ], + "score": 1.0, + "content": "for all weights", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 81, + 453, + 530, + 469 + ], + "spans": [ + { + "bbox": [ + 81, + 453, + 302, + 469 + ], + "score": 1.0, + "content": "and inputs ensures that all DNN values are bounded by", + "type": "text" + }, + { + "bbox": [ + 302, + 455, + 316, + 466 + ], + "score": 0.84, + "content": "2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 453, + 383, + 469 + ], + "score": 1.0, + "content": ", with less than a", + "type": "text" + }, + { + "bbox": [ + 383, + 456, + 406, + 467 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 453, + 530, + 469 + ], + "score": 1.0, + "content": "drop in accuracy (see Table 3).", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 465, + 529, + 480 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 230, + 480 + ], + "score": 1.0, + "content": "When performing arithmetic modulo", + "type": "text" + }, + { + "bbox": [ + 230, + 468, + 237, + 478 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 465, + 529, + 480 + ], + "score": 1.0, + "content": "(e.g., for Freivalds’ algorithm or when computing on encrypted data), we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 83, + 478, + 520, + 489 + ], + "spans": [ + { + "bbox": [ + 83, + 478, + 520, + 489 + ], + "score": 1.0, + "content": "use double-precision floats, to reduce the number of modular reductions required (details are in Appendix F).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 84, + 504, + 291, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 504, + 292, + 517 + ], + "spans": [ + { + "bbox": [ + 82, + 504, + 292, + 517 + ], + "score": 1.0, + "content": "3.2 VERIFYING COMMON LINEAR OPERATORS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 82, + 525, + 528, + 548 + ], + "lines": [ + { + "bbox": [ + 82, + 524, + 529, + 539 + ], + "spans": [ + { + "bbox": [ + 82, + 524, + 529, + 539 + ], + "score": 1.0, + "content": "We now describe Slalom’s approach to verifying the integrity of outsourced linear layers. We describe these", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 537, + 397, + 549 + ], + "spans": [ + { + "bbox": [ + 82, + 537, + 397, + 549 + ], + "score": 1.0, + "content": "layers in detail in Appendix D and summarize this section’s results in Table 2.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 82, + 557, + 528, + 591 + ], + "lines": [ + { + "bbox": [ + 82, + 556, + 528, + 570 + ], + "spans": [ + { + "bbox": [ + 82, + 556, + 528, + 570 + ], + "score": 1.0, + "content": "Freivalds’ Algorithm for Batches. The most direct way of applying Freivalds’ algorithm to arbitrary linear", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 567, + 528, + 582 + ], + "spans": [ + { + "bbox": [ + 82, + 567, + 322, + 582 + ], + "score": 1.0, + "content": "layers of a DNN is by exploiting batching. Any linear layer", + "type": "text" + }, + { + "bbox": [ + 322, + 568, + 343, + 580 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 567, + 421, + 582 + ], + "score": 1.0, + "content": "from inputs of size", + "type": "text" + }, + { + "bbox": [ + 421, + 570, + 432, + 578 + ], + "score": 0.76, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 567, + 503, + 582 + ], + "score": 1.0, + "content": "to outputs of size", + "type": "text" + }, + { + "bbox": [ + 503, + 570, + 511, + 578 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 511, + 567, + 528, + 582 + ], + "score": 1.0, + "content": "can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 578, + 526, + 593 + ], + "spans": [ + { + "bbox": [ + 82, + 578, + 270, + 593 + ], + "score": 1.0, + "content": "be represented (with appropriate reshaping) as", + "type": "text" + }, + { + "bbox": [ + 270, + 578, + 327, + 591 + ], + "score": 0.92, + "content": "f ( x ) = x ^ { \\top } W", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 578, + 456, + 593 + ], + "score": 1.0, + "content": "for a (often sparse and implicit)", + "type": "text" + }, + { + "bbox": [ + 456, + 580, + 484, + 590 + ], + "score": 0.88, + "content": "m \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 578, + 514, + 593 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 514, + 579, + 526, + 589 + ], + "score": 0.74, + "content": "W", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 84, + 595, + 528, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 529, + 608 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 131, + 608 + ], + "score": 1.0, + "content": "For a batch", + "type": "text" + }, + { + "bbox": [ + 132, + 597, + 142, + 606 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 595, + 172, + 608 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 173, + 597, + 182, + 606 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 595, + 259, + 608 + ], + "score": 1.0, + "content": ", we can outsource", + "type": "text" + }, + { + "bbox": [ + 259, + 596, + 283, + 608 + ], + "score": 0.92, + "content": "f ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 595, + 389, + 608 + ], + "score": 1.0, + "content": "and check that the output", + "type": "text" + }, + { + "bbox": [ + 389, + 596, + 398, + 606 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 595, + 435, + 608 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 435, + 595, + 503, + 608 + ], + "score": 0.93, + "content": "f ( s ^ { \\top } X ) = s ^ { \\top } Y", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 595, + 529, + 608 + ], + "score": 1.0, + "content": ", for a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 606, + 527, + 619 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 145, + 619 + ], + "score": 1.0, + "content": "random vector", + "type": "text" + }, + { + "bbox": [ + 145, + 609, + 151, + 617 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 606, + 394, + 619 + ], + "score": 1.0, + "content": "(we are implicitly applying Freivalds to the matrix product", + "type": "text" + }, + { + "bbox": [ + 394, + 607, + 437, + 617 + ], + "score": 0.87, + "content": "X W = Y", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 606, + 517, + 619 + ], + "score": 1.0, + "content": "). As the batch size", + "type": "text" + }, + { + "bbox": [ + 518, + 608, + 527, + 617 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 81, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 81, + 617, + 200, + 631 + ], + "score": 1.0, + "content": "grows, the cost of evaluating", + "type": "text" + }, + { + "bbox": [ + 201, + 618, + 208, + 630 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 617, + 389, + 631 + ], + "score": 1.0, + "content": "is amortized and the total verification cost is", + "type": "text" + }, + { + "bbox": [ + 389, + 618, + 464, + 630 + ], + "score": 0.91, + "content": "| X | + | Y | + \\mathsf { c o s t } _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "multiplications", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 629, + 528, + 641 + ], + "spans": [ + { + "bbox": [ + 82, + 629, + 528, + 641 + ], + "score": 1.0, + "content": "(i.e., we approach one operation per input and output). Yet, as we show in Section 4.3, while batched verification", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 81, + 639, + 513, + 652 + ], + "spans": [ + { + "bbox": [ + 81, + 639, + 513, + 652 + ], + "score": 1.0, + "content": "is worthwhile for processors with larger memory, it is prohibitive in SGX enclaves due to the limited PRM.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 82, + 656, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 657, + 528, + 668 + ], + "spans": [ + { + "bbox": [ + 83, + 657, + 528, + 668 + ], + "score": 1.0, + "content": "For full convolutions (and pointwise convolutions), a direct application of Freivalds’ check is worthwhile even for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 83, + 668, + 529, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 198, + 681 + ], + "score": 1.0, + "content": "single-element batches. For", + "type": "text" + }, + { + "bbox": [ + 198, + 668, + 281, + 680 + ], + "score": 0.91, + "content": "f ( x ) = \\mathbf { C o n v } ( x , W )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 668, + 370, + 681 + ], + "score": 1.0, + "content": "and purported output", + "type": "text" + }, + { + "bbox": [ + 370, + 671, + 376, + 680 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 668, + 510, + 681 + ], + "score": 1.0, + "content": ", we can sample a random vector", + "type": "text" + }, + { + "bbox": [ + 510, + 670, + 516, + 678 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 668, + 529, + 681 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 85, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 285, + 707 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 286, + 710 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 286, + 710 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 84, + 138, + 292, + 258 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 84, + 138, + 292, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 84, + 138, + 292, + 258 + ], + "spans": [ + { + "bbox": [ + 84, + 138, + 292, + 258 + ], + "score": 0.422, + "html": "
Slalomwith integrity TEE(F,x1) S(F)
for i∈ [1,n] do
yi=xiWi
xi+1=σ(yi)
1...yn
fori∈[1,n] do assert Freivalds(yi,x,W)
xi+1=σ(yi)
return yn
", + "type": "table", + "image_path": "68e3dc2240594a3fa26a194d36ba32950ab09ff2dc6712e779ab23c590da496f.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 84, + 138, + 292, + 153.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 84, + 153.0, + 292, + 168.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 84, + 168.0, + 292, + 183.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 84, + 183.0, + 292, + 198.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 84, + 198.0, + 292, + 213.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 84, + 213.0, + 292, + 228.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 84, + 228.0, + 292, + 243.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 84, + 243.0, + 292, + 258.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 303, + 138, + 523, + 259 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 303, + 138, + 523, + 259 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 303, + 138, + 523, + 259 + ], + "spans": [ + { + "bbox": [ + 303, + 138, + 523, + 259 + ], + "score": 0.481, + "html": "
Slalom with integrity& privacy TEE(F,x1) S(F)
Preproc: for i∈[1,n] dori ← Fmi,ui =riWi
for i∈[1,n] do 主 xi=xi+ri
起 yi=xW
yi=yi-ui
assert Freivalds(yi,xi,Wi)
xi+1=σ(yi) return yn
", + "type": "table", + "image_path": "e4e070963d356a31639df7aca4a78879b76895ffe4fc201b38e685066e487465.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 303, + 138, + 523, + 153.125 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 303, + 153.125, + 523, + 168.25 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 303, + 168.25, + 523, + 183.375 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 303, + 183.375, + 523, + 198.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 303, + 198.5, + 523, + 213.625 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 303, + 213.625, + 523, + 228.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 303, + 228.75, + 523, + 243.875 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 303, + 243.875, + 523, + 259.0 + ], + "spans": [], + "index": 15 + } + ] + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 84, + 333, + 175, + 344 + ], + "lines": [ + { + "bbox": [ + 82, + 331, + 177, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 331, + 177, + 347 + ], + "score": 1.0, + "content": "3.1 QUANTIZATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 84, + 354, + 529, + 388 + ], + "lines": [ + { + "bbox": [ + 83, + 353, + 529, + 367 + ], + "spans": [ + { + "bbox": [ + 83, + 353, + 518, + 367 + ], + "score": 1.0, + "content": "The techniques we use for integrity and privacy (Freivalds’ algorithm and stream ciphers) work over a field", + "type": "text" + }, + { + "bbox": [ + 519, + 354, + 526, + 364 + ], + "score": 0.59, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 353, + 529, + 367 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 363, + 529, + 379 + ], + "spans": [ + { + "bbox": [ + 82, + 363, + 470, + 379 + ], + "score": 1.0, + "content": "We thus quantize all inputs and weights of a DNN to integers, and embed these integers in the field", + "type": "text" + }, + { + "bbox": [ + 471, + 366, + 483, + 378 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 363, + 529, + 379 + ], + "score": 1.0, + "content": "of integers", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 376, + 530, + 389 + ], + "spans": [ + { + "bbox": [ + 83, + 376, + 148, + 389 + ], + "score": 1.0, + "content": "modulo a prime", + "type": "text" + }, + { + "bbox": [ + 149, + 378, + 155, + 388 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 376, + 185, + 389 + ], + "score": 1.0, + "content": "(where", + "type": "text" + }, + { + "bbox": [ + 186, + 378, + 192, + 388 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 376, + 530, + 389 + ], + "score": 1.0, + "content": "is larger than all values computed in a DNN evaluation, so as to avoid wrap-around).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 82, + 353, + 530, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 393, + 529, + 428 + ], + "lines": [ + { + "bbox": [ + 83, + 393, + 528, + 406 + ], + "spans": [ + { + "bbox": [ + 83, + 393, + 322, + 406 + ], + "score": 1.0, + "content": "As in (Gupta et al., 2015), we convert floating point numbers", + "type": "text" + }, + { + "bbox": [ + 323, + 396, + 330, + 403 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 393, + 461, + 406 + ], + "score": 1.0, + "content": "to a fixed-point representation as", + "type": "text" + }, + { + "bbox": [ + 461, + 393, + 528, + 405 + ], + "score": 0.87, + "content": "\\tilde { x } = \\mathtt { F P } ( x ; l ) : =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 84, + 404, + 529, + 419 + ], + "spans": [ + { + "bbox": [ + 84, + 405, + 144, + 417 + ], + "score": 0.54, + "content": "\\mathtt { r o u n d } ( 2 ^ { l } \\cdot x ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 404, + 268, + 419 + ], + "score": 1.0, + "content": ". For a linear layer with kernel", + "type": "text" + }, + { + "bbox": [ + 268, + 406, + 280, + 416 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 404, + 317, + 419 + ], + "score": 1.0, + "content": "and bias", + "type": "text" + }, + { + "bbox": [ + 317, + 406, + 323, + 416 + ], + "score": 0.75, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 404, + 446, + 419 + ], + "score": 1.0, + "content": ", we define integer parameters", + "type": "text" + }, + { + "bbox": [ + 446, + 405, + 529, + 418 + ], + "score": 0.89, + "content": "\\tilde { W } = \\mathrm { F P } ( W , l ) , \\tilde { b } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 415, + 530, + 430 + ], + "spans": [ + { + "bbox": [ + 83, + 417, + 121, + 429 + ], + "score": 0.91, + "content": "\\mathrm { E P } ( b , 2 l )", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 415, + 304, + 430 + ], + "score": 1.0, + "content": ". After applying the layer to a quantized input", + "type": "text" + }, + { + "bbox": [ + 304, + 418, + 311, + 427 + ], + "score": 0.81, + "content": "\\tilde { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 415, + 406, + 430 + ], + "score": 1.0, + "content": ", we scale the output by", + "type": "text" + }, + { + "bbox": [ + 406, + 416, + 421, + 427 + ], + "score": 0.88, + "content": "2 ^ { - l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 415, + 530, + 430 + ], + "score": 1.0, + "content": "and re-round to an integer.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 83, + 393, + 530, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 433, + 528, + 489 + ], + "lines": [ + { + "bbox": [ + 82, + 433, + 529, + 447 + ], + "spans": [ + { + "bbox": [ + 82, + 433, + 529, + 447 + ], + "score": 1.0, + "content": "For efficiency reasons, we perform integer arithmetic using floats (so-called fake quantization), and choose", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 83, + 442, + 529, + 459 + ], + "spans": [ + { + "bbox": [ + 83, + 444, + 116, + 456 + ], + "score": 0.91, + "content": "p < 2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 442, + 249, + 459 + ], + "score": 1.0, + "content": "to avoid loss of precision (we use", + "type": "text" + }, + { + "bbox": [ + 250, + 444, + 301, + 456 + ], + "score": 0.9, + "content": "p = 2 ^ { 2 4 } - 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 442, + 445, + 459 + ], + "score": 1.0, + "content": ". For the models we evaluate, setting", + "type": "text" + }, + { + "bbox": [ + 446, + 445, + 469, + 455 + ], + "score": 0.89, + "content": "l = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 442, + 529, + 459 + ], + "score": 1.0, + "content": "for all weights", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 81, + 453, + 530, + 469 + ], + "spans": [ + { + "bbox": [ + 81, + 453, + 302, + 469 + ], + "score": 1.0, + "content": "and inputs ensures that all DNN values are bounded by", + "type": "text" + }, + { + "bbox": [ + 302, + 455, + 316, + 466 + ], + "score": 0.84, + "content": "2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 453, + 383, + 469 + ], + "score": 1.0, + "content": ", with less than a", + "type": "text" + }, + { + "bbox": [ + 383, + 456, + 406, + 467 + ], + "score": 0.87, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 453, + 530, + 469 + ], + "score": 1.0, + "content": "drop in accuracy (see Table 3).", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 465, + 529, + 480 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 230, + 480 + ], + "score": 1.0, + "content": "When performing arithmetic modulo", + "type": "text" + }, + { + "bbox": [ + 230, + 468, + 237, + 478 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 465, + 529, + 480 + ], + "score": 1.0, + "content": "(e.g., for Freivalds’ algorithm or when computing on encrypted data), we", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 83, + 478, + 520, + 489 + ], + "spans": [ + { + "bbox": [ + 83, + 478, + 520, + 489 + ], + "score": 1.0, + "content": "use double-precision floats, to reduce the number of modular reductions required (details are in Appendix F).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 81, + 433, + 530, + 489 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 504, + 291, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 504, + 292, + 517 + ], + "spans": [ + { + "bbox": [ + 82, + 504, + 292, + 517 + ], + "score": 1.0, + "content": "3.2 VERIFYING COMMON LINEAR OPERATORS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 82, + 525, + 528, + 548 + ], + "lines": [ + { + "bbox": [ + 82, + 524, + 529, + 539 + ], + "spans": [ + { + "bbox": [ + 82, + 524, + 529, + 539 + ], + "score": 1.0, + "content": "We now describe Slalom’s approach to verifying the integrity of outsourced linear layers. We describe these", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 537, + 397, + 549 + ], + "spans": [ + { + "bbox": [ + 82, + 537, + 397, + 549 + ], + "score": 1.0, + "content": "layers in detail in Appendix D and summarize this section’s results in Table 2.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 82, + 524, + 529, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 557, + 528, + 591 + ], + "lines": [ + { + "bbox": [ + 82, + 556, + 528, + 570 + ], + "spans": [ + { + "bbox": [ + 82, + 556, + 528, + 570 + ], + "score": 1.0, + "content": "Freivalds’ Algorithm for Batches. The most direct way of applying Freivalds’ algorithm to arbitrary linear", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 567, + 528, + 582 + ], + "spans": [ + { + "bbox": [ + 82, + 567, + 322, + 582 + ], + "score": 1.0, + "content": "layers of a DNN is by exploiting batching. Any linear layer", + "type": "text" + }, + { + "bbox": [ + 322, + 568, + 343, + 580 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 567, + 421, + 582 + ], + "score": 1.0, + "content": "from inputs of size", + "type": "text" + }, + { + "bbox": [ + 421, + 570, + 432, + 578 + ], + "score": 0.76, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 567, + 503, + 582 + ], + "score": 1.0, + "content": "to outputs of size", + "type": "text" + }, + { + "bbox": [ + 503, + 570, + 511, + 578 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 511, + 567, + 528, + 582 + ], + "score": 1.0, + "content": "can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 578, + 526, + 593 + ], + "spans": [ + { + "bbox": [ + 82, + 578, + 270, + 593 + ], + "score": 1.0, + "content": "be represented (with appropriate reshaping) as", + "type": "text" + }, + { + "bbox": [ + 270, + 578, + 327, + 591 + ], + "score": 0.92, + "content": "f ( x ) = x ^ { \\top } W", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 578, + 456, + 593 + ], + "score": 1.0, + "content": "for a (often sparse and implicit)", + "type": "text" + }, + { + "bbox": [ + 456, + 580, + 484, + 590 + ], + "score": 0.88, + "content": "m \\times n", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 578, + 514, + 593 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 514, + 579, + 526, + 589 + ], + "score": 0.74, + "content": "W", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 82, + 556, + 528, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 595, + 528, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 529, + 608 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 131, + 608 + ], + "score": 1.0, + "content": "For a batch", + "type": "text" + }, + { + "bbox": [ + 132, + 597, + 142, + 606 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 595, + 172, + 608 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 173, + 597, + 182, + 606 + ], + "score": 0.79, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 595, + 259, + 608 + ], + "score": 1.0, + "content": ", we can outsource", + "type": "text" + }, + { + "bbox": [ + 259, + 596, + 283, + 608 + ], + "score": 0.92, + "content": "f ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 595, + 389, + 608 + ], + "score": 1.0, + "content": "and check that the output", + "type": "text" + }, + { + "bbox": [ + 389, + 596, + 398, + 606 + ], + "score": 0.75, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 595, + 435, + 608 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 435, + 595, + 503, + 608 + ], + "score": 0.93, + "content": "f ( s ^ { \\top } X ) = s ^ { \\top } Y", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 595, + 529, + 608 + ], + "score": 1.0, + "content": ", for a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 606, + 527, + 619 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 145, + 619 + ], + "score": 1.0, + "content": "random vector", + "type": "text" + }, + { + "bbox": [ + 145, + 609, + 151, + 617 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 606, + 394, + 619 + ], + "score": 1.0, + "content": "(we are implicitly applying Freivalds to the matrix product", + "type": "text" + }, + { + "bbox": [ + 394, + 607, + 437, + 617 + ], + "score": 0.87, + "content": "X W = Y", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 606, + 517, + 619 + ], + "score": 1.0, + "content": "). As the batch size", + "type": "text" + }, + { + "bbox": [ + 518, + 608, + 527, + 617 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 81, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 81, + 617, + 200, + 631 + ], + "score": 1.0, + "content": "grows, the cost of evaluating", + "type": "text" + }, + { + "bbox": [ + 201, + 618, + 208, + 630 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 617, + 389, + 631 + ], + "score": 1.0, + "content": "is amortized and the total verification cost is", + "type": "text" + }, + { + "bbox": [ + 389, + 618, + 464, + 630 + ], + "score": 0.91, + "content": "| X | + | Y | + \\mathsf { c o s t } _ { f }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "multiplications", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 629, + 528, + 641 + ], + "spans": [ + { + "bbox": [ + 82, + 629, + 528, + 641 + ], + "score": 1.0, + "content": "(i.e., we approach one operation per input and output). Yet, as we show in Section 4.3, while batched verification", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 81, + 639, + 513, + 652 + ], + "spans": [ + { + "bbox": [ + 81, + 639, + 513, + 652 + ], + "score": 1.0, + "content": "is worthwhile for processors with larger memory, it is prohibitive in SGX enclaves due to the limited PRM.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 81, + 595, + 529, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 656, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 657, + 528, + 668 + ], + "spans": [ + { + "bbox": [ + 83, + 657, + 528, + 668 + ], + "score": 1.0, + "content": "For full convolutions (and pointwise convolutions), a direct application of Freivalds’ check is worthwhile even for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 83, + 668, + 529, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 198, + 681 + ], + "score": 1.0, + "content": "single-element batches. For", + "type": "text" + }, + { + "bbox": [ + 198, + 668, + 281, + 680 + ], + "score": 0.91, + "content": "f ( x ) = \\mathbf { C o n v } ( x , W )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 668, + 370, + 681 + ], + "score": 1.0, + "content": "and purported output", + "type": "text" + }, + { + "bbox": [ + 370, + 671, + 376, + 680 + ], + "score": 0.74, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 668, + 510, + 681 + ], + "score": 1.0, + "content": ", we can sample a random vector", + "type": "text" + }, + { + "bbox": [ + 510, + 670, + 516, + 678 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 668, + 529, + 681 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 83, + 657, + 529, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 86, + 175, + 523, + 230 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 83, + 138, + 528, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 136, + 529, + 152 + ], + "spans": [ + { + "bbox": [ + 82, + 136, + 529, + 152 + ], + "score": 1.0, + "content": "Table 2: Complexity (number of multiplications) for evaluating and verifying linear functions. The layers", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 83, + 149, + 529, + 162 + ], + "spans": [ + { + "bbox": [ + 83, + 149, + 529, + 162 + ], + "score": 1.0, + "content": "are “Fully Connected”, ”Convolution”, ”Depthwise Convolution” and ”Pointwise Convolution”, defined in", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 160, + 487, + 174 + ], + "spans": [ + { + "bbox": [ + 83, + 160, + 182, + 174 + ], + "score": 1.0, + "content": "Appendix D. Each layer", + "type": "text" + }, + { + "bbox": [ + 182, + 161, + 189, + 172 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 160, + 241, + 174 + ], + "score": 1.0, + "content": "has an input", + "type": "text" + }, + { + "bbox": [ + 241, + 163, + 248, + 170 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 160, + 279, + 174 + ], + "score": 1.0, + "content": ", output", + "type": "text" + }, + { + "bbox": [ + 280, + 162, + 286, + 172 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 160, + 331, + 174 + ], + "score": 1.0, + "content": "and kernel", + "type": "text" + }, + { + "bbox": [ + 332, + 160, + 343, + 171 + ], + "score": 0.54, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 160, + 455, + 174 + ], + "score": 1.0, + "content": ". We assume a batch size of", + "type": "text" + }, + { + "bbox": [ + 455, + 160, + 483, + 171 + ], + "score": 0.89, + "content": "B \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 160, + 487, + 174 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 86, + 175, + 523, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 86, + 175, + 523, + 230 + ], + "spans": [ + { + "bbox": [ + 86, + 175, + 523, + 230 + ], + "score": 0.976, + "html": "
Layer|x|,|yl|W|costf (B=1)Batched verificationWith preproc.
FChin,houthin·hout|a|·lyB·(lx|+lyl)+cost fB·(lx|+lyl)
Convh·w·Cin,h·w·Coutk² · Cin ·Coutal·k2 · CoutB·(lx|+lyl)+Cin·Cout+ |x| · k²B·(|xl+lyl)
Depth.Convh·w·Cin,h·w·Cink2.Cinlac|.k²B·(lx|+lyl)+cost fB·(|x|+ lyl)
Point. Convh·w ·Cin,h · w· CoutCin·Cout|c| · CoutB·(x|+lyl)+Cin·CoutB·(lx|+|yl)
", + "type": "table", + "image_path": "8093e25c85b772cb9b41d04b60e16481ee83a0c5698d0450951e485d347eae61.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 86, + 175, + 523, + 193.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 86, + 193.33333333333334, + 523, + 211.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 86, + 211.66666666666669, + 523, + 230.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 83, + 245, + 527, + 268 + ], + "lines": [ + { + "bbox": [ + 83, + 244, + 528, + 259 + ], + "spans": [ + { + "bbox": [ + 83, + 244, + 127, + 259 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 127, + 247, + 142, + 257 + ], + "score": 0.89, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 244, + 333, + 259 + ], + "score": 1.0, + "content": "(the number of output channels), and check that", + "type": "text" + }, + { + "bbox": [ + 333, + 245, + 412, + 258 + ], + "score": 0.91, + "content": "\\operatorname { C o n v } ( x , W s ) = y s", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 244, + 528, + 259 + ], + "score": 1.0, + "content": "(with appropriate reshaping).", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 256, + 468, + 269 + ], + "spans": [ + { + "bbox": [ + 82, + 256, + 168, + 269 + ], + "score": 1.0, + "content": "For a batch of inputs", + "type": "text" + }, + { + "bbox": [ + 168, + 257, + 178, + 267 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 256, + 423, + 269 + ], + "score": 1.0, + "content": ", we can also apply Freivalds’ algorithm twice to reduce both", + "type": "text" + }, + { + "bbox": [ + 423, + 257, + 435, + 267 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 256, + 453, + 269 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 257, + 464, + 267 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 256, + 468, + 269 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 83, + 275, + 528, + 309 + ], + "lines": [ + { + "bbox": [ + 82, + 274, + 528, + 289 + ], + "spans": [ + { + "bbox": [ + 82, + 274, + 528, + 289 + ], + "score": 1.0, + "content": "Preprocessing. We now show how to obtain an outsourcing scheme for linear layers that has optimal verification", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 83, + 286, + 529, + 300 + ], + "spans": [ + { + "bbox": [ + 83, + 286, + 150, + 300 + ], + "score": 1.0, + "content": "complexity (i.e.,", + "type": "text" + }, + { + "bbox": [ + 150, + 286, + 185, + 299 + ], + "score": 0.92, + "content": "| x | + | y |", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 286, + 529, + 300 + ], + "score": 1.0, + "content": "operations) for single-element batches and arbitrary linear operators, while at the same", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 83, + 297, + 467, + 311 + ], + "spans": [ + { + "bbox": [ + 83, + 297, + 467, + 311 + ], + "score": 1.0, + "content": "time compressing the DNN’s weights (a welcome property in our memory-limited TEE model).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 83, + 314, + 528, + 359 + ], + "lines": [ + { + "bbox": [ + 83, + 314, + 529, + 327 + ], + "spans": [ + { + "bbox": [ + 83, + 314, + 529, + 327 + ], + "score": 1.0, + "content": "We leverage two facts: (1) DNN weights are fixed at inference time, so part of Freivalds’ check can be pre-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 325, + 528, + 337 + ], + "spans": [ + { + "bbox": [ + 82, + 325, + 299, + 337 + ], + "score": 1.0, + "content": "computed; (2) the TEE can keep secrets from the host", + "type": "text" + }, + { + "bbox": [ + 299, + 326, + 307, + 335 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 325, + 397, + 337 + ], + "score": 1.0, + "content": ", so the random values", + "type": "text" + }, + { + "bbox": [ + 397, + 328, + 403, + 335 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 325, + 528, + 337 + ], + "score": 1.0, + "content": "can be re-used across layers or", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 84, + 336, + 528, + 347 + ], + "spans": [ + { + "bbox": [ + 84, + 336, + 219, + 347 + ], + "score": 1.0, + "content": "inputs (if we run Freivalds’ check", + "type": "text" + }, + { + "bbox": [ + 219, + 338, + 227, + 346 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 336, + 528, + 347 + ], + "score": 1.0, + "content": "times with the same secret randomness, the soundness errors grows at most", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 83, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 83, + 347, + 128, + 360 + ], + "score": 1.0, + "content": "by a factor", + "type": "text" + }, + { + "bbox": [ + 129, + 350, + 136, + 358 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "). Our verification scheme with preprocessing follows from a reformulation of Lemma (2.1):", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 82, + 361, + 525, + 387 + ], + "lines": [ + { + "bbox": [ + 82, + 360, + 528, + 375 + ], + "spans": [ + { + "bbox": [ + 82, + 360, + 156, + 375 + ], + "score": 1.0, + "content": "Lemma 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 156, + 362, + 215, + 374 + ], + "score": 0.91, + "content": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 360, + 305, + 375 + ], + "score": 1.0, + "content": "be a linear operator,", + "type": "text" + }, + { + "bbox": [ + 306, + 361, + 366, + 374 + ], + "score": 0.92, + "content": "f ( x ) : = x ^ { \\top } W", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 360, + 496, + 375 + ], + "score": 1.0, + "content": ". Let s be uniformly random in", + "type": "text" + }, + { + "bbox": [ + 497, + 362, + 509, + 372 + ], + "score": 0.82, + "content": "\\mathbb { S } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 509, + 360, + 528, + 375 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 83, + 371, + 518, + 388 + ], + "spans": [ + { + "bbox": [ + 83, + 374, + 110, + 386 + ], + "score": 0.86, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 110, + 371, + 143, + 388 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 144, + 374, + 226, + 387 + ], + "score": 0.92, + "content": "\\tilde { s } : = \\nabla F _ { x } ( s ) = W s", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 371, + 263, + 388 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 263, + 375, + 295, + 385 + ], + "score": 0.88, + "content": "\\boldsymbol { x } \\in \\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 371, + 299, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 299, + 375, + 329, + 386 + ], + "score": 0.9, + "content": "y \\in \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 371, + 368, + 388 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 368, + 373, + 511, + 387 + ], + "score": 0.9, + "content": "\\operatorname* { P r } \\left[ y ^ { \\top } s = x ^ { \\top } { \\tilde { s } } \\mid y \\neq f ( x ) \\right] \\leq { \\boldsymbol { \\mathrm { 1 } } } / { \\boldsymbol { \\mathrm { | \\mathbb { S } } } } { \\boldsymbol { \\mathrm { | \\nabla } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 512, + 371, + 518, + 388 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 83, + 396, + 529, + 430 + ], + "lines": [ + { + "bbox": [ + 82, + 394, + 530, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 394, + 161, + 411 + ], + "score": 1.0, + "content": "The check requires", + "type": "text" + }, + { + "bbox": [ + 162, + 396, + 197, + 408 + ], + "score": 0.92, + "content": "| x | + | y |", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 394, + 325, + 411 + ], + "score": 1.0, + "content": "multiplications, and storage for", + "type": "text" + }, + { + "bbox": [ + 325, + 399, + 331, + 406 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 394, + 349, + 411 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 397, + 386, + 407 + ], + "score": 0.89, + "content": "{ \\tilde { s } } : = W s", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 394, + 419, + 411 + ], + "score": 1.0, + "content": "(of size", + "type": "text" + }, + { + "bbox": [ + 420, + 396, + 432, + 408 + ], + "score": 0.89, + "content": "| x |", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 394, + 450, + 411 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 396, + 463, + 408 + ], + "score": 0.81, + "content": "| y | ,", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 394, + 530, + 411 + ], + "score": 1.0, + "content": "). To save space,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 83, + 407, + 528, + 419 + ], + "spans": [ + { + "bbox": [ + 83, + 407, + 205, + 419 + ], + "score": 1.0, + "content": "we can reuse the same random", + "type": "text" + }, + { + "bbox": [ + 206, + 410, + 212, + 417 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 407, + 528, + 419 + ], + "score": 1.0, + "content": "for every layer. The memory footprint of a model is then equal to the size of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 418, + 511, + 432 + ], + "spans": [ + { + "bbox": [ + 83, + 418, + 511, + 432 + ], + "score": 1.0, + "content": "inputs of all its linear layers (e.g., for VGG16 the footprint is reduced from 550MB to 36MB, see Table 3).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 84, + 438, + 176, + 450 + ], + "lines": [ + { + "bbox": [ + 82, + 437, + 178, + 451 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 178, + 451 + ], + "score": 1.0, + "content": "3.3 INPUT PRIVACY", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 84, + 459, + 529, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 459, + 530, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 530, + 473 + ], + "score": 1.0, + "content": "To guarantee privacy of the client’s inputs, we use precomputed blinding factors for each outsourced computation,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "score": 1.0, + "content": "as described in Section 2.3. The TEE uses a cryptographic Pseudo Random Number Generator (PRNG) to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 81, + 480, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 81, + 480, + 529, + 495 + ], + "score": 1.0, + "content": "generate blinding factors. The precomputed “unblinding factors” are encrypted and stored in untrusted memory", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 492, + 528, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 492, + 528, + 505 + ], + "score": 1.0, + "content": "or disk. In the online phase, the TEE regenerates the blinding factors using the same PRNG seed, and uses the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 503, + 420, + 516 + ], + "spans": [ + { + "bbox": [ + 82, + 503, + 420, + 516 + ], + "score": 1.0, + "content": "precomputed unblinding factors to decrypt the output of the outsourced linear layer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 84, + 519, + 528, + 565 + ], + "lines": [ + { + "bbox": [ + 82, + 519, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 519, + 528, + 533 + ], + "score": 1.0, + "content": "This blinding process incurs several overheads: (1) the computations on the untrusted device have to be performed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 83, + 531, + 528, + 543 + ], + "spans": [ + { + "bbox": [ + 83, + 531, + 102, + 543 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 103, + 532, + 115, + 543 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 531, + 528, + 543 + ], + "score": 1.0, + "content": "so we use double-precision arithmetic. (2) The trusted and untrusted processors exchange data in-between", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 542, + 528, + 554 + ], + "spans": [ + { + "bbox": [ + 83, + 542, + 528, + 554 + ], + "score": 1.0, + "content": "each layer, rather than at the end of a full inference pass. (3) The TEE has to efficiently load precomputed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 553, + 518, + 565 + ], + "spans": [ + { + "bbox": [ + 83, + 553, + 518, + 565 + ], + "score": 1.0, + "content": "unblinding factors, which requires either a large amount of RAM, or a fast access to disk (e.g., a PCIe SSD).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 83, + 569, + 527, + 592 + ], + "lines": [ + { + "bbox": [ + 83, + 570, + 527, + 582 + ], + "spans": [ + { + "bbox": [ + 83, + 570, + 527, + 582 + ], + "score": 1.0, + "content": "Slalom’s security is given by the following results. Formal definitions and proofs are in Appendix B. Let negl be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 580, + 525, + 593 + ], + "spans": [ + { + "bbox": [ + 82, + 580, + 229, + 593 + ], + "score": 1.0, + "content": "a negligible function (for any integer", + "type": "text" + }, + { + "bbox": [ + 230, + 581, + 253, + 591 + ], + "score": 0.89, + "content": "c > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 580, + 342, + 593 + ], + "score": 1.0, + "content": "there exists an integer", + "type": "text" + }, + { + "bbox": [ + 342, + 581, + 356, + 592 + ], + "score": 0.89, + "content": "N _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 580, + 420, + 593 + ], + "score": 1.0, + "content": "such that for all", + "type": "text" + }, + { + "bbox": [ + 420, + 581, + 452, + 592 + ], + "score": 0.89, + "content": "x > N _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 580, + 456, + 593 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 456, + 581, + 525, + 593 + ], + "score": 0.93, + "content": "| \\mathrm { n e g l } ( x ) | < \\bar { 1 } / { x ^ { c } } )", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 84, + 595, + 529, + 640 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 375, + 609 + ], + "score": 1.0, + "content": "Theorem 3.2. Let Slalom be the protocol from Figure 1 (right), where", + "type": "text" + }, + { + "bbox": [ + 375, + 596, + 384, + 606 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 595, + 408, + 609 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 408, + 598, + 415, + 606 + ], + "score": 0.63, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 595, + 529, + 609 + ], + "score": 1.0, + "content": "-layer DNN, and Freivalds’", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 607, + 528, + 619 + ], + "spans": [ + { + "bbox": [ + 83, + 607, + 374, + 619 + ], + "score": 1.0, + "content": "algorithm is repeated k times per layer with random vectors drawn from", + "type": "text" + }, + { + "bbox": [ + 375, + 607, + 401, + 618 + ], + "score": 0.87, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 607, + 528, + 619 + ], + "score": 1.0, + "content": ". Assume all random values are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 81, + 617, + 527, + 631 + ], + "spans": [ + { + "bbox": [ + 81, + 617, + 311, + 631 + ], + "score": 1.0, + "content": "generated using a secure PRNG with security parameter", + "type": "text" + }, + { + "bbox": [ + 311, + 619, + 318, + 627 + ], + "score": 0.72, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 617, + 518, + 631 + ], + "score": 1.0, + "content": ". Then, Slalom is a secure outsourcing scheme for", + "type": "text" + }, + { + "bbox": [ + 518, + 618, + 527, + 628 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 627, + 492, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 627, + 271, + 642 + ], + "score": 1.0, + "content": "between a TEE and an untrusted co-processor", + "type": "text" + }, + { + "bbox": [ + 271, + 630, + 278, + 639 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 627, + 349, + 642 + ], + "score": 1.0, + "content": "with privacy and", + "type": "text" + }, + { + "bbox": [ + 350, + 630, + 354, + 639 + ], + "score": 0.66, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 627, + 406, + 642 + ], + "score": 1.0, + "content": "-integrity for", + "type": "text" + }, + { + "bbox": [ + 406, + 629, + 488, + 641 + ], + "score": 0.92, + "content": "t = n / \\vert \\mathbb { S } \\vert ^ { k } - \\mathrm { n e g l } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 627, + 492, + 642 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 84, + 644, + 528, + 677 + ], + "lines": [ + { + "bbox": [ + 83, + 643, + 528, + 657 + ], + "spans": [ + { + "bbox": [ + 83, + 643, + 438, + 657 + ], + "score": 1.0, + "content": "Corollary 3.3. Assuming the TEE is secure (i.e., it acts as a trusted third party hosted by", + "type": "text" + }, + { + "bbox": [ + 439, + 644, + 447, + 654 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 643, + 528, + 657 + ], + "score": 1.0, + "content": "), Slalom is a secure", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 654, + 529, + 668 + ], + "spans": [ + { + "bbox": [ + 82, + 654, + 259, + 668 + ], + "score": 1.0, + "content": "outsourcing scheme between a remote client", + "type": "text" + }, + { + "bbox": [ + 259, + 657, + 265, + 664 + ], + "score": 0.8, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 654, + 311, + 668 + ], + "score": 1.0, + "content": "and server", + "type": "text" + }, + { + "bbox": [ + 311, + 657, + 318, + 665 + ], + "score": 0.82, + "content": "\\boldsymbol { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 654, + 388, + 668 + ], + "score": 1.0, + "content": "with privacy and", + "type": "text" + }, + { + "bbox": [ + 388, + 656, + 393, + 665 + ], + "score": 0.59, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 654, + 443, + 668 + ], + "score": 1.0, + "content": "-integrity for", + "type": "text" + }, + { + "bbox": [ + 443, + 655, + 525, + 667 + ], + "score": 0.92, + "content": "t = { \\boldsymbol { \\mathscr { n } } } / { \\boldsymbol { | \\mathbb { S } } } { \\boldsymbol { \\vert \\sp k - \\mathrm { n e g l } } } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 654, + 529, + 668 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 82, + 665, + 397, + 680 + ], + "spans": [ + { + "bbox": [ + 82, + 665, + 133, + 680 + ], + "score": 1.0, + "content": "If the model", + "type": "text" + }, + { + "bbox": [ + 134, + 667, + 142, + 676 + ], + "score": 0.62, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 665, + 214, + 680 + ], + "score": 1.0, + "content": "is the property of", + "type": "text" + }, + { + "bbox": [ + 214, + 668, + 222, + 676 + ], + "score": 0.73, + "content": "\\boldsymbol { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 665, + 397, + 680 + ], + "score": 1.0, + "content": ", the scheme further satisfies model privacy.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 286, + 708 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 287, + 709 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 287, + 709 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 86, + 175, + 523, + 230 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 83, + 138, + 528, + 172 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 136, + 529, + 152 + ], + "spans": [ + { + "bbox": [ + 82, + 136, + 529, + 152 + ], + "score": 1.0, + "content": "Table 2: Complexity (number of multiplications) for evaluating and verifying linear functions. The layers", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 83, + 149, + 529, + 162 + ], + "spans": [ + { + "bbox": [ + 83, + 149, + 529, + 162 + ], + "score": 1.0, + "content": "are “Fully Connected”, ”Convolution”, ”Depthwise Convolution” and ”Pointwise Convolution”, defined in", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 160, + 487, + 174 + ], + "spans": [ + { + "bbox": [ + 83, + 160, + 182, + 174 + ], + "score": 1.0, + "content": "Appendix D. Each layer", + "type": "text" + }, + { + "bbox": [ + 182, + 161, + 189, + 172 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 160, + 241, + 174 + ], + "score": 1.0, + "content": "has an input", + "type": "text" + }, + { + "bbox": [ + 241, + 163, + 248, + 170 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 160, + 279, + 174 + ], + "score": 1.0, + "content": ", output", + "type": "text" + }, + { + "bbox": [ + 280, + 162, + 286, + 172 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 160, + 331, + 174 + ], + "score": 1.0, + "content": "and kernel", + "type": "text" + }, + { + "bbox": [ + 332, + 160, + 343, + 171 + ], + "score": 0.54, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 160, + 455, + 174 + ], + "score": 1.0, + "content": ". We assume a batch size of", + "type": "text" + }, + { + "bbox": [ + 455, + 160, + 483, + 171 + ], + "score": 0.89, + "content": "B \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 160, + 487, + 174 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 86, + 175, + 523, + 230 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 86, + 175, + 523, + 230 + ], + "spans": [ + { + "bbox": [ + 86, + 175, + 523, + 230 + ], + "score": 0.976, + "html": "
Layer|x|,|yl|W|costf (B=1)Batched verificationWith preproc.
FChin,houthin·hout|a|·lyB·(lx|+lyl)+cost fB·(lx|+lyl)
Convh·w·Cin,h·w·Coutk² · Cin ·Coutal·k2 · CoutB·(lx|+lyl)+Cin·Cout+ |x| · k²B·(|xl+lyl)
Depth.Convh·w·Cin,h·w·Cink2.Cinlac|.k²B·(lx|+lyl)+cost fB·(|x|+ lyl)
Point. Convh·w ·Cin,h · w· CoutCin·Cout|c| · CoutB·(x|+lyl)+Cin·CoutB·(lx|+|yl)
", + "type": "table", + "image_path": "8093e25c85b772cb9b41d04b60e16481ee83a0c5698d0450951e485d347eae61.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 86, + 175, + 523, + 193.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 86, + 193.33333333333334, + 523, + 211.66666666666669 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 86, + 211.66666666666669, + 523, + 230.00000000000003 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "list", + "bbox": [ + 83, + 245, + 527, + 268 + ], + "lines": [ + { + "bbox": [ + 83, + 244, + 528, + 259 + ], + "spans": [ + { + "bbox": [ + 83, + 244, + 127, + 259 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 127, + 247, + 142, + 257 + ], + "score": 0.89, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 244, + 333, + 259 + ], + "score": 1.0, + "content": "(the number of output channels), and check that", + "type": "text" + }, + { + "bbox": [ + 333, + 245, + 412, + 258 + ], + "score": 0.91, + "content": "\\operatorname { C o n v } ( x , W s ) = y s", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 244, + 528, + 259 + ], + "score": 1.0, + "content": "(with appropriate reshaping).", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 256, + 468, + 269 + ], + "spans": [ + { + "bbox": [ + 82, + 256, + 168, + 269 + ], + "score": 1.0, + "content": "For a batch of inputs", + "type": "text" + }, + { + "bbox": [ + 168, + 257, + 178, + 267 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 256, + 423, + 269 + ], + "score": 1.0, + "content": ", we can also apply Freivalds’ algorithm twice to reduce both", + "type": "text" + }, + { + "bbox": [ + 423, + 257, + 435, + 267 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 256, + 453, + 269 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 257, + 464, + 267 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 256, + 468, + 269 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 82, + 244, + 528, + 269 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 275, + 528, + 309 + ], + "lines": [ + { + "bbox": [ + 82, + 274, + 528, + 289 + ], + "spans": [ + { + "bbox": [ + 82, + 274, + 528, + 289 + ], + "score": 1.0, + "content": "Preprocessing. We now show how to obtain an outsourcing scheme for linear layers that has optimal verification", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 83, + 286, + 529, + 300 + ], + "spans": [ + { + "bbox": [ + 83, + 286, + 150, + 300 + ], + "score": 1.0, + "content": "complexity (i.e.,", + "type": "text" + }, + { + "bbox": [ + 150, + 286, + 185, + 299 + ], + "score": 0.92, + "content": "| x | + | y |", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 286, + 529, + 300 + ], + "score": 1.0, + "content": "operations) for single-element batches and arbitrary linear operators, while at the same", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 83, + 297, + 467, + 311 + ], + "spans": [ + { + "bbox": [ + 83, + 297, + 467, + 311 + ], + "score": 1.0, + "content": "time compressing the DNN’s weights (a welcome property in our memory-limited TEE model).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 82, + 274, + 529, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 314, + 528, + 359 + ], + "lines": [ + { + "bbox": [ + 83, + 314, + 529, + 327 + ], + "spans": [ + { + "bbox": [ + 83, + 314, + 529, + 327 + ], + "score": 1.0, + "content": "We leverage two facts: (1) DNN weights are fixed at inference time, so part of Freivalds’ check can be pre-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 325, + 528, + 337 + ], + "spans": [ + { + "bbox": [ + 82, + 325, + 299, + 337 + ], + "score": 1.0, + "content": "computed; (2) the TEE can keep secrets from the host", + "type": "text" + }, + { + "bbox": [ + 299, + 326, + 307, + 335 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 325, + 397, + 337 + ], + "score": 1.0, + "content": ", so the random values", + "type": "text" + }, + { + "bbox": [ + 397, + 328, + 403, + 335 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 325, + 528, + 337 + ], + "score": 1.0, + "content": "can be re-used across layers or", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 84, + 336, + 528, + 347 + ], + "spans": [ + { + "bbox": [ + 84, + 336, + 219, + 347 + ], + "score": 1.0, + "content": "inputs (if we run Freivalds’ check", + "type": "text" + }, + { + "bbox": [ + 219, + 338, + 227, + 346 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 336, + 528, + 347 + ], + "score": 1.0, + "content": "times with the same secret randomness, the soundness errors grows at most", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 83, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 83, + 347, + 128, + 360 + ], + "score": 1.0, + "content": "by a factor", + "type": "text" + }, + { + "bbox": [ + 129, + 350, + 136, + 358 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "). Our verification scheme with preprocessing follows from a reformulation of Lemma (2.1):", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 82, + 314, + 529, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 361, + 525, + 387 + ], + "lines": [ + { + "bbox": [ + 82, + 360, + 528, + 375 + ], + "spans": [ + { + "bbox": [ + 82, + 360, + 156, + 375 + ], + "score": 1.0, + "content": "Lemma 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 156, + 362, + 215, + 374 + ], + "score": 0.91, + "content": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 360, + 305, + 375 + ], + "score": 1.0, + "content": "be a linear operator,", + "type": "text" + }, + { + "bbox": [ + 306, + 361, + 366, + 374 + ], + "score": 0.92, + "content": "f ( x ) : = x ^ { \\top } W", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 360, + 496, + 375 + ], + "score": 1.0, + "content": ". Let s be uniformly random in", + "type": "text" + }, + { + "bbox": [ + 497, + 362, + 509, + 372 + ], + "score": 0.82, + "content": "\\mathbb { S } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 509, + 360, + 528, + 375 + ], + "score": 1.0, + "content": ", for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 83, + 371, + 518, + 388 + ], + "spans": [ + { + "bbox": [ + 83, + 374, + 110, + 386 + ], + "score": 0.86, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 110, + 371, + 143, + 388 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 144, + 374, + 226, + 387 + ], + "score": 0.92, + "content": "\\tilde { s } : = \\nabla F _ { x } ( s ) = W s", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 371, + 263, + 388 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 263, + 375, + 295, + 385 + ], + "score": 0.88, + "content": "\\boldsymbol { x } \\in \\mathbb { F } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 371, + 299, + 388 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 299, + 375, + 329, + 386 + ], + "score": 0.9, + "content": "y \\in \\mathbb { F } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 371, + 368, + 388 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 368, + 373, + 511, + 387 + ], + "score": 0.9, + "content": "\\operatorname* { P r } \\left[ y ^ { \\top } s = x ^ { \\top } { \\tilde { s } } \\mid y \\neq f ( x ) \\right] \\leq { \\boldsymbol { \\mathrm { 1 } } } / { \\boldsymbol { \\mathrm { | \\mathbb { S } } } } { \\boldsymbol { \\mathrm { | \\nabla } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 512, + 371, + 518, + 388 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 82, + 360, + 528, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 396, + 529, + 430 + ], + "lines": [ + { + "bbox": [ + 82, + 394, + 530, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 394, + 161, + 411 + ], + "score": 1.0, + "content": "The check requires", + "type": "text" + }, + { + "bbox": [ + 162, + 396, + 197, + 408 + ], + "score": 0.92, + "content": "| x | + | y |", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 394, + 325, + 411 + ], + "score": 1.0, + "content": "multiplications, and storage for", + "type": "text" + }, + { + "bbox": [ + 325, + 399, + 331, + 406 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 394, + 349, + 411 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 397, + 386, + 407 + ], + "score": 0.89, + "content": "{ \\tilde { s } } : = W s", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 394, + 419, + 411 + ], + "score": 1.0, + "content": "(of size", + "type": "text" + }, + { + "bbox": [ + 420, + 396, + 432, + 408 + ], + "score": 0.89, + "content": "| x |", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 394, + 450, + 411 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 396, + 463, + 408 + ], + "score": 0.81, + "content": "| y | ,", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 394, + 530, + 411 + ], + "score": 1.0, + "content": "). To save space,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 83, + 407, + 528, + 419 + ], + "spans": [ + { + "bbox": [ + 83, + 407, + 205, + 419 + ], + "score": 1.0, + "content": "we can reuse the same random", + "type": "text" + }, + { + "bbox": [ + 206, + 410, + 212, + 417 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 407, + 528, + 419 + ], + "score": 1.0, + "content": "for every layer. The memory footprint of a model is then equal to the size of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 418, + 511, + 432 + ], + "spans": [ + { + "bbox": [ + 83, + 418, + 511, + 432 + ], + "score": 1.0, + "content": "inputs of all its linear layers (e.g., for VGG16 the footprint is reduced from 550MB to 36MB, see Table 3).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 82, + 394, + 530, + 432 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 438, + 176, + 450 + ], + "lines": [ + { + "bbox": [ + 82, + 437, + 178, + 451 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 178, + 451 + ], + "score": 1.0, + "content": "3.3 INPUT PRIVACY", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 84, + 459, + 529, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 459, + 530, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 530, + 473 + ], + "score": 1.0, + "content": "To guarantee privacy of the client’s inputs, we use precomputed blinding factors for each outsourced computation,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "score": 1.0, + "content": "as described in Section 2.3. The TEE uses a cryptographic Pseudo Random Number Generator (PRNG) to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 81, + 480, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 81, + 480, + 529, + 495 + ], + "score": 1.0, + "content": "generate blinding factors. The precomputed “unblinding factors” are encrypted and stored in untrusted memory", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 492, + 528, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 492, + 528, + 505 + ], + "score": 1.0, + "content": "or disk. In the online phase, the TEE regenerates the blinding factors using the same PRNG seed, and uses the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 503, + 420, + 516 + ], + "spans": [ + { + "bbox": [ + 82, + 503, + 420, + 516 + ], + "score": 1.0, + "content": "precomputed unblinding factors to decrypt the output of the outsourced linear layer.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 81, + 459, + 530, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 519, + 528, + 565 + ], + "lines": [ + { + "bbox": [ + 82, + 519, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 519, + 528, + 533 + ], + "score": 1.0, + "content": "This blinding process incurs several overheads: (1) the computations on the untrusted device have to be performed", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 83, + 531, + 528, + 543 + ], + "spans": [ + { + "bbox": [ + 83, + 531, + 102, + 543 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 103, + 532, + 115, + 543 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 531, + 528, + 543 + ], + "score": 1.0, + "content": "so we use double-precision arithmetic. (2) The trusted and untrusted processors exchange data in-between", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 542, + 528, + 554 + ], + "spans": [ + { + "bbox": [ + 83, + 542, + 528, + 554 + ], + "score": 1.0, + "content": "each layer, rather than at the end of a full inference pass. (3) The TEE has to efficiently load precomputed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 553, + 518, + 565 + ], + "spans": [ + { + "bbox": [ + 83, + 553, + 518, + 565 + ], + "score": 1.0, + "content": "unblinding factors, which requires either a large amount of RAM, or a fast access to disk (e.g., a PCIe SSD).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 82, + 519, + 528, + 565 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 569, + 527, + 592 + ], + "lines": [ + { + "bbox": [ + 83, + 570, + 527, + 582 + ], + "spans": [ + { + "bbox": [ + 83, + 570, + 527, + 582 + ], + "score": 1.0, + "content": "Slalom’s security is given by the following results. Formal definitions and proofs are in Appendix B. Let negl be", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 580, + 525, + 593 + ], + "spans": [ + { + "bbox": [ + 82, + 580, + 229, + 593 + ], + "score": 1.0, + "content": "a negligible function (for any integer", + "type": "text" + }, + { + "bbox": [ + 230, + 581, + 253, + 591 + ], + "score": 0.89, + "content": "c > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 580, + 342, + 593 + ], + "score": 1.0, + "content": "there exists an integer", + "type": "text" + }, + { + "bbox": [ + 342, + 581, + 356, + 592 + ], + "score": 0.89, + "content": "N _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 580, + 420, + 593 + ], + "score": 1.0, + "content": "such that for all", + "type": "text" + }, + { + "bbox": [ + 420, + 581, + 452, + 592 + ], + "score": 0.89, + "content": "x > N _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 580, + 456, + 593 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 456, + 581, + 525, + 593 + ], + "score": 0.93, + "content": "| \\mathrm { n e g l } ( x ) | < \\bar { 1 } / { x ^ { c } } )", + "type": "inline_equation" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 82, + 570, + 527, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 595, + 529, + 640 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 375, + 609 + ], + "score": 1.0, + "content": "Theorem 3.2. Let Slalom be the protocol from Figure 1 (right), where", + "type": "text" + }, + { + "bbox": [ + 375, + 596, + 384, + 606 + ], + "score": 0.8, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 595, + 408, + 609 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 408, + 598, + 415, + 606 + ], + "score": 0.63, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 595, + 529, + 609 + ], + "score": 1.0, + "content": "-layer DNN, and Freivalds’", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 607, + 528, + 619 + ], + "spans": [ + { + "bbox": [ + 83, + 607, + 374, + 619 + ], + "score": 1.0, + "content": "algorithm is repeated k times per layer with random vectors drawn from", + "type": "text" + }, + { + "bbox": [ + 375, + 607, + 401, + 618 + ], + "score": 0.87, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 607, + 528, + 619 + ], + "score": 1.0, + "content": ". Assume all random values are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 81, + 617, + 527, + 631 + ], + "spans": [ + { + "bbox": [ + 81, + 617, + 311, + 631 + ], + "score": 1.0, + "content": "generated using a secure PRNG with security parameter", + "type": "text" + }, + { + "bbox": [ + 311, + 619, + 318, + 627 + ], + "score": 0.72, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 617, + 518, + 631 + ], + "score": 1.0, + "content": ". Then, Slalom is a secure outsourcing scheme for", + "type": "text" + }, + { + "bbox": [ + 518, + 618, + 527, + 628 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 627, + 492, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 627, + 271, + 642 + ], + "score": 1.0, + "content": "between a TEE and an untrusted co-processor", + "type": "text" + }, + { + "bbox": [ + 271, + 630, + 278, + 639 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 627, + 349, + 642 + ], + "score": 1.0, + "content": "with privacy and", + "type": "text" + }, + { + "bbox": [ + 350, + 630, + 354, + 639 + ], + "score": 0.66, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 627, + 406, + 642 + ], + "score": 1.0, + "content": "-integrity for", + "type": "text" + }, + { + "bbox": [ + 406, + 629, + 488, + 641 + ], + "score": 0.92, + "content": "t = n / \\vert \\mathbb { S } \\vert ^ { k } - \\mathrm { n e g l } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 627, + 492, + 642 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 81, + 595, + 529, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 644, + 528, + 677 + ], + "lines": [ + { + "bbox": [ + 83, + 643, + 528, + 657 + ], + "spans": [ + { + "bbox": [ + 83, + 643, + 438, + 657 + ], + "score": 1.0, + "content": "Corollary 3.3. Assuming the TEE is secure (i.e., it acts as a trusted third party hosted by", + "type": "text" + }, + { + "bbox": [ + 439, + 644, + 447, + 654 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 643, + 528, + 657 + ], + "score": 1.0, + "content": "), Slalom is a secure", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 654, + 529, + 668 + ], + "spans": [ + { + "bbox": [ + 82, + 654, + 259, + 668 + ], + "score": 1.0, + "content": "outsourcing scheme between a remote client", + "type": "text" + }, + { + "bbox": [ + 259, + 657, + 265, + 664 + ], + "score": 0.8, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 654, + 311, + 668 + ], + "score": 1.0, + "content": "and server", + "type": "text" + }, + { + "bbox": [ + 311, + 657, + 318, + 665 + ], + "score": 0.82, + "content": "\\boldsymbol { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 654, + 388, + 668 + ], + "score": 1.0, + "content": "with privacy and", + "type": "text" + }, + { + "bbox": [ + 388, + 656, + 393, + 665 + ], + "score": 0.59, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 654, + 443, + 668 + ], + "score": 1.0, + "content": "-integrity for", + "type": "text" + }, + { + "bbox": [ + 443, + 655, + 525, + 667 + ], + "score": 0.92, + "content": "t = { \\boldsymbol { \\mathscr { n } } } / { \\boldsymbol { | \\mathbb { S } } } { \\boldsymbol { \\vert \\sp k - \\mathrm { n e g l } } } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 654, + 529, + 668 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 82, + 665, + 397, + 680 + ], + "spans": [ + { + "bbox": [ + 82, + 665, + 133, + 680 + ], + "score": 1.0, + "content": "If the model", + "type": "text" + }, + { + "bbox": [ + 134, + 667, + 142, + 676 + ], + "score": 0.62, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 665, + 214, + 680 + ], + "score": 1.0, + "content": "is the property of", + "type": "text" + }, + { + "bbox": [ + 214, + 668, + 222, + 676 + ], + "score": 0.73, + "content": "\\boldsymbol { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 665, + 397, + 680 + ], + "score": 1.0, + "content": ", the scheme further satisfies model privacy.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 82, + 643, + 529, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 85, + 139, + 231, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 233, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 233, + 154 + ], + "score": 1.0, + "content": "4 EMPIRICAL EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 164, + 528, + 198 + ], + "lines": [ + { + "bbox": [ + 83, + 165, + 528, + 177 + ], + "spans": [ + { + "bbox": [ + 83, + 165, + 528, + 177 + ], + "score": 1.0, + "content": "We evaluate Slalom on real Intel SGX hardware, on micro-benchmarks and a sample application (ImageNet", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 176, + 528, + 188 + ], + "spans": [ + { + "bbox": [ + 83, + 176, + 528, + 188 + ], + "score": 1.0, + "content": "inference with VGG16, MobileNet and ResNet models). Our aim is to show that, compared to a baseline that", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 186, + 518, + 200 + ], + "spans": [ + { + "bbox": [ + 82, + 186, + 518, + 200 + ], + "score": 1.0, + "content": "runs inference fully in the TEE, outsourcing linear layers increases performance without sacrificing security.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 84, + 213, + 186, + 224 + ], + "lines": [ + { + "bbox": [ + 83, + 213, + 187, + 225 + ], + "spans": [ + { + "bbox": [ + 83, + 213, + 187, + 225 + ], + "score": 1.0, + "content": "4.1 IMPLEMENTATION", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 84, + 234, + 528, + 300 + ], + "lines": [ + { + "bbox": [ + 82, + 234, + 528, + 247 + ], + "spans": [ + { + "bbox": [ + 82, + 234, + 528, + 247 + ], + "score": 1.0, + "content": "As enclaves cannot access most OS features (e.g., multi-threading, disk and driver IO), porting a large framework", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 244, + 528, + 258 + ], + "spans": [ + { + "bbox": [ + 82, + 244, + 463, + 258 + ], + "score": 1.0, + "content": "such as TensorFlow or Intel’s MKL-DNN to SGX is hard. Instead, we designed a lightweight", + "type": "text" + }, + { + "bbox": [ + 464, + 245, + 484, + 255 + ], + "score": 0.84, + "content": "\\mathrm { C } { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 244, + 528, + 258 + ], + "score": 1.0, + "content": "library for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 255, + 528, + 268 + ], + "spans": [ + { + "bbox": [ + 82, + 255, + 528, + 268 + ], + "score": 1.0, + "content": "feed-forward networks based on Eigen, a linear-algebra library which TensorFlow uses as a CPU backend. Our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 265, + 530, + 281 + ], + "spans": [ + { + "bbox": [ + 82, + 265, + 530, + 281 + ], + "score": 1.0, + "content": "library implements the forward pass of DNNs, with support for dense layers, standard and separable convolutions,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 277, + 529, + 290 + ], + "spans": [ + { + "bbox": [ + 82, + 277, + 529, + 290 + ], + "score": 1.0, + "content": "pooling, and activations. When run on a native CPU (without SGX), its performance is comparable to TensorFlow", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 83, + 289, + 507, + 301 + ], + "spans": [ + { + "bbox": [ + 83, + 289, + 507, + 301 + ], + "score": 1.0, + "content": "on CPU (compiled with AVX). Our code is available at https://github.com/ftramer/slalom.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 84, + 305, + 528, + 362 + ], + "lines": [ + { + "bbox": [ + 82, + 304, + 529, + 319 + ], + "spans": [ + { + "bbox": [ + 82, + 304, + 218, + 319 + ], + "score": 1.0, + "content": "Slalom performs arithmetic over", + "type": "text" + }, + { + "bbox": [ + 219, + 306, + 231, + 318 + ], + "score": 0.9, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 304, + 250, + 319 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 250, + 305, + 302, + 317 + ], + "score": 0.9, + "content": "p = 2 ^ { 2 4 } - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 304, + 529, + 319 + ], + "score": 1.0, + "content": ". For integrity, we apply Freivalds’ check twice to each", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 314, + 529, + 330 + ], + "spans": [ + { + "bbox": [ + 81, + 314, + 108, + 330 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 108, + 318, + 135, + 328 + ], + "score": 0.86, + "content": "k = 2 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 314, + 240, + 330 + ], + "score": 1.0, + "content": "), with random values from", + "type": "text" + }, + { + "bbox": [ + 241, + 317, + 306, + 330 + ], + "score": 0.89, + "content": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 314, + 529, + 330 + ], + "score": 1.0, + "content": ", to achieve 40 bits of statistical soundness per layer (see", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 329, + 529, + 341 + ], + "spans": [ + { + "bbox": [ + 83, + 329, + 411, + 341 + ], + "score": 1.0, + "content": "Appendix F for details on the selection of these parameters). For a 50-layer DNN,", + "type": "text" + }, + { + "bbox": [ + 412, + 329, + 420, + 339 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 329, + 529, + 341 + ], + "score": 1.0, + "content": "has a chance of less than 1", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 339, + 530, + 352 + ], + "spans": [ + { + "bbox": [ + 82, + 339, + 530, + 352 + ], + "score": 1.0, + "content": "in 22 billion of fooling the TEE on any incorrect DNN evaluation (a slightly better guarantee than in SafetyNets).", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 83, + 351, + 488, + 362 + ], + "spans": [ + { + "bbox": [ + 83, + 351, + 488, + 362 + ], + "score": 1.0, + "content": "For privacy, we use AES-CTR and AES-GCM to generate, encrypt and authenticate blinding factors.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 84, + 376, + 137, + 387 + ], + "lines": [ + { + "bbox": [ + 82, + 375, + 138, + 389 + ], + "spans": [ + { + "bbox": [ + 82, + 375, + 138, + 389 + ], + "score": 1.0, + "content": "4.2 SETUP", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 84, + 397, + 528, + 442 + ], + "lines": [ + { + "bbox": [ + 82, + 397, + 529, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 397, + 529, + 411 + ], + "score": 1.0, + "content": "We use an Intel Core i7-6700 Skylake 3.40GHz processor with 8GB of RAM, a desktop processor with SGX", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 407, + 529, + 421 + ], + "spans": [ + { + "bbox": [ + 82, + 407, + 529, + 421 + ], + "score": 1.0, + "content": "support. The outsourced computations are performed on a co-located Nvidia TITAN XP GPU. Due to a lack", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 418, + 529, + 433 + ], + "spans": [ + { + "bbox": [ + 82, + 418, + 529, + 433 + ], + "score": 1.0, + "content": "of native internal multi-threading in SGX, we run our TEE in a single CPU thread. We discuss challenges for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 83, + 430, + 438, + 443 + ], + "spans": [ + { + "bbox": [ + 83, + 430, + 438, + 443 + ], + "score": 1.0, + "content": "efficient parallelization in Appendix H. We evaluate Slalom on the following workloads:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 86, + 446, + 528, + 494 + ], + "lines": [ + { + "bbox": [ + 88, + 446, + 528, + 459 + ], + "spans": [ + { + "bbox": [ + 88, + 446, + 528, + 459 + ], + "score": 1.0, + "content": "• Synthetic benchmarks for matrix products, convolutions and separable convolutions, where we compare the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 96, + 458, + 466, + 470 + ], + "spans": [ + { + "bbox": [ + 96, + 458, + 466, + 470 + ], + "score": 1.0, + "content": "enclave’s running time for computing a linear operation to that of solely verifying the result.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 471, + 528, + 484 + ], + "spans": [ + { + "bbox": [ + 88, + 471, + 528, + 484 + ], + "score": 1.0, + "content": "• ImageNet (Deng et al., 2009) classification with VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 95, + 481, + 529, + 496 + ], + "spans": [ + { + "bbox": [ + 95, + 481, + 529, + 496 + ], + "score": 1.0, + "content": "et al., 2017), and ResNet He et al. (2016) models (with fused Batch Normalization layers when applicable).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 83, + 499, + 528, + 555 + ], + "lines": [ + { + "bbox": [ + 83, + 499, + 528, + 511 + ], + "spans": [ + { + "bbox": [ + 83, + 499, + 528, + 511 + ], + "score": 1.0, + "content": "MobileNet, a model tailored for low compute devices, serves as a worst-case benchmark for Slalom, as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 510, + 529, + 523 + ], + "spans": [ + { + "bbox": [ + 82, + 510, + 529, + 523 + ], + "score": 1.0, + "content": "model’s design aggressively minimizes the amount of computation performed per layer. We also consider a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 520, + 528, + 534 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 528, + 534 + ], + "score": 1.0, + "content": "“fused” variant of MobileNet with no activation between depthwise and pointwise convolutions. Removing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 532, + 529, + 545 + ], + "spans": [ + { + "bbox": [ + 82, + 532, + 529, + 545 + ], + "score": 1.0, + "content": "these activations improves convergence and accuracy (Chollet, 2017; Sheng et al., 2018), while also making the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 543, + 499, + 555 + ], + "spans": [ + { + "bbox": [ + 82, + 543, + 499, + 555 + ], + "score": 1.0, + "content": "network more outsourcing-friendly (i.e., it is possible to verify a separable convolution in a single step).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 83, + 559, + 527, + 582 + ], + "lines": [ + { + "bbox": [ + 83, + 558, + 528, + 573 + ], + "spans": [ + { + "bbox": [ + 83, + 558, + 528, + 573 + ], + "score": 1.0, + "content": "Our evaluation focuses on throughput (number of forward passes per second). We also discuss energy efficiency", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 571, + 529, + 584 + ], + "spans": [ + { + "bbox": [ + 82, + 571, + 470, + 584 + ], + "score": 1.0, + "content": "in Appendix C to account for hardware differences between our baseline (TEE only) and Slalom", + "type": "text" + }, + { + "bbox": [ + 471, + 571, + 524, + 582 + ], + "score": 0.52, + "content": "\\mathrm { ( T E E + G P U ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 524, + 571, + 529, + 584 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 84, + 597, + 147, + 608 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 149, + 610 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 149, + 610 + ], + "score": 1.0, + "content": "4.3 RESULTS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 612, + 530, + 626 + ], + "spans": [ + { + "bbox": [ + 82, + 612, + 530, + 626 + ], + "score": 1.0, + "content": "Micro-Benchmarks. Our micro-benchmark suite consists of square matrix products of increasing dimensions,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 624, + 529, + 636 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 529, + 636 + ], + "score": 1.0, + "content": "convolutional operations performed by VGG16, and separable convolutions performed by MobileNet. In all", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "cases, the data is pre-loaded inside an enclave, so we only measure the in-enclave execution time. Figure 2 plots", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 646, + 528, + 659 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 528, + 659 + ], + "score": 1.0, + "content": "the relative speedups of various verification strategies over the cost of computing the linear operation directly. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 656, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 528, + 670 + ], + "score": 1.0, + "content": "all cases, the baseline computation is performed in single-precision floating point, and the verification algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 667, + 392, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 667, + 392, + 681 + ], + "score": 1.0, + "content": "repeat Freivalds’ check so as to attain at least 40 bits of statistical soundness.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 285, + 707 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 286, + 710 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 286, + 710 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 85, + 139, + 231, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 233, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 233, + 154 + ], + "score": 1.0, + "content": "4 EMPIRICAL EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 164, + 528, + 198 + ], + "lines": [ + { + "bbox": [ + 83, + 165, + 528, + 177 + ], + "spans": [ + { + "bbox": [ + 83, + 165, + 528, + 177 + ], + "score": 1.0, + "content": "We evaluate Slalom on real Intel SGX hardware, on micro-benchmarks and a sample application (ImageNet", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 176, + 528, + 188 + ], + "spans": [ + { + "bbox": [ + 83, + 176, + 528, + 188 + ], + "score": 1.0, + "content": "inference with VGG16, MobileNet and ResNet models). Our aim is to show that, compared to a baseline that", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 186, + 518, + 200 + ], + "spans": [ + { + "bbox": [ + 82, + 186, + 518, + 200 + ], + "score": 1.0, + "content": "runs inference fully in the TEE, outsourcing linear layers increases performance without sacrificing security.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 82, + 165, + 528, + 200 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 213, + 186, + 224 + ], + "lines": [ + { + "bbox": [ + 83, + 213, + 187, + 225 + ], + "spans": [ + { + "bbox": [ + 83, + 213, + 187, + 225 + ], + "score": 1.0, + "content": "4.1 IMPLEMENTATION", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 84, + 234, + 528, + 300 + ], + "lines": [ + { + "bbox": [ + 82, + 234, + 528, + 247 + ], + "spans": [ + { + "bbox": [ + 82, + 234, + 528, + 247 + ], + "score": 1.0, + "content": "As enclaves cannot access most OS features (e.g., multi-threading, disk and driver IO), porting a large framework", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 244, + 528, + 258 + ], + "spans": [ + { + "bbox": [ + 82, + 244, + 463, + 258 + ], + "score": 1.0, + "content": "such as TensorFlow or Intel’s MKL-DNN to SGX is hard. Instead, we designed a lightweight", + "type": "text" + }, + { + "bbox": [ + 464, + 245, + 484, + 255 + ], + "score": 0.84, + "content": "\\mathrm { C } { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 244, + 528, + 258 + ], + "score": 1.0, + "content": "library for", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 255, + 528, + 268 + ], + "spans": [ + { + "bbox": [ + 82, + 255, + 528, + 268 + ], + "score": 1.0, + "content": "feed-forward networks based on Eigen, a linear-algebra library which TensorFlow uses as a CPU backend. Our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 265, + 530, + 281 + ], + "spans": [ + { + "bbox": [ + 82, + 265, + 530, + 281 + ], + "score": 1.0, + "content": "library implements the forward pass of DNNs, with support for dense layers, standard and separable convolutions,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 82, + 277, + 529, + 290 + ], + "spans": [ + { + "bbox": [ + 82, + 277, + 529, + 290 + ], + "score": 1.0, + "content": "pooling, and activations. When run on a native CPU (without SGX), its performance is comparable to TensorFlow", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 83, + 289, + 507, + 301 + ], + "spans": [ + { + "bbox": [ + 83, + 289, + 507, + 301 + ], + "score": 1.0, + "content": "on CPU (compiled with AVX). Our code is available at https://github.com/ftramer/slalom.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 82, + 234, + 530, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 305, + 528, + 362 + ], + "lines": [ + { + "bbox": [ + 82, + 304, + 529, + 319 + ], + "spans": [ + { + "bbox": [ + 82, + 304, + 218, + 319 + ], + "score": 1.0, + "content": "Slalom performs arithmetic over", + "type": "text" + }, + { + "bbox": [ + 219, + 306, + 231, + 318 + ], + "score": 0.9, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 304, + 250, + 319 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 250, + 305, + 302, + 317 + ], + "score": 0.9, + "content": "p = 2 ^ { 2 4 } - 3", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 304, + 529, + 319 + ], + "score": 1.0, + "content": ". For integrity, we apply Freivalds’ check twice to each", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 314, + 529, + 330 + ], + "spans": [ + { + "bbox": [ + 81, + 314, + 108, + 330 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 108, + 318, + 135, + 328 + ], + "score": 0.86, + "content": "k = 2 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 314, + 240, + 330 + ], + "score": 1.0, + "content": "), with random values from", + "type": "text" + }, + { + "bbox": [ + 241, + 317, + 306, + 330 + ], + "score": 0.89, + "content": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 314, + 529, + 330 + ], + "score": 1.0, + "content": ", to achieve 40 bits of statistical soundness per layer (see", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 329, + 529, + 341 + ], + "spans": [ + { + "bbox": [ + 83, + 329, + 411, + 341 + ], + "score": 1.0, + "content": "Appendix F for details on the selection of these parameters). For a 50-layer DNN,", + "type": "text" + }, + { + "bbox": [ + 412, + 329, + 420, + 339 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 329, + 529, + 341 + ], + "score": 1.0, + "content": "has a chance of less than 1", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 339, + 530, + 352 + ], + "spans": [ + { + "bbox": [ + 82, + 339, + 530, + 352 + ], + "score": 1.0, + "content": "in 22 billion of fooling the TEE on any incorrect DNN evaluation (a slightly better guarantee than in SafetyNets).", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 83, + 351, + 488, + 362 + ], + "spans": [ + { + "bbox": [ + 83, + 351, + 488, + 362 + ], + "score": 1.0, + "content": "For privacy, we use AES-CTR and AES-GCM to generate, encrypt and authenticate blinding factors.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 81, + 304, + 530, + 362 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 376, + 137, + 387 + ], + "lines": [ + { + "bbox": [ + 82, + 375, + 138, + 389 + ], + "spans": [ + { + "bbox": [ + 82, + 375, + 138, + 389 + ], + "score": 1.0, + "content": "4.2 SETUP", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 84, + 397, + 528, + 442 + ], + "lines": [ + { + "bbox": [ + 82, + 397, + 529, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 397, + 529, + 411 + ], + "score": 1.0, + "content": "We use an Intel Core i7-6700 Skylake 3.40GHz processor with 8GB of RAM, a desktop processor with SGX", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 407, + 529, + 421 + ], + "spans": [ + { + "bbox": [ + 82, + 407, + 529, + 421 + ], + "score": 1.0, + "content": "support. The outsourced computations are performed on a co-located Nvidia TITAN XP GPU. Due to a lack", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 418, + 529, + 433 + ], + "spans": [ + { + "bbox": [ + 82, + 418, + 529, + 433 + ], + "score": 1.0, + "content": "of native internal multi-threading in SGX, we run our TEE in a single CPU thread. We discuss challenges for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 83, + 430, + 438, + 443 + ], + "spans": [ + { + "bbox": [ + 83, + 430, + 438, + 443 + ], + "score": 1.0, + "content": "efficient parallelization in Appendix H. We evaluate Slalom on the following workloads:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 82, + 397, + 529, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 86, + 446, + 528, + 494 + ], + "lines": [ + { + "bbox": [ + 88, + 446, + 528, + 459 + ], + "spans": [ + { + "bbox": [ + 88, + 446, + 528, + 459 + ], + "score": 1.0, + "content": "• Synthetic benchmarks for matrix products, convolutions and separable convolutions, where we compare the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 96, + 458, + 466, + 470 + ], + "spans": [ + { + "bbox": [ + 96, + 458, + 466, + 470 + ], + "score": 1.0, + "content": "enclave’s running time for computing a linear operation to that of solely verifying the result.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 471, + 528, + 484 + ], + "spans": [ + { + "bbox": [ + 88, + 471, + 528, + 484 + ], + "score": 1.0, + "content": "• ImageNet (Deng et al., 2009) classification with VGG16 (Simonyan & Zisserman, 2014), MobileNet (Howard", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 95, + 481, + 529, + 496 + ], + "spans": [ + { + "bbox": [ + 95, + 481, + 529, + 496 + ], + "score": 1.0, + "content": "et al., 2017), and ResNet He et al. (2016) models (with fused Batch Normalization layers when applicable).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 88, + 446, + 529, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 499, + 528, + 555 + ], + "lines": [ + { + "bbox": [ + 83, + 499, + 528, + 511 + ], + "spans": [ + { + "bbox": [ + 83, + 499, + 528, + 511 + ], + "score": 1.0, + "content": "MobileNet, a model tailored for low compute devices, serves as a worst-case benchmark for Slalom, as the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 510, + 529, + 523 + ], + "spans": [ + { + "bbox": [ + 82, + 510, + 529, + 523 + ], + "score": 1.0, + "content": "model’s design aggressively minimizes the amount of computation performed per layer. We also consider a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 520, + 528, + 534 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 528, + 534 + ], + "score": 1.0, + "content": "“fused” variant of MobileNet with no activation between depthwise and pointwise convolutions. Removing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 532, + 529, + 545 + ], + "spans": [ + { + "bbox": [ + 82, + 532, + 529, + 545 + ], + "score": 1.0, + "content": "these activations improves convergence and accuracy (Chollet, 2017; Sheng et al., 2018), while also making the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 543, + 499, + 555 + ], + "spans": [ + { + "bbox": [ + 82, + 543, + 499, + 555 + ], + "score": 1.0, + "content": "network more outsourcing-friendly (i.e., it is possible to verify a separable convolution in a single step).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 82, + 499, + 529, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 559, + 527, + 582 + ], + "lines": [ + { + "bbox": [ + 83, + 558, + 528, + 573 + ], + "spans": [ + { + "bbox": [ + 83, + 558, + 528, + 573 + ], + "score": 1.0, + "content": "Our evaluation focuses on throughput (number of forward passes per second). We also discuss energy efficiency", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 571, + 529, + 584 + ], + "spans": [ + { + "bbox": [ + 82, + 571, + 470, + 584 + ], + "score": 1.0, + "content": "in Appendix C to account for hardware differences between our baseline (TEE only) and Slalom", + "type": "text" + }, + { + "bbox": [ + 471, + 571, + 524, + 582 + ], + "score": 0.52, + "content": "\\mathrm { ( T E E + G P U ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 524, + 571, + 529, + 584 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 82, + 558, + 529, + 584 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 597, + 147, + 608 + ], + "lines": [ + { + "bbox": [ + 82, + 595, + 149, + 610 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 149, + 610 + ], + "score": 1.0, + "content": "4.3 RESULTS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 612, + 530, + 626 + ], + "spans": [ + { + "bbox": [ + 82, + 612, + 530, + 626 + ], + "score": 1.0, + "content": "Micro-Benchmarks. Our micro-benchmark suite consists of square matrix products of increasing dimensions,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 624, + 529, + 636 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 529, + 636 + ], + "score": 1.0, + "content": "convolutional operations performed by VGG16, and separable convolutions performed by MobileNet. In all", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "cases, the data is pre-loaded inside an enclave, so we only measure the in-enclave execution time. Figure 2 plots", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 646, + 528, + 659 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 528, + 659 + ], + "score": 1.0, + "content": "the relative speedups of various verification strategies over the cost of computing the linear operation directly. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 656, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 528, + 670 + ], + "score": 1.0, + "content": "all cases, the baseline computation is performed in single-precision floating point, and the verification algorithms", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 667, + 392, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 667, + 392, + 681 + ], + "score": 1.0, + "content": "repeat Freivalds’ check so as to attain at least 40 bits of statistical soundness.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 82, + 612, + 530, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 85, + 138, + 524, + 249 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 85, + 138, + 524, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 85, + 138, + 524, + 249 + ], + "spans": [ + { + "bbox": [ + 85, + 138, + 524, + 249 + ], + "score": 0.968, + "type": "image", + "image_path": "e479efd0e691ddcb877c1c08f199812ca305e3227b9c63d4af690b286c7b0522.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 85, + 138, + 524, + 175.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 85, + 175.0, + 524, + 212.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 85, + 212.0, + 524, + 249.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 84, + 253, + 528, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 252, + 528, + 266 + ], + "spans": [ + { + "bbox": [ + 82, + 252, + 528, + 266 + ], + "score": 1.0, + "content": "Figure 2: Micro benchmarks on Intel SGX. We plot the relative speedup of verifying the result of a linear", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 263, + 529, + 277 + ], + "spans": [ + { + "bbox": [ + 82, + 263, + 529, + 277 + ], + "score": 1.0, + "content": "operator compared to computing it entirely in the enclave. The dotted line shows the throughput obtained for a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 275, + 433, + 288 + ], + "spans": [ + { + "bbox": [ + 83, + 275, + 433, + 288 + ], + "score": 1.0, + "content": "direct computation. “Fused” separable convolutions contain no intermediate activation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 84, + 295, + 528, + 329 + ], + "lines": [ + { + "bbox": [ + 82, + 293, + 528, + 310 + ], + "spans": [ + { + "bbox": [ + 82, + 293, + 398, + 310 + ], + "score": 1.0, + "content": "For square matrices of dimensions up to 2048, verifying an outsourced result is", + "type": "text" + }, + { + "bbox": [ + 399, + 296, + 413, + 306 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 293, + 424, + 310 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 424, + 296, + 438, + 306 + ], + "score": 0.86, + "content": "8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 293, + 528, + 310 + ], + "score": 1.0, + "content": "faster than computing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 305, + 528, + 320 + ], + "spans": [ + { + "bbox": [ + 82, + 305, + 528, + 320 + ], + "score": 1.0, + "content": "it. For larger matrices, we exceed the limit of SGX’s DRAM, so the enclave resorts to expensive paging which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 317, + 367, + 331 + ], + "spans": [ + { + "bbox": [ + 82, + 317, + 367, + 331 + ], + "score": 1.0, + "content": "drastically reduces performance both for computation and verification.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 84, + 334, + 528, + 390 + ], + "lines": [ + { + "bbox": [ + 82, + 334, + 529, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 334, + 529, + 347 + ], + "score": 1.0, + "content": "For convolutions (standard or separable), we achieve large savings with outsourcing if Freivalds’ algorithm is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 82, + 344, + 529, + 359 + ], + "spans": [ + { + "bbox": [ + 82, + 344, + 529, + 359 + ], + "score": 1.0, + "content": "applied with preprocessing. The savings get higher as the number of channels increases. Without preprocessing,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 82, + 356, + 529, + 369 + ], + "spans": [ + { + "bbox": [ + 82, + 356, + 268, + 369 + ], + "score": 1.0, + "content": "Freivalds’ algorithm results in savings when", + "type": "text" + }, + { + "bbox": [ + 268, + 358, + 284, + 367 + ], + "score": 0.86, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 356, + 529, + 369 + ], + "score": 1.0, + "content": "is large. Due to SGX’s small PRM, batched verification is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 83, + 368, + 528, + 380 + ], + "spans": [ + { + "bbox": [ + 83, + 368, + 528, + 380 + ], + "score": 1.0, + "content": "only effective for operators with small memory footprints. As expected, “truly” separable convolutions (with no", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 379, + 491, + 390 + ], + "spans": [ + { + "bbox": [ + 83, + 379, + 491, + 390 + ], + "score": 1.0, + "content": "intermediate non-linearity) are much faster to verify, as they can be viewed as a single linear operator.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 84, + 398, + 528, + 443 + ], + "lines": [ + { + "bbox": [ + 82, + 398, + 529, + 412 + ], + "spans": [ + { + "bbox": [ + 82, + 398, + 529, + 412 + ], + "score": 1.0, + "content": "Verifiable Inference. Figure 3 shows the throughout of end-to-end forward passes in two neural networks,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 408, + 529, + 424 + ], + "spans": [ + { + "bbox": [ + 82, + 408, + 529, + 424 + ], + "score": 1.0, + "content": "VGG16 and MobileNet. For integrity, we compare the secure baseline (executing the DNN fully in the enclave) to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 83, + 420, + 528, + 433 + ], + "spans": [ + { + "bbox": [ + 83, + 420, + 528, + 433 + ], + "score": 1.0, + "content": "two variants of the Slalom algorithm in Figure 1. The first (in red) applies Freivalds’ algorithm “on-the-fly”, while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 432, + 528, + 446 + ], + "spans": [ + { + "bbox": [ + 82, + 432, + 528, + 446 + ], + "score": 1.0, + "content": "the second more efficient variant (in orange) pre-computes part of Freivalds’ check as described in Section 3.2.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 84, + 448, + 528, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 448, + 529, + 462 + ], + "spans": [ + { + "bbox": [ + 82, + 448, + 529, + 462 + ], + "score": 1.0, + "content": "The VGG16 network is much larger (500MB) than SGX’s PRM. As a result, there is a large overhead on the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 460, + 527, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 510, + 473 + ], + "score": 1.0, + "content": "forward pass and verification without preprocessing. If the enclave securely stores preprocessed products", + "type": "text" + }, + { + "bbox": [ + 510, + 460, + 527, + 470 + ], + "score": 0.79, + "content": "W r", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 470, + 529, + 484 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 452, + 484 + ], + "score": 1.0, + "content": "for all network weights, we drastically reduce the memory footprint and achieve up to a", + "type": "text" + }, + { + "bbox": [ + 452, + 471, + 479, + 481 + ], + "score": 0.87, + "content": "2 0 . 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 470, + 529, + 484 + ], + "score": 1.0, + "content": "increase in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 481, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 529, + 495 + ], + "score": 1.0, + "content": "throughput. We also ran the lower-half of the VGG16 network (without the fully connected layers), a common", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 492, + 529, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 492, + 529, + 505 + ], + "score": 1.0, + "content": "approach for extracting features for transfer learning or object recognition (Liu et al., 2016). This part fits in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 502, + 495, + 516 + ], + "spans": [ + { + "bbox": [ + 82, + 502, + 495, + 516 + ], + "score": 1.0, + "content": "PRM, and we thus achieve higher throughput for in-enclave forward passes and on-the-fly verification.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 84, + 520, + 528, + 565 + ], + "lines": [ + { + "bbox": [ + 82, + 520, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 227, + 533 + ], + "score": 1.0, + "content": "For MobileNet, we achieve between", + "type": "text" + }, + { + "bbox": [ + 227, + 521, + 249, + 531 + ], + "score": 0.88, + "content": "3 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 520, + 266, + 533 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 521, + 289, + 531 + ], + "score": 0.87, + "content": "6 . 4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 520, + 528, + 533 + ], + "score": 1.0, + "content": "speedups when using Slalom for verifiable inference (for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 531, + 528, + 543 + ], + "spans": [ + { + "bbox": [ + 82, + 531, + 528, + 543 + ], + "score": 1.0, + "content": "standard or “fused” model, respectively). The speedups are smaller than for VGG16, as MobileNet performs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 542, + 528, + 555 + ], + "spans": [ + { + "bbox": [ + 83, + 542, + 528, + 555 + ], + "score": 1.0, + "content": "much fewer operations per layer (verifying a linear layer requires computing at least two multiplications for each", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 552, + 519, + 567 + ], + "spans": [ + { + "bbox": [ + 82, + 552, + 519, + 567 + ], + "score": 1.0, + "content": "input and output. The closer the forward pass gets to that lower-bound, the less we can save by outsourcing).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 84, + 574, + 528, + 641 + ], + "lines": [ + { + "bbox": [ + 83, + 573, + 528, + 587 + ], + "spans": [ + { + "bbox": [ + 83, + 573, + 528, + 587 + ], + "score": 1.0, + "content": "Private Inference. We further benchmark the cost of private DNN inference, where inputs of outsourced", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 583, + 529, + 599 + ], + "spans": [ + { + "bbox": [ + 82, + 583, + 529, + 599 + ], + "score": 1.0, + "content": "linear layers are additionally blinded. Blinding and unblinding each layer’s inputs and outputs is costly,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 595, + 528, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 528, + 609 + ], + "score": 1.0, + "content": "especially in SGX due to the extra in-enclave memory reads and writes. Nevertheless, for VGG16 and the fused", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 83, + 607, + 529, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 607, + 444, + 620 + ], + "score": 1.0, + "content": "MobileNet variant without intermediate activations, we achieve respective speedups of", + "type": "text" + }, + { + "bbox": [ + 444, + 607, + 471, + 618 + ], + "score": 0.87, + "content": "1 3 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 607, + 490, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 490, + 607, + 512, + 618 + ], + "score": 0.87, + "content": "5 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 513, + 607, + 529, + 620 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 326, + 631 + ], + "score": 1.0, + "content": "private outsourcing (in black in Figure 3), and speedups of", + "type": "text" + }, + { + "bbox": [ + 327, + 618, + 353, + 629 + ], + "score": 0.88, + "content": "1 0 . 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 617, + 372, + 631 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 618, + 394, + 628 + ], + "score": 0.88, + "content": "4 . 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "when also ensuring integrity (in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 628, + 470, + 643 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 470, + 643 + ], + "score": 1.0, + "content": "purple). For this benchmark, the precomputed unblinding factor are stored in untrusted memory.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 85, + 646, + 527, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 644, + 529, + 660 + ], + "spans": [ + { + "bbox": [ + 82, + 644, + 529, + 660 + ], + "score": 1.0, + "content": "We performed the same experiments on a standard CPU (i.e., without SGX) and find that Slalom’s improvements", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 656, + 529, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 529, + 669 + ], + "score": 1.0, + "content": "are even higher in non-resource-constrained or multi-threaded environments (see Appendix G-H). Slalom’s", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 668, + 471, + 680 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 471, + 680 + ], + "score": 1.0, + "content": "improvements over the baseline also hold when accounting for energy efficiency (see Section C).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 85, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 285, + 707 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 85, + 138, + 524, + 249 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 85, + 138, + 524, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 85, + 138, + 524, + 249 + ], + "spans": [ + { + "bbox": [ + 85, + 138, + 524, + 249 + ], + "score": 0.968, + "type": "image", + "image_path": "e479efd0e691ddcb877c1c08f199812ca305e3227b9c63d4af690b286c7b0522.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 85, + 138, + 524, + 175.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 85, + 175.0, + 524, + 212.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 85, + 212.0, + 524, + 249.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 84, + 253, + 528, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 252, + 528, + 266 + ], + "spans": [ + { + "bbox": [ + 82, + 252, + 528, + 266 + ], + "score": 1.0, + "content": "Figure 2: Micro benchmarks on Intel SGX. We plot the relative speedup of verifying the result of a linear", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 263, + 529, + 277 + ], + "spans": [ + { + "bbox": [ + 82, + 263, + 529, + 277 + ], + "score": 1.0, + "content": "operator compared to computing it entirely in the enclave. The dotted line shows the throughput obtained for a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 275, + 433, + 288 + ], + "spans": [ + { + "bbox": [ + 83, + 275, + 433, + 288 + ], + "score": 1.0, + "content": "direct computation. “Fused” separable convolutions contain no intermediate activation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 84, + 295, + 528, + 329 + ], + "lines": [ + { + "bbox": [ + 82, + 293, + 528, + 310 + ], + "spans": [ + { + "bbox": [ + 82, + 293, + 398, + 310 + ], + "score": 1.0, + "content": "For square matrices of dimensions up to 2048, verifying an outsourced result is", + "type": "text" + }, + { + "bbox": [ + 399, + 296, + 413, + 306 + ], + "score": 0.87, + "content": "4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 293, + 424, + 310 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 424, + 296, + 438, + 306 + ], + "score": 0.86, + "content": "8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 293, + 528, + 310 + ], + "score": 1.0, + "content": "faster than computing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 305, + 528, + 320 + ], + "spans": [ + { + "bbox": [ + 82, + 305, + 528, + 320 + ], + "score": 1.0, + "content": "it. For larger matrices, we exceed the limit of SGX’s DRAM, so the enclave resorts to expensive paging which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 317, + 367, + 331 + ], + "spans": [ + { + "bbox": [ + 82, + 317, + 367, + 331 + ], + "score": 1.0, + "content": "drastically reduces performance both for computation and verification.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 82, + 293, + 528, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 334, + 528, + 390 + ], + "lines": [ + { + "bbox": [ + 82, + 334, + 529, + 347 + ], + "spans": [ + { + "bbox": [ + 82, + 334, + 529, + 347 + ], + "score": 1.0, + "content": "For convolutions (standard or separable), we achieve large savings with outsourcing if Freivalds’ algorithm is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 82, + 344, + 529, + 359 + ], + "spans": [ + { + "bbox": [ + 82, + 344, + 529, + 359 + ], + "score": 1.0, + "content": "applied with preprocessing. The savings get higher as the number of channels increases. Without preprocessing,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 82, + 356, + 529, + 369 + ], + "spans": [ + { + "bbox": [ + 82, + 356, + 268, + 369 + ], + "score": 1.0, + "content": "Freivalds’ algorithm results in savings when", + "type": "text" + }, + { + "bbox": [ + 268, + 358, + 284, + 367 + ], + "score": 0.86, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 356, + 529, + 369 + ], + "score": 1.0, + "content": "is large. Due to SGX’s small PRM, batched verification is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 83, + 368, + 528, + 380 + ], + "spans": [ + { + "bbox": [ + 83, + 368, + 528, + 380 + ], + "score": 1.0, + "content": "only effective for operators with small memory footprints. As expected, “truly” separable convolutions (with no", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 83, + 379, + 491, + 390 + ], + "spans": [ + { + "bbox": [ + 83, + 379, + 491, + 390 + ], + "score": 1.0, + "content": "intermediate non-linearity) are much faster to verify, as they can be viewed as a single linear operator.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 82, + 334, + 529, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 398, + 528, + 443 + ], + "lines": [ + { + "bbox": [ + 82, + 398, + 529, + 412 + ], + "spans": [ + { + "bbox": [ + 82, + 398, + 529, + 412 + ], + "score": 1.0, + "content": "Verifiable Inference. Figure 3 shows the throughout of end-to-end forward passes in two neural networks,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 408, + 529, + 424 + ], + "spans": [ + { + "bbox": [ + 82, + 408, + 529, + 424 + ], + "score": 1.0, + "content": "VGG16 and MobileNet. For integrity, we compare the secure baseline (executing the DNN fully in the enclave) to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 83, + 420, + 528, + 433 + ], + "spans": [ + { + "bbox": [ + 83, + 420, + 528, + 433 + ], + "score": 1.0, + "content": "two variants of the Slalom algorithm in Figure 1. The first (in red) applies Freivalds’ algorithm “on-the-fly”, while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 432, + 528, + 446 + ], + "spans": [ + { + "bbox": [ + 82, + 432, + 528, + 446 + ], + "score": 1.0, + "content": "the second more efficient variant (in orange) pre-computes part of Freivalds’ check as described in Section 3.2.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 82, + 398, + 529, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 448, + 528, + 515 + ], + "lines": [ + { + "bbox": [ + 82, + 448, + 529, + 462 + ], + "spans": [ + { + "bbox": [ + 82, + 448, + 529, + 462 + ], + "score": 1.0, + "content": "The VGG16 network is much larger (500MB) than SGX’s PRM. As a result, there is a large overhead on the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 460, + 527, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 510, + 473 + ], + "score": 1.0, + "content": "forward pass and verification without preprocessing. If the enclave securely stores preprocessed products", + "type": "text" + }, + { + "bbox": [ + 510, + 460, + 527, + 470 + ], + "score": 0.79, + "content": "W r", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 470, + 529, + 484 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 452, + 484 + ], + "score": 1.0, + "content": "for all network weights, we drastically reduce the memory footprint and achieve up to a", + "type": "text" + }, + { + "bbox": [ + 452, + 471, + 479, + 481 + ], + "score": 0.87, + "content": "2 0 . 3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 470, + 529, + 484 + ], + "score": 1.0, + "content": "increase in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 481, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 529, + 495 + ], + "score": 1.0, + "content": "throughput. We also ran the lower-half of the VGG16 network (without the fully connected layers), a common", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 492, + 529, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 492, + 529, + 505 + ], + "score": 1.0, + "content": "approach for extracting features for transfer learning or object recognition (Liu et al., 2016). This part fits in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 502, + 495, + 516 + ], + "spans": [ + { + "bbox": [ + 82, + 502, + 495, + 516 + ], + "score": 1.0, + "content": "PRM, and we thus achieve higher throughput for in-enclave forward passes and on-the-fly verification.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 82, + 448, + 529, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 520, + 528, + 565 + ], + "lines": [ + { + "bbox": [ + 82, + 520, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 227, + 533 + ], + "score": 1.0, + "content": "For MobileNet, we achieve between", + "type": "text" + }, + { + "bbox": [ + 227, + 521, + 249, + 531 + ], + "score": 0.88, + "content": "3 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 520, + 266, + 533 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 521, + 289, + 531 + ], + "score": 0.87, + "content": "6 . 4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 520, + 528, + 533 + ], + "score": 1.0, + "content": "speedups when using Slalom for verifiable inference (for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 531, + 528, + 543 + ], + "spans": [ + { + "bbox": [ + 82, + 531, + 528, + 543 + ], + "score": 1.0, + "content": "standard or “fused” model, respectively). The speedups are smaller than for VGG16, as MobileNet performs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 542, + 528, + 555 + ], + "spans": [ + { + "bbox": [ + 83, + 542, + 528, + 555 + ], + "score": 1.0, + "content": "much fewer operations per layer (verifying a linear layer requires computing at least two multiplications for each", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 552, + 519, + 567 + ], + "spans": [ + { + "bbox": [ + 82, + 552, + 519, + 567 + ], + "score": 1.0, + "content": "input and output. The closer the forward pass gets to that lower-bound, the less we can save by outsourcing).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 82, + 520, + 528, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 574, + 528, + 641 + ], + "lines": [ + { + "bbox": [ + 83, + 573, + 528, + 587 + ], + "spans": [ + { + "bbox": [ + 83, + 573, + 528, + 587 + ], + "score": 1.0, + "content": "Private Inference. We further benchmark the cost of private DNN inference, where inputs of outsourced", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 583, + 529, + 599 + ], + "spans": [ + { + "bbox": [ + 82, + 583, + 529, + 599 + ], + "score": 1.0, + "content": "linear layers are additionally blinded. Blinding and unblinding each layer’s inputs and outputs is costly,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 595, + 528, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 528, + 609 + ], + "score": 1.0, + "content": "especially in SGX due to the extra in-enclave memory reads and writes. Nevertheless, for VGG16 and the fused", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 83, + 607, + 529, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 607, + 444, + 620 + ], + "score": 1.0, + "content": "MobileNet variant without intermediate activations, we achieve respective speedups of", + "type": "text" + }, + { + "bbox": [ + 444, + 607, + 471, + 618 + ], + "score": 0.87, + "content": "1 3 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 607, + 490, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 490, + 607, + 512, + 618 + ], + "score": 0.87, + "content": "5 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 513, + 607, + 529, + 620 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 326, + 631 + ], + "score": 1.0, + "content": "private outsourcing (in black in Figure 3), and speedups of", + "type": "text" + }, + { + "bbox": [ + 327, + 618, + 353, + 629 + ], + "score": 0.88, + "content": "1 0 . 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 617, + 372, + 631 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 618, + 394, + 628 + ], + "score": 0.88, + "content": "4 . 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "when also ensuring integrity (in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 628, + 470, + 643 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 470, + 643 + ], + "score": 1.0, + "content": "purple). For this benchmark, the precomputed unblinding factor are stored in untrusted memory.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5, + "bbox_fs": [ + 82, + 573, + 529, + 643 + ] + }, + { + "type": "text", + "bbox": [ + 85, + 646, + 527, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 644, + 529, + 660 + ], + "spans": [ + { + "bbox": [ + 82, + 644, + 529, + 660 + ], + "score": 1.0, + "content": "We performed the same experiments on a standard CPU (i.e., without SGX) and find that Slalom’s improvements", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 656, + 529, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 529, + 669 + ], + "score": 1.0, + "content": "are even higher in non-resource-constrained or multi-threaded environments (see Appendix G-H). Slalom’s", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 668, + 471, + 680 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 471, + 680 + ], + "score": 1.0, + "content": "improvements over the baseline also hold when accounting for energy efficiency (see Section C).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 82, + 644, + 529, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 85, + 138, + 527, + 216 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 85, + 138, + 527, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 85, + 138, + 527, + 216 + ], + "spans": [ + { + "bbox": [ + 85, + 138, + 527, + 216 + ], + "score": 0.964, + "type": "image", + "image_path": "5df56a4274ed6e233912c5524664ae350b78563790ca22e417ac562aad5df2f1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 85, + 138, + 527, + 164.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 85, + 164.0, + 527, + 190.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 85, + 190.0, + 527, + 216.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 83, + 223, + 528, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 83, + 224, + 528, + 236 + ], + "spans": [ + { + "bbox": [ + 83, + 224, + 528, + 236 + ], + "score": 1.0, + "content": "Figure 3: Verifiable and private inference with Intel SGX. We show results for VGG16, VGG16 without the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 235, + 529, + 248 + ], + "spans": [ + { + "bbox": [ + 82, + 235, + 529, + 248 + ], + "score": 1.0, + "content": "fully connected layers, MobileNet, and a fused MobileNet variant with no intermediate activation for separable", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 246, + 528, + 258 + ], + "spans": [ + { + "bbox": [ + 83, + 246, + 528, + 258 + ], + "score": 1.0, + "content": "convolutions. We compare the baseline of fully executing the DNN in the enclave (blue) to different secure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 257, + 529, + 270 + ], + "spans": [ + { + "bbox": [ + 82, + 257, + 529, + 270 + ], + "score": 1.0, + "content": "outsourcing schemes: integrity with Freivalds (red); integrity with Freivalds and precomputed secrets (yellow);", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 268, + 291, + 281 + ], + "spans": [ + { + "bbox": [ + 82, + 268, + 291, + 281 + ], + "score": 1.0, + "content": "privacy only (black); privacy and integrity (purple).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 84, + 294, + 528, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 84, + 294, + 528, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 84, + 294, + 528, + 362 + ], + "spans": [ + { + "bbox": [ + 84, + 294, + 528, + 362 + ], + "score": 0.967, + "type": "image", + "image_path": "9ceb8a1cf9a5c8503bd599b1f66c4bf349f3d490915536e0c23e1b7269842915.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 84, + 294, + 528, + 316.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 84, + 316.6666666666667, + 528, + 339.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 84, + 339.33333333333337, + 528, + 362.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 82, + 367, + 528, + 390 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 82, + 366, + 528, + 380 + ], + "spans": [ + { + "bbox": [ + 82, + 366, + 528, + 380 + ], + "score": 1.0, + "content": "Figure 4: Secure outsourcing of ResNet models with Intel SGX. We compare the baseline of fully executing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 378, + 525, + 392 + ], + "spans": [ + { + "bbox": [ + 82, + 378, + 525, + 392 + ], + "score": 1.0, + "content": "the DNN in the enclave (blue) to secure outsourcing with integrity (yellow) and privacy and integrity (purple).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 10.25 + }, + { + "type": "text", + "bbox": [ + 84, + 414, + 528, + 503 + ], + "lines": [ + { + "bbox": [ + 83, + 415, + 528, + 426 + ], + "spans": [ + { + "bbox": [ + 83, + 415, + 528, + 426 + ], + "score": 1.0, + "content": "Extending Slalom to Deep Residual Networks. The Slalom algorithm in Figure 1 and our evaluations above", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 425, + 529, + 439 + ], + "spans": [ + { + "bbox": [ + 82, + 425, + 529, + 439 + ], + "score": 1.0, + "content": "focus on feed-forward architectures. Extending Slalom to more complex DNNs is quite simple. To illustrate, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 437, + 529, + 450 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 405, + 450 + ], + "score": 1.0, + "content": "consider the family of ResNet models (He et al., 2016), which use residual blocks", + "type": "text" + }, + { + "bbox": [ + 405, + 437, + 509, + 448 + ], + "score": 0.91, + "content": "f ( x ) = \\sigma ( f _ { 1 } ( x ) + f _ { 2 } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 437, + 529, + 450 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 447, + 528, + 461 + ], + "spans": [ + { + "bbox": [ + 82, + 447, + 214, + 461 + ], + "score": 1.0, + "content": "merge two feed-forward “paths”", + "type": "text" + }, + { + "bbox": [ + 215, + 448, + 225, + 459 + ], + "score": 0.87, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 447, + 243, + 461 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 244, + 448, + 254, + 459 + ], + "score": 0.88, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 447, + 341, + 461 + ], + "score": 1.0, + "content": "into a final activation", + "type": "text" + }, + { + "bbox": [ + 342, + 450, + 349, + 457 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 447, + 439, + 461 + ], + "score": 1.0, + "content": ". To verify integrity of", + "type": "text" + }, + { + "bbox": [ + 439, + 448, + 459, + 459 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 447, + 528, + 461 + ], + "score": 1.0, + "content": ", the TEE simply", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 83, + 459, + 528, + 471 + ], + "spans": [ + { + "bbox": [ + 83, + 459, + 187, + 471 + ], + "score": 1.0, + "content": "verifies all linear layers in", + "type": "text" + }, + { + "bbox": [ + 187, + 459, + 198, + 470 + ], + "score": 0.88, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 459, + 215, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 460, + 226, + 470 + ], + "score": 0.87, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 459, + 283, + 471 + ], + "score": 1.0, + "content": "and computes", + "type": "text" + }, + { + "bbox": [ + 283, + 461, + 291, + 469 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 459, + 528, + 471 + ], + "score": 1.0, + "content": "directly. For privacy, the TEE applies the interactive Slalom", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 81, + 468, + 529, + 484 + ], + "spans": [ + { + "bbox": [ + 81, + 468, + 236, + 484 + ], + "score": 1.0, + "content": "protocol in Figure 1 (right) in turn to", + "type": "text" + }, + { + "bbox": [ + 236, + 470, + 247, + 481 + ], + "score": 0.88, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 468, + 265, + 484 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 470, + 276, + 481 + ], + "score": 0.89, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 468, + 359, + 484 + ], + "score": 1.0, + "content": ", and then computes", + "type": "text" + }, + { + "bbox": [ + 359, + 471, + 366, + 479 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 468, + 529, + 484 + ], + "score": 1.0, + "content": ". The results for the privacy-preserving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 480, + 529, + 494 + ], + "spans": [ + { + "bbox": [ + 82, + 480, + 529, + 494 + ], + "score": 1.0, + "content": "Slalom variant in Figure 4 use a preliminary implementation that performs all required operations—and thus", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 491, + 475, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 491, + 475, + 505 + ], + "score": 1.0, + "content": "provides meaningful performance numbers—but without properly constructed unblinding factors.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 83, + 508, + 528, + 575 + ], + "lines": [ + { + "bbox": [ + 82, + 507, + 529, + 521 + ], + "spans": [ + { + "bbox": [ + 82, + 507, + 529, + 521 + ], + "score": 1.0, + "content": "We use the ResNet implementation from Keras Chollet et al. (2015), which contains a pre-trained 50-layer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 518, + 403, + 532 + ], + "score": 1.0, + "content": "variant. For this model, we find that our quantization scheme results in less than a", + "type": "text" + }, + { + "bbox": [ + 403, + 519, + 426, + 530 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 518, + 529, + 532 + ], + "score": 1.0, + "content": "decrease in accuracy (see", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 529, + 530, + 543 + ], + "spans": [ + { + "bbox": [ + 82, + 529, + 530, + 543 + ], + "score": 1.0, + "content": "Table 3). For other variants (i.e., with 18, 34, 101 and 152 layers) we compute throughput on untrained models.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "score": 1.0, + "content": "Figure 4 shows benchmarks for different ResNet variants when executed fully in the enclave (our baseline) as", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 551, + 527, + 565 + ], + "spans": [ + { + "bbox": [ + 82, + 551, + 466, + 565 + ], + "score": 1.0, + "content": "well as secure outsourcing with integrity or privacy and integrity. For all models, we achieve", + "type": "text" + }, + { + "bbox": [ + 466, + 552, + 488, + 563 + ], + "score": 0.87, + "content": "6 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 551, + 500, + 565 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 500, + 552, + 527, + 563 + ], + "score": 0.85, + "content": "1 4 . 4 \\times", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 561, + 416, + 577 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 233, + 577 + ], + "score": 1.0, + "content": "speedups for verifiable inference and", + "type": "text" + }, + { + "bbox": [ + 233, + 564, + 255, + 574 + ], + "score": 0.85, + "content": "4 . 4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 561, + 266, + 577 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 266, + 564, + 288, + 574 + ], + "score": 0.9, + "content": "9 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 561, + 416, + 577 + ], + "score": 1.0, + "content": "speedups when adding privacy.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 83, + 579, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 579, + 529, + 592 + ], + "spans": [ + { + "bbox": [ + 82, + 579, + 529, + 592 + ], + "score": 1.0, + "content": "Comparing results for different models is illustrative of how Slalom’s savings scale with model size and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 591, + 529, + 604 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 417, + 604 + ], + "score": 1.0, + "content": "architectural design choices. The 18 and 34-layer ResNets use convolutions with", + "type": "text" + }, + { + "bbox": [ + 417, + 591, + 441, + 602 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 591, + 529, + 604 + ], + "score": 1.0, + "content": "kernels, whereas the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 602, + 528, + 614 + ], + "spans": [ + { + "bbox": [ + 83, + 602, + 528, + 614 + ], + "score": 1.0, + "content": "larger models mainly use pointwise convolutions. As shown in Table 2 verifying a convolution is about a factor", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 83, + 612, + 529, + 627 + ], + "spans": [ + { + "bbox": [ + 83, + 613, + 116, + 624 + ], + "score": 0.9, + "content": "k ^ { 2 } \\cdot c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 612, + 529, + 627 + ], + "score": 1.0, + "content": "than computing it, which explains the higher savings for models that use convolutions with large kernel", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 624, + 529, + 637 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 529, + 637 + ], + "score": 1.0, + "content": "windows. When adding more layers to a model, we expect Slalom’s speedup over the baseline to remain constant", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 81, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 81, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "(e.g., if we duplicate each layer, the baseline computation and the verification should both take twice as long). Yet", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 81, + 645, + 529, + 660 + ], + "spans": [ + { + "bbox": [ + 81, + 645, + 529, + 660 + ], + "score": 1.0, + "content": "we find that Slalom’s speedups usually increase as layers get added to the ResNet architecture. This is because", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 657, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 657, + 528, + 670 + ], + "score": 1.0, + "content": "the deeper ResNet variants are obtained by duplicating layers towards the end of the pipeline, which have the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 667, + 399, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 399, + 681 + ], + "score": 1.0, + "content": "largest number of channels and for which Slalom achieves the highest savings.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 85, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 699, + 286, + 707 + ], + "lines": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "spans": [ + { + "bbox": [ + 279, + 698, + 286, + 709 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 85, + 138, + 527, + 216 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 85, + 138, + 527, + 216 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 85, + 138, + 527, + 216 + ], + "spans": [ + { + "bbox": [ + 85, + 138, + 527, + 216 + ], + "score": 0.964, + "type": "image", + "image_path": "5df56a4274ed6e233912c5524664ae350b78563790ca22e417ac562aad5df2f1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 85, + 138, + 527, + 164.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 85, + 164.0, + 527, + 190.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 85, + 190.0, + 527, + 216.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 83, + 223, + 528, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 83, + 224, + 528, + 236 + ], + "spans": [ + { + "bbox": [ + 83, + 224, + 528, + 236 + ], + "score": 1.0, + "content": "Figure 3: Verifiable and private inference with Intel SGX. We show results for VGG16, VGG16 without the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 235, + 529, + 248 + ], + "spans": [ + { + "bbox": [ + 82, + 235, + 529, + 248 + ], + "score": 1.0, + "content": "fully connected layers, MobileNet, and a fused MobileNet variant with no intermediate activation for separable", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 246, + 528, + 258 + ], + "spans": [ + { + "bbox": [ + 83, + 246, + 528, + 258 + ], + "score": 1.0, + "content": "convolutions. We compare the baseline of fully executing the DNN in the enclave (blue) to different secure", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 257, + 529, + 270 + ], + "spans": [ + { + "bbox": [ + 82, + 257, + 529, + 270 + ], + "score": 1.0, + "content": "outsourcing schemes: integrity with Freivalds (red); integrity with Freivalds and precomputed secrets (yellow);", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 268, + 291, + 281 + ], + "spans": [ + { + "bbox": [ + 82, + 268, + 291, + 281 + ], + "score": 1.0, + "content": "privacy only (black); privacy and integrity (purple).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 84, + 294, + 528, + 362 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 84, + 294, + 528, + 362 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 84, + 294, + 528, + 362 + ], + "spans": [ + { + "bbox": [ + 84, + 294, + 528, + 362 + ], + "score": 0.967, + "type": "image", + "image_path": "9ceb8a1cf9a5c8503bd599b1f66c4bf349f3d490915536e0c23e1b7269842915.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 84, + 294, + 528, + 316.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 84, + 316.6666666666667, + 528, + 339.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 84, + 339.33333333333337, + 528, + 362.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 82, + 367, + 528, + 390 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 82, + 366, + 528, + 380 + ], + "spans": [ + { + "bbox": [ + 82, + 366, + 528, + 380 + ], + "score": 1.0, + "content": "Figure 4: Secure outsourcing of ResNet models with Intel SGX. We compare the baseline of fully executing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 378, + 525, + 392 + ], + "spans": [ + { + "bbox": [ + 82, + 378, + 525, + 392 + ], + "score": 1.0, + "content": "the DNN in the enclave (blue) to secure outsourcing with integrity (yellow) and privacy and integrity (purple).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 10.25 + }, + { + "type": "text", + "bbox": [ + 84, + 414, + 528, + 503 + ], + "lines": [ + { + "bbox": [ + 83, + 415, + 528, + 426 + ], + "spans": [ + { + "bbox": [ + 83, + 415, + 528, + 426 + ], + "score": 1.0, + "content": "Extending Slalom to Deep Residual Networks. The Slalom algorithm in Figure 1 and our evaluations above", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 425, + 529, + 439 + ], + "spans": [ + { + "bbox": [ + 82, + 425, + 529, + 439 + ], + "score": 1.0, + "content": "focus on feed-forward architectures. Extending Slalom to more complex DNNs is quite simple. To illustrate, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 437, + 529, + 450 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 405, + 450 + ], + "score": 1.0, + "content": "consider the family of ResNet models (He et al., 2016), which use residual blocks", + "type": "text" + }, + { + "bbox": [ + 405, + 437, + 509, + 448 + ], + "score": 0.91, + "content": "f ( x ) = \\sigma ( f _ { 1 } ( x ) + f _ { 2 } ( x ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 437, + 529, + 450 + ], + "score": 1.0, + "content": "that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 447, + 528, + 461 + ], + "spans": [ + { + "bbox": [ + 82, + 447, + 214, + 461 + ], + "score": 1.0, + "content": "merge two feed-forward “paths”", + "type": "text" + }, + { + "bbox": [ + 215, + 448, + 225, + 459 + ], + "score": 0.87, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 447, + 243, + 461 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 244, + 448, + 254, + 459 + ], + "score": 0.88, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 447, + 341, + 461 + ], + "score": 1.0, + "content": "into a final activation", + "type": "text" + }, + { + "bbox": [ + 342, + 450, + 349, + 457 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 447, + 439, + 461 + ], + "score": 1.0, + "content": ". To verify integrity of", + "type": "text" + }, + { + "bbox": [ + 439, + 448, + 459, + 459 + ], + "score": 0.91, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 447, + 528, + 461 + ], + "score": 1.0, + "content": ", the TEE simply", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 83, + 459, + 528, + 471 + ], + "spans": [ + { + "bbox": [ + 83, + 459, + 187, + 471 + ], + "score": 1.0, + "content": "verifies all linear layers in", + "type": "text" + }, + { + "bbox": [ + 187, + 459, + 198, + 470 + ], + "score": 0.88, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 459, + 215, + 471 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 216, + 460, + 226, + 470 + ], + "score": 0.87, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 459, + 283, + 471 + ], + "score": 1.0, + "content": "and computes", + "type": "text" + }, + { + "bbox": [ + 283, + 461, + 291, + 469 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 459, + 528, + 471 + ], + "score": 1.0, + "content": "directly. For privacy, the TEE applies the interactive Slalom", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 81, + 468, + 529, + 484 + ], + "spans": [ + { + "bbox": [ + 81, + 468, + 236, + 484 + ], + "score": 1.0, + "content": "protocol in Figure 1 (right) in turn to", + "type": "text" + }, + { + "bbox": [ + 236, + 470, + 247, + 481 + ], + "score": 0.88, + "content": "f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 468, + 265, + 484 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 470, + 276, + 481 + ], + "score": 0.89, + "content": "f _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 468, + 359, + 484 + ], + "score": 1.0, + "content": ", and then computes", + "type": "text" + }, + { + "bbox": [ + 359, + 471, + 366, + 479 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 468, + 529, + 484 + ], + "score": 1.0, + "content": ". The results for the privacy-preserving", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 480, + 529, + 494 + ], + "spans": [ + { + "bbox": [ + 82, + 480, + 529, + 494 + ], + "score": 1.0, + "content": "Slalom variant in Figure 4 use a preliminary implementation that performs all required operations—and thus", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 491, + 475, + 505 + ], + "spans": [ + { + "bbox": [ + 82, + 491, + 475, + 505 + ], + "score": 1.0, + "content": "provides meaningful performance numbers—but without properly constructed unblinding factors.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 81, + 415, + 529, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 508, + 528, + 575 + ], + "lines": [ + { + "bbox": [ + 82, + 507, + 529, + 521 + ], + "spans": [ + { + "bbox": [ + 82, + 507, + 529, + 521 + ], + "score": 1.0, + "content": "We use the ResNet implementation from Keras Chollet et al. (2015), which contains a pre-trained 50-layer", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 518, + 403, + 532 + ], + "score": 1.0, + "content": "variant. For this model, we find that our quantization scheme results in less than a", + "type": "text" + }, + { + "bbox": [ + 403, + 519, + 426, + 530 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 518, + 529, + 532 + ], + "score": 1.0, + "content": "decrease in accuracy (see", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 529, + 530, + 543 + ], + "spans": [ + { + "bbox": [ + 82, + 529, + 530, + 543 + ], + "score": 1.0, + "content": "Table 3). For other variants (i.e., with 18, 34, 101 and 152 layers) we compute throughput on untrained models.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "score": 1.0, + "content": "Figure 4 shows benchmarks for different ResNet variants when executed fully in the enclave (our baseline) as", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 551, + 527, + 565 + ], + "spans": [ + { + "bbox": [ + 82, + 551, + 466, + 565 + ], + "score": 1.0, + "content": "well as secure outsourcing with integrity or privacy and integrity. For all models, we achieve", + "type": "text" + }, + { + "bbox": [ + 466, + 552, + 488, + 563 + ], + "score": 0.87, + "content": "6 . 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 551, + 500, + 565 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 500, + 552, + 527, + 563 + ], + "score": 0.85, + "content": "1 4 . 4 \\times", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 561, + 416, + 577 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 233, + 577 + ], + "score": 1.0, + "content": "speedups for verifiable inference and", + "type": "text" + }, + { + "bbox": [ + 233, + 564, + 255, + 574 + ], + "score": 0.85, + "content": "4 . 4 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 561, + 266, + 577 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 266, + 564, + 288, + 574 + ], + "score": 0.9, + "content": "9 . 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 561, + 416, + 577 + ], + "score": 1.0, + "content": "speedups when adding privacy.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 82, + 507, + 530, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 579, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 579, + 529, + 592 + ], + "spans": [ + { + "bbox": [ + 82, + 579, + 529, + 592 + ], + "score": 1.0, + "content": "Comparing results for different models is illustrative of how Slalom’s savings scale with model size and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 591, + 529, + 604 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 417, + 604 + ], + "score": 1.0, + "content": "architectural design choices. The 18 and 34-layer ResNets use convolutions with", + "type": "text" + }, + { + "bbox": [ + 417, + 591, + 441, + 602 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 591, + 529, + 604 + ], + "score": 1.0, + "content": "kernels, whereas the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 602, + 528, + 614 + ], + "spans": [ + { + "bbox": [ + 83, + 602, + 528, + 614 + ], + "score": 1.0, + "content": "larger models mainly use pointwise convolutions. As shown in Table 2 verifying a convolution is about a factor", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 83, + 612, + 529, + 627 + ], + "spans": [ + { + "bbox": [ + 83, + 613, + 116, + 624 + ], + "score": 0.9, + "content": "k ^ { 2 } \\cdot c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 612, + 529, + 627 + ], + "score": 1.0, + "content": "than computing it, which explains the higher savings for models that use convolutions with large kernel", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 624, + 529, + 637 + ], + "spans": [ + { + "bbox": [ + 82, + 624, + 529, + 637 + ], + "score": 1.0, + "content": "windows. When adding more layers to a model, we expect Slalom’s speedup over the baseline to remain constant", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 81, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 81, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "(e.g., if we duplicate each layer, the baseline computation and the verification should both take twice as long). Yet", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 81, + 645, + 529, + 660 + ], + "spans": [ + { + "bbox": [ + 81, + 645, + 529, + 660 + ], + "score": 1.0, + "content": "we find that Slalom’s speedups usually increase as layers get added to the ResNet architecture. This is because", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 657, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 657, + 528, + 670 + ], + "score": 1.0, + "content": "the deeper ResNet variants are obtained by duplicating layers towards the end of the pipeline, which have the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 667, + 399, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 399, + 681 + ], + "score": 1.0, + "content": "largest number of channels and for which Slalom achieves the highest savings.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31, + "bbox_fs": [ + 81, + 579, + 529, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 84, + 138, + 390, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 392, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 392, + 154 + ], + "score": 1.0, + "content": "5 CHALLENGES FOR VERIFIABLE AND PRIVATE TRAINING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 164, + 529, + 198 + ], + "lines": [ + { + "bbox": [ + 83, + 164, + 528, + 176 + ], + "spans": [ + { + "bbox": [ + 83, + 164, + 528, + 176 + ], + "score": 1.0, + "content": "Our techniques for secure outsourcing of DNN inference might also apply to DNN training. Indeed, a backward", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 174, + 530, + 189 + ], + "spans": [ + { + "bbox": [ + 82, + 174, + 530, + 189 + ], + "score": 1.0, + "content": "pass consists of similar linear operators as a forward pass, and can thus be verified with Freivalds’ algorithm. Yet,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 186, + 491, + 200 + ], + "spans": [ + { + "bbox": [ + 83, + 186, + 491, + 200 + ], + "score": 1.0, + "content": "applying Slalom to DNN training is challenging, as described below, and we leave this problem open.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 88, + 201, + 528, + 297 + ], + "lines": [ + { + "bbox": [ + 88, + 202, + 529, + 215 + ], + "spans": [ + { + "bbox": [ + 88, + 202, + 529, + 215 + ], + "score": 1.0, + "content": "• Quantizing DNNs for training is harder than for inference, due to large changes in weight magnitudes (Mi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 95, + 211, + 530, + 227 + ], + "spans": [ + { + "bbox": [ + 95, + 211, + 530, + 227 + ], + "score": 1.0, + "content": "cikevicius et al., 2018). Thus, a more flexible quantization scheme than the one we used would be necessary.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 87, + 226, + 529, + 241 + ], + "spans": [ + { + "bbox": [ + 87, + 226, + 529, + 241 + ], + "score": 1.0, + "content": "• Because the DNN’s weights change during training, the same preprocessed random vectors for Freivalds’", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 95, + 236, + 528, + 252 + ], + "spans": [ + { + "bbox": [ + 95, + 236, + 528, + 252 + ], + "score": 1.0, + "content": "check cannot be re-used indefinitely. The most efficient approach would presumably be to train with very", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 95, + 248, + 317, + 263 + ], + "spans": [ + { + "bbox": [ + 95, + 248, + 317, + 263 + ], + "score": 1.0, + "content": "large batches than can then be verified simultaneously.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 91, + 262, + 528, + 277 + ], + "spans": [ + { + "bbox": [ + 91, + 262, + 528, + 277 + ], + "score": 1.0, + "content": "• Finally, the pre-computation techniques we employ for protecting input privacy do not apply for training, as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 96, + 274, + 528, + 287 + ], + "spans": [ + { + "bbox": [ + 96, + 274, + 528, + 287 + ], + "score": 1.0, + "content": "the weights change after every processed batch. Moreover, Slalom does not try to hide the model weights", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 95, + 283, + 419, + 300 + ], + "spans": [ + { + "bbox": [ + 95, + 283, + 419, + 300 + ], + "score": 1.0, + "content": "from the untrusted processor, which might be a requirement for private training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 84, + 312, + 173, + 325 + ], + "lines": [ + { + "bbox": [ + 82, + 311, + 174, + 328 + ], + "spans": [ + { + "bbox": [ + 82, + 311, + 174, + 328 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 84, + 337, + 528, + 371 + ], + "lines": [ + { + "bbox": [ + 83, + 337, + 528, + 351 + ], + "spans": [ + { + "bbox": [ + 83, + 337, + 528, + 351 + ], + "score": 1.0, + "content": "This paper has studied the efficiency of evaluating a DNN in a Trusted Execution Environment (TEE) to provide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 348, + 529, + 362 + ], + "spans": [ + { + "bbox": [ + 82, + 348, + 529, + 362 + ], + "score": 1.0, + "content": "strong integrity and privacy guarantees. We explored new approaches for segmenting a DNN evaluation to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 360, + 477, + 373 + ], + "spans": [ + { + "bbox": [ + 82, + 360, + 477, + 373 + ], + "score": 1.0, + "content": "securely outsource work from a trusted environment to a faster co-located but untrusted processor.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 84, + 376, + 527, + 432 + ], + "lines": [ + { + "bbox": [ + 83, + 377, + 528, + 389 + ], + "spans": [ + { + "bbox": [ + 83, + 377, + 528, + 389 + ], + "score": 1.0, + "content": "We designed Slalom, a framework for efficient DNN evaluation that outsources all linear layers from a TEE", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 387, + 528, + 401 + ], + "spans": [ + { + "bbox": [ + 82, + 387, + 528, + 401 + ], + "score": 1.0, + "content": "to a GPU. Slalom leverage Freivalds’ algorithm for verifying correctness of linear operators, and additionally", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 398, + 529, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 398, + 529, + 411 + ], + "score": 1.0, + "content": "encrypts inputs with precomputed blinding factors to preserve privacy. Slalom can work with any TEE and we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 409, + 529, + 423 + ], + "spans": [ + { + "bbox": [ + 83, + 409, + 529, + 423 + ], + "score": 1.0, + "content": "evaluated its performance using Intel SGX on various workloads. For canonical DNNs (VGG16, MobileNet and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 420, + 509, + 434 + ], + "spans": [ + { + "bbox": [ + 82, + 420, + 509, + 434 + ], + "score": 1.0, + "content": "ResNet variants), we have shown that Slalom boosts inference throughput without compromising security.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 84, + 437, + 528, + 493 + ], + "lines": [ + { + "bbox": [ + 82, + 437, + 529, + 451 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 529, + 451 + ], + "score": 1.0, + "content": "Securely outsourcing matrix products from a TEE has applications in ML beyond DNNs (e.g., non negative", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 448, + 528, + 461 + ], + "spans": [ + { + "bbox": [ + 83, + 448, + 528, + 461 + ], + "score": 1.0, + "content": "matrix factorization, dimensionality reduction, etc.) We have also explored avenues and challenges towards", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 459, + 529, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 529, + 473 + ], + "score": 1.0, + "content": "applying similar techniques to DNN training, an interesting direction for future work. Finally, our general", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "score": 1.0, + "content": "approach of outsourcing work from a TEE to a faster co-processor could be applied to other problems which", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 481, + 496, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 496, + 495 + ], + "score": 1.0, + "content": "have fast verification algorithms, e.g., those considered in (McConnell et al., 2011; Zhang et al., 2014).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 84, + 509, + 153, + 520 + ], + "lines": [ + { + "bbox": [ + 83, + 509, + 153, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 509, + 153, + 522 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 82, + 526, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 525, + 528, + 539 + ], + "spans": [ + { + "bbox": [ + 82, + 525, + 528, + 539 + ], + "score": 1.0, + "content": "Tiago Alves and Don Felton. Trustzone: Integrated hardware and software security-enabling trusted computing in embedded", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 92, + 537, + 238, + 548 + ], + "spans": [ + { + "bbox": [ + 92, + 537, + 238, + 548 + ], + "score": 1.0, + "content": "systems. Technical report, ARM, 2004.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 81, + 553, + 528, + 568 + ], + "spans": [ + { + "bbox": [ + 81, + 553, + 528, + 568 + ], + "score": 1.0, + "content": "Ferdinand Brasser, Urs Müller, Alexandra Dmitrienko, Kari Kostiainen, Srdjan Capkun, and Ahmad-Reza Sadeghi. Software", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 92, + 565, + 476, + 577 + ], + "spans": [ + { + "bbox": [ + 92, + 565, + 476, + 577 + ], + "score": 1.0, + "content": "grand exposure: SGX cache attacks are practical. In USENIX Workshop on Offensive Technologies, 2017.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 81, + 581, + 529, + 596 + ], + "spans": [ + { + "bbox": [ + 81, + 581, + 529, + 596 + ], + "score": 1.0, + "content": "Ran Canetti, Yehuda Lindell, Rafail Ostrovsky, and Amit Sahai. Universally composable two-party and multi-party secure", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 92, + 592, + 530, + 606 + ], + "spans": [ + { + "bbox": [ + 92, + 592, + 530, + 606 + ], + "score": 1.0, + "content": "computation. In Proceedings of the thiry-fourth annual ACM symposium on Theory of computing, pp. 494–503. ACM,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 92, + 601, + 117, + 615 + ], + "spans": [ + { + "bbox": [ + 92, + 601, + 117, + 615 + ], + "score": 1.0, + "content": "2002.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 620, + 528, + 634 + ], + "spans": [ + { + "bbox": [ + 82, + 620, + 528, + 634 + ], + "score": 1.0, + "content": "Guoxing Chen, Sanchuan Chen, Yuan Xiao, Yinqian Zhang, Zhiqiang Lin, and Ten H Lai. SGXPECTRE attacks: Leaking", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 92, + 631, + 392, + 644 + ], + "spans": [ + { + "bbox": [ + 92, + 631, + 392, + 644 + ], + "score": 1.0, + "content": "enclave secrets via speculative execution. arXiv preprint arXiv:1802.09085, 2018.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 648, + 529, + 662 + ], + "spans": [ + { + "bbox": [ + 82, + 648, + 529, + 662 + ], + "score": 1.0, + "content": "Sanchuan Chen, Xiaokuan Zhang, Michael K Reiter, and Yinqian Zhang. Detecting privileged side-channel attacks in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 91, + 656, + 530, + 673 + ], + "spans": [ + { + "bbox": [ + 91, + 656, + 530, + 673 + ], + "score": 1.0, + "content": "shielded execution with déjá vu. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 92, + 669, + 164, + 681 + ], + "spans": [ + { + "bbox": [ + 92, + 669, + 164, + 681 + ], + "score": 1.0, + "content": "7–18. ACM, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 32.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 290, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 290, + 711 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 84, + 138, + 390, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 392, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 392, + 154 + ], + "score": 1.0, + "content": "5 CHALLENGES FOR VERIFIABLE AND PRIVATE TRAINING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 164, + 529, + 198 + ], + "lines": [ + { + "bbox": [ + 83, + 164, + 528, + 176 + ], + "spans": [ + { + "bbox": [ + 83, + 164, + 528, + 176 + ], + "score": 1.0, + "content": "Our techniques for secure outsourcing of DNN inference might also apply to DNN training. Indeed, a backward", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 174, + 530, + 189 + ], + "spans": [ + { + "bbox": [ + 82, + 174, + 530, + 189 + ], + "score": 1.0, + "content": "pass consists of similar linear operators as a forward pass, and can thus be verified with Freivalds’ algorithm. Yet,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 186, + 491, + 200 + ], + "spans": [ + { + "bbox": [ + 83, + 186, + 491, + 200 + ], + "score": 1.0, + "content": "applying Slalom to DNN training is challenging, as described below, and we leave this problem open.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 82, + 164, + 530, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 201, + 528, + 297 + ], + "lines": [ + { + "bbox": [ + 88, + 202, + 529, + 215 + ], + "spans": [ + { + "bbox": [ + 88, + 202, + 529, + 215 + ], + "score": 1.0, + "content": "• Quantizing DNNs for training is harder than for inference, due to large changes in weight magnitudes (Mi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 95, + 211, + 530, + 227 + ], + "spans": [ + { + "bbox": [ + 95, + 211, + 530, + 227 + ], + "score": 1.0, + "content": "cikevicius et al., 2018). Thus, a more flexible quantization scheme than the one we used would be necessary.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 87, + 226, + 529, + 241 + ], + "spans": [ + { + "bbox": [ + 87, + 226, + 529, + 241 + ], + "score": 1.0, + "content": "• Because the DNN’s weights change during training, the same preprocessed random vectors for Freivalds’", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 95, + 236, + 528, + 252 + ], + "spans": [ + { + "bbox": [ + 95, + 236, + 528, + 252 + ], + "score": 1.0, + "content": "check cannot be re-used indefinitely. The most efficient approach would presumably be to train with very", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 95, + 248, + 317, + 263 + ], + "spans": [ + { + "bbox": [ + 95, + 248, + 317, + 263 + ], + "score": 1.0, + "content": "large batches than can then be verified simultaneously.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 91, + 262, + 528, + 277 + ], + "spans": [ + { + "bbox": [ + 91, + 262, + 528, + 277 + ], + "score": 1.0, + "content": "• Finally, the pre-computation techniques we employ for protecting input privacy do not apply for training, as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 96, + 274, + 528, + 287 + ], + "spans": [ + { + "bbox": [ + 96, + 274, + 528, + 287 + ], + "score": 1.0, + "content": "the weights change after every processed batch. Moreover, Slalom does not try to hide the model weights", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 95, + 283, + 419, + 300 + ], + "spans": [ + { + "bbox": [ + 95, + 283, + 419, + 300 + ], + "score": 1.0, + "content": "from the untrusted processor, which might be a requirement for private training.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 87, + 202, + 530, + 300 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 312, + 173, + 325 + ], + "lines": [ + { + "bbox": [ + 82, + 311, + 174, + 328 + ], + "spans": [ + { + "bbox": [ + 82, + 311, + 174, + 328 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 84, + 337, + 528, + 371 + ], + "lines": [ + { + "bbox": [ + 83, + 337, + 528, + 351 + ], + "spans": [ + { + "bbox": [ + 83, + 337, + 528, + 351 + ], + "score": 1.0, + "content": "This paper has studied the efficiency of evaluating a DNN in a Trusted Execution Environment (TEE) to provide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 348, + 529, + 362 + ], + "spans": [ + { + "bbox": [ + 82, + 348, + 529, + 362 + ], + "score": 1.0, + "content": "strong integrity and privacy guarantees. We explored new approaches for segmenting a DNN evaluation to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 360, + 477, + 373 + ], + "spans": [ + { + "bbox": [ + 82, + 360, + 477, + 373 + ], + "score": 1.0, + "content": "securely outsource work from a trusted environment to a faster co-located but untrusted processor.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 82, + 337, + 529, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 376, + 527, + 432 + ], + "lines": [ + { + "bbox": [ + 83, + 377, + 528, + 389 + ], + "spans": [ + { + "bbox": [ + 83, + 377, + 528, + 389 + ], + "score": 1.0, + "content": "We designed Slalom, a framework for efficient DNN evaluation that outsources all linear layers from a TEE", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 387, + 528, + 401 + ], + "spans": [ + { + "bbox": [ + 82, + 387, + 528, + 401 + ], + "score": 1.0, + "content": "to a GPU. Slalom leverage Freivalds’ algorithm for verifying correctness of linear operators, and additionally", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 398, + 529, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 398, + 529, + 411 + ], + "score": 1.0, + "content": "encrypts inputs with precomputed blinding factors to preserve privacy. Slalom can work with any TEE and we", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 83, + 409, + 529, + 423 + ], + "spans": [ + { + "bbox": [ + 83, + 409, + 529, + 423 + ], + "score": 1.0, + "content": "evaluated its performance using Intel SGX on various workloads. For canonical DNNs (VGG16, MobileNet and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 420, + 509, + 434 + ], + "spans": [ + { + "bbox": [ + 82, + 420, + 509, + 434 + ], + "score": 1.0, + "content": "ResNet variants), we have shown that Slalom boosts inference throughput without compromising security.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 82, + 377, + 529, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 437, + 528, + 493 + ], + "lines": [ + { + "bbox": [ + 82, + 437, + 529, + 451 + ], + "spans": [ + { + "bbox": [ + 82, + 437, + 529, + 451 + ], + "score": 1.0, + "content": "Securely outsourcing matrix products from a TEE has applications in ML beyond DNNs (e.g., non negative", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 448, + 528, + 461 + ], + "spans": [ + { + "bbox": [ + 83, + 448, + 528, + 461 + ], + "score": 1.0, + "content": "matrix factorization, dimensionality reduction, etc.) We have also explored avenues and challenges towards", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 459, + 529, + 473 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 529, + 473 + ], + "score": 1.0, + "content": "applying similar techniques to DNN training, an interesting direction for future work. Finally, our general", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "spans": [ + { + "bbox": [ + 82, + 470, + 529, + 483 + ], + "score": 1.0, + "content": "approach of outsourcing work from a TEE to a faster co-processor could be applied to other problems which", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 481, + 496, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 496, + 495 + ], + "score": 1.0, + "content": "have fast verification algorithms, e.g., those considered in (McConnell et al., 2011; Zhang et al., 2014).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 82, + 437, + 529, + 495 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 509, + 153, + 520 + ], + "lines": [ + { + "bbox": [ + 83, + 509, + 153, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 509, + 153, + 522 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "list", + "bbox": [ + 82, + 526, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 82, + 525, + 528, + 539 + ], + "spans": [ + { + "bbox": [ + 82, + 525, + 528, + 539 + ], + "score": 1.0, + "content": "Tiago Alves and Don Felton. Trustzone: Integrated hardware and software security-enabling trusted computing in embedded", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 537, + 238, + 548 + ], + "spans": [ + { + "bbox": [ + 92, + 537, + 238, + 548 + ], + "score": 1.0, + "content": "systems. Technical report, ARM, 2004.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 553, + 528, + 568 + ], + "spans": [ + { + "bbox": [ + 81, + 553, + 528, + 568 + ], + "score": 1.0, + "content": "Ferdinand Brasser, Urs Müller, Alexandra Dmitrienko, Kari Kostiainen, Srdjan Capkun, and Ahmad-Reza Sadeghi. Software", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 565, + 476, + 577 + ], + "spans": [ + { + "bbox": [ + 92, + 565, + 476, + 577 + ], + "score": 1.0, + "content": "grand exposure: SGX cache attacks are practical. In USENIX Workshop on Offensive Technologies, 2017.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 581, + 529, + 596 + ], + "spans": [ + { + "bbox": [ + 81, + 581, + 529, + 596 + ], + "score": 1.0, + "content": "Ran Canetti, Yehuda Lindell, Rafail Ostrovsky, and Amit Sahai. Universally composable two-party and multi-party secure", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 592, + 530, + 606 + ], + "spans": [ + { + "bbox": [ + 92, + 592, + 530, + 606 + ], + "score": 1.0, + "content": "computation. In Proceedings of the thiry-fourth annual ACM symposium on Theory of computing, pp. 494–503. ACM,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 92, + 601, + 117, + 615 + ], + "spans": [ + { + "bbox": [ + 92, + 601, + 117, + 615 + ], + "score": 1.0, + "content": "2002.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 620, + 528, + 634 + ], + "spans": [ + { + "bbox": [ + 82, + 620, + 528, + 634 + ], + "score": 1.0, + "content": "Guoxing Chen, Sanchuan Chen, Yuan Xiao, Yinqian Zhang, Zhiqiang Lin, and Ten H Lai. SGXPECTRE attacks: Leaking", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 631, + 392, + 644 + ], + "spans": [ + { + "bbox": [ + 92, + 631, + 392, + 644 + ], + "score": 1.0, + "content": "enclave secrets via speculative execution. arXiv preprint arXiv:1802.09085, 2018.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 648, + 529, + 662 + ], + "spans": [ + { + "bbox": [ + 82, + 648, + 529, + 662 + ], + "score": 1.0, + "content": "Sanchuan Chen, Xiaokuan Zhang, Michael K Reiter, and Yinqian Zhang. Detecting privileged side-channel attacks in", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 656, + 530, + 673 + ], + "spans": [ + { + "bbox": [ + 91, + 656, + 530, + 673 + ], + "score": 1.0, + "content": "shielded execution with déjá vu. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 92, + 669, + 164, + 681 + ], + "spans": [ + { + "bbox": [ + 92, + 669, + 164, + 681 + ], + "score": 1.0, + "content": "7–18. ACM, 2017.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + } + ], + "index": 32.5, + "bbox_fs": [ + 81, + 525, + 530, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 82, + 141, + 527, + 172 + ], + "lines": [ + { + "bbox": [ + 83, + 141, + 528, + 153 + ], + "spans": [ + { + "bbox": [ + 83, + 141, + 528, + 153 + ], + "score": 1.0, + "content": "Raymond Cheng, Fan Zhang, Jernej Kos, Warren He, Nicholas Hynes, Noah Johnson, Ari Juels, Andrew Miller, and Dawn", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 93, + 151, + 528, + 163 + ], + "spans": [ + { + "bbox": [ + 93, + 151, + 528, + 163 + ], + "score": 1.0, + "content": "Song. Ekiden: A platform for confidentiality-preserving, trustworthy, and performant smart contract execution. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 91, + 161, + 218, + 173 + ], + "spans": [ + { + "bbox": [ + 91, + 161, + 218, + 173 + ], + "score": 1.0, + "content": "preprint arXiv:1804.05141, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 84, + 178, + 304, + 190 + ], + "lines": [ + { + "bbox": [ + 83, + 178, + 305, + 191 + ], + "spans": [ + { + "bbox": [ + 83, + 178, + 305, + 191 + ], + "score": 1.0, + "content": "François Chollet et al. Keras. https://keras.io, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 81, + 196, + 528, + 217 + ], + "lines": [ + { + "bbox": [ + 82, + 196, + 529, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 196, + 529, + 208 + ], + "score": 1.0, + "content": "François Chollet. Xception: Deep learning with depthwise separable convolutions. In Conference on Computer Vision and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 92, + 206, + 223, + 217 + ], + "spans": [ + { + "bbox": [ + 92, + 206, + 223, + 217 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 83, + 224, + 496, + 236 + ], + "lines": [ + { + "bbox": [ + 84, + 223, + 496, + 236 + ], + "spans": [ + { + "bbox": [ + 84, + 223, + 496, + 236 + ], + "score": 1.0, + "content": "Victor Costan and Srinivas Devadas. Intel SGX explained. https://eprint.iacr.org/2016/086, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 82, + 241, + 525, + 262 + ], + "lines": [ + { + "bbox": [ + 82, + 240, + 528, + 254 + ], + "spans": [ + { + "bbox": [ + 82, + 240, + 528, + 254 + ], + "score": 1.0, + "content": "Victor Costan, Ilia Lebedev, and Srinivas Devadas. Sanctum: Minimal hardware extensions for strong software isolation. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 92, + 252, + 226, + 263 + ], + "spans": [ + { + "bbox": [ + 92, + 252, + 226, + 263 + ], + "score": 1.0, + "content": "USENIX Security Symposium, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 82, + 269, + 527, + 300 + ], + "lines": [ + { + "bbox": [ + 83, + 269, + 529, + 280 + ], + "spans": [ + { + "bbox": [ + 83, + 269, + 529, + 280 + ], + "score": 1.0, + "content": "Fergus Dall, Gabrielle De Micheli, Thomas Eisenbarth, Daniel Genkin, Nadia Heninger, Ahmad Moghimi, and Yuval Yarom.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 93, + 279, + 528, + 291 + ], + "spans": [ + { + "bbox": [ + 93, + 279, + 528, + 291 + ], + "score": 1.0, + "content": "Cachequote: Efficiently recovering long-term secrets of sgx epid via cache attacks. IACR Transactions on Cryptographic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 93, + 290, + 309, + 300 + ], + "spans": [ + { + "bbox": [ + 93, + 290, + 309, + 300 + ], + "score": 1.0, + "content": "Hardware and Embedded Systems, 2018(2):171–191, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 82, + 306, + 528, + 328 + ], + "lines": [ + { + "bbox": [ + 82, + 307, + 529, + 318 + ], + "spans": [ + { + "bbox": [ + 82, + 307, + 529, + 318 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 92, + 317, + 438, + 328 + ], + "spans": [ + { + "bbox": [ + 92, + 317, + 438, + 328 + ], + "score": 1.0, + "content": "In Conference on Computer Vision and Pattern Recognition (CVPR), pp. 248–255. IEEE, 2009.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 83, + 334, + 528, + 365 + ], + "lines": [ + { + "bbox": [ + 83, + 335, + 528, + 346 + ], + "spans": [ + { + "bbox": [ + 83, + 335, + 528, + 346 + ], + "score": 1.0, + "content": "Dario Fiore and Rosario Gennaro. Publicly verifiable delegation of large polynomials and matrix computations, with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 92, + 344, + 529, + 356 + ], + "spans": [ + { + "bbox": [ + 92, + 344, + 529, + 356 + ], + "score": 1.0, + "content": "applications. In Proceedings of the 2012 ACM conference on Computer and communications security, pp. 501–512. ACM,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 92, + 352, + 117, + 366 + ], + "spans": [ + { + "bbox": [ + 92, + 352, + 117, + 366 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 82, + 371, + 530, + 393 + ], + "lines": [ + { + "bbox": [ + 82, + 372, + 528, + 384 + ], + "spans": [ + { + "bbox": [ + 82, + 372, + 528, + 384 + ], + "score": 1.0, + "content": "Ben Fisch, Dhinakaran Vinayagamurthy, Dan Boneh, and Sergey Gorbunov. Iron: functional encryption using intel sgx. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 92, + 382, + 529, + 394 + ], + "spans": [ + { + "bbox": [ + 92, + 382, + 529, + 394 + ], + "score": 1.0, + "content": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 765–782. ACM, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 84, + 399, + 498, + 411 + ], + "lines": [ + { + "bbox": [ + 83, + 399, + 494, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 399, + 494, + 412 + ], + "score": 1.0, + "content": "Rusins Freivalds. Probabilistic machines can use less running time. In IFIP congress, volume 839, pp. 842, 1977.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 82, + 417, + 527, + 438 + ], + "lines": [ + { + "bbox": [ + 82, + 417, + 528, + 429 + ], + "spans": [ + { + "bbox": [ + 82, + 417, + 528, + 429 + ], + "score": 1.0, + "content": "Zahra Ghodsi, Tianyu Gu, and Siddharth Garg. Safetynets: Verifiable execution of deep neural networks on an untrusted", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 93, + 427, + 430, + 438 + ], + "spans": [ + { + "bbox": [ + 93, + 427, + 430, + 438 + ], + "score": 1.0, + "content": "cloud. In Advances In Neural Information Processing Systems (NIPS), pp. 4675–4684, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 82, + 445, + 527, + 476 + ], + "lines": [ + { + "bbox": [ + 82, + 443, + 528, + 459 + ], + "spans": [ + { + "bbox": [ + 82, + 443, + 528, + 459 + ], + "score": 1.0, + "content": "Ran Gilad-Bachrach, Nathan Dowlin, Kim Laine, Kristin Lauter, Michael Naehrig, and John Wernsing. Cryptonets: Applying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 91, + 453, + 529, + 469 + ], + "spans": [ + { + "bbox": [ + 91, + 453, + 529, + 469 + ], + "score": 1.0, + "content": "neural networks to encrypted data with high throughput and accuracy. In International Conference on Machine Learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 92, + 465, + 196, + 477 + ], + "spans": [ + { + "bbox": [ + 92, + 465, + 196, + 477 + ], + "score": 1.0, + "content": "(ICML), pp. 201–210, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 81, + 482, + 527, + 504 + ], + "lines": [ + { + "bbox": [ + 82, + 481, + 528, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 528, + 495 + ], + "score": 1.0, + "content": "Johannes Götzfried, Moritz Eckert, Sebastian Schinzel, and Tilo Müller. Cache attacks on Intel SGX. In European Workshop", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 92, + 493, + 242, + 504 + ], + "spans": [ + { + "bbox": [ + 92, + 493, + 242, + 504 + ], + "score": 1.0, + "content": "on Systems Security, pp. 2. ACM, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 83, + 510, + 527, + 532 + ], + "lines": [ + { + "bbox": [ + 83, + 511, + 528, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 511, + 528, + 522 + ], + "score": 1.0, + "content": "Suyog Gupta, Ankur Agrawal, Kailash Gopalakrishnan, and Pritish Narayanan. Deep learning with limited numerical", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 92, + 520, + 428, + 532 + ], + "spans": [ + { + "bbox": [ + 92, + 520, + 428, + 532 + ], + "score": 1.0, + "content": "precision. In International Conference on Machine Learning (ICML), pp. 1737–1746, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 83, + 537, + 526, + 559 + ], + "lines": [ + { + "bbox": [ + 83, + 538, + 527, + 549 + ], + "spans": [ + { + "bbox": [ + 83, + 538, + 527, + 549 + ], + "score": 1.0, + "content": "Lucjan Hanzlik, Yang Zhang, Kathrin Grosse, Ahmed Salem, Max Augustin, Michael Backes, and Mario Fritz. Mlcapsule:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 93, + 548, + 463, + 559 + ], + "spans": [ + { + "bbox": [ + 93, + 548, + 463, + 559 + ], + "score": 1.0, + "content": "Guarded offline deployment of machine learning as a service. arXiv preprint arXiv:1808.00590, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 83, + 565, + 528, + 587 + ], + "lines": [ + { + "bbox": [ + 83, + 565, + 528, + 577 + ], + "spans": [ + { + "bbox": [ + 83, + 565, + 528, + 577 + ], + "score": 1.0, + "content": "Danny Harnik and Eliad Tsfadia. Impressions of Intel SGX performance. https://medium.com/@danny_harnik/", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 92, + 576, + 490, + 587 + ], + "spans": [ + { + "bbox": [ + 92, + 576, + 490, + 587 + ], + "score": 1.0, + "content": "impressions-of-intel-sgx-performance-22442093595a, 2017. Accessed on May 17, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 82, + 593, + 528, + 614 + ], + "lines": [ + { + "bbox": [ + 82, + 591, + 529, + 606 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 529, + 606 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 93, + 604, + 402, + 615 + ], + "spans": [ + { + "bbox": [ + 93, + 604, + 402, + 615 + ], + "score": 1.0, + "content": "the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 83, + 621, + 527, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 619, + 529, + 633 + ], + "spans": [ + { + "bbox": [ + 82, + 619, + 529, + 633 + ], + "score": 1.0, + "content": "Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 92, + 630, + 529, + 643 + ], + "spans": [ + { + "bbox": [ + 92, + 630, + 529, + 643 + ], + "score": 1.0, + "content": "and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 93, + 641, + 186, + 652 + ], + "spans": [ + { + "bbox": [ + 93, + 641, + 186, + 652 + ], + "score": 1.0, + "content": "arXiv:1704.04861, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 83, + 658, + 525, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 658, + 528, + 671 + ], + "spans": [ + { + "bbox": [ + 82, + 658, + 528, + 671 + ], + "score": 1.0, + "content": "Tyler Hunt, Congzheng Song, Reza Shokri, Vitaly Shmatikov, and Emmett Witchel. Chiron: Privacy-preserving machine", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 92, + 668, + 318, + 680 + ], + "spans": [ + { + "bbox": [ + 92, + 668, + 318, + 680 + ], + "score": 1.0, + "content": "learning as a service. arXiv preprint arXiv:1803.05961, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 287, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 82, + 141, + 527, + 172 + ], + "lines": [ + { + "bbox": [ + 83, + 141, + 528, + 153 + ], + "spans": [ + { + "bbox": [ + 83, + 141, + 528, + 153 + ], + "score": 1.0, + "content": "Raymond Cheng, Fan Zhang, Jernej Kos, Warren He, Nicholas Hynes, Noah Johnson, Ari Juels, Andrew Miller, and Dawn", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 93, + 151, + 528, + 163 + ], + "spans": [ + { + "bbox": [ + 93, + 151, + 528, + 163 + ], + "score": 1.0, + "content": "Song. Ekiden: A platform for confidentiality-preserving, trustworthy, and performant smart contract execution. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 91, + 161, + 218, + 173 + ], + "spans": [ + { + "bbox": [ + 91, + 161, + 218, + 173 + ], + "score": 1.0, + "content": "preprint arXiv:1804.05141, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 83, + 141, + 528, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 178, + 304, + 190 + ], + "lines": [ + { + "bbox": [ + 83, + 178, + 305, + 191 + ], + "spans": [ + { + "bbox": [ + 83, + 178, + 305, + 191 + ], + "score": 1.0, + "content": "François Chollet et al. Keras. https://keras.io, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 83, + 178, + 305, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 81, + 196, + 528, + 217 + ], + "lines": [ + { + "bbox": [ + 82, + 196, + 529, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 196, + 529, + 208 + ], + "score": 1.0, + "content": "François Chollet. Xception: Deep learning with depthwise separable convolutions. In Conference on Computer Vision and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 92, + 206, + 223, + 217 + ], + "spans": [ + { + "bbox": [ + 92, + 206, + 223, + 217 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 82, + 196, + 529, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 224, + 496, + 236 + ], + "lines": [ + { + "bbox": [ + 84, + 223, + 496, + 236 + ], + "spans": [ + { + "bbox": [ + 84, + 223, + 496, + 236 + ], + "score": 1.0, + "content": "Victor Costan and Srinivas Devadas. Intel SGX explained. https://eprint.iacr.org/2016/086, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 84, + 223, + 496, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 241, + 525, + 262 + ], + "lines": [ + { + "bbox": [ + 82, + 240, + 528, + 254 + ], + "spans": [ + { + "bbox": [ + 82, + 240, + 528, + 254 + ], + "score": 1.0, + "content": "Victor Costan, Ilia Lebedev, and Srinivas Devadas. Sanctum: Minimal hardware extensions for strong software isolation. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 92, + 252, + 226, + 263 + ], + "spans": [ + { + "bbox": [ + 92, + 252, + 226, + 263 + ], + "score": 1.0, + "content": "USENIX Security Symposium, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 82, + 240, + 528, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 269, + 527, + 300 + ], + "lines": [ + { + "bbox": [ + 83, + 269, + 529, + 280 + ], + "spans": [ + { + "bbox": [ + 83, + 269, + 529, + 280 + ], + "score": 1.0, + "content": "Fergus Dall, Gabrielle De Micheli, Thomas Eisenbarth, Daniel Genkin, Nadia Heninger, Ahmad Moghimi, and Yuval Yarom.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 93, + 279, + 528, + 291 + ], + "spans": [ + { + "bbox": [ + 93, + 279, + 528, + 291 + ], + "score": 1.0, + "content": "Cachequote: Efficiently recovering long-term secrets of sgx epid via cache attacks. IACR Transactions on Cryptographic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 93, + 290, + 309, + 300 + ], + "spans": [ + { + "bbox": [ + 93, + 290, + 309, + 300 + ], + "score": 1.0, + "content": "Hardware and Embedded Systems, 2018(2):171–191, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 83, + 269, + 529, + 300 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 306, + 528, + 328 + ], + "lines": [ + { + "bbox": [ + 82, + 307, + 529, + 318 + ], + "spans": [ + { + "bbox": [ + 82, + 307, + 529, + 318 + ], + "score": 1.0, + "content": "Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 92, + 317, + 438, + 328 + ], + "spans": [ + { + "bbox": [ + 92, + 317, + 438, + 328 + ], + "score": 1.0, + "content": "In Conference on Computer Vision and Pattern Recognition (CVPR), pp. 248–255. IEEE, 2009.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 82, + 307, + 529, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 334, + 528, + 365 + ], + "lines": [ + { + "bbox": [ + 83, + 335, + 528, + 346 + ], + "spans": [ + { + "bbox": [ + 83, + 335, + 528, + 346 + ], + "score": 1.0, + "content": "Dario Fiore and Rosario Gennaro. Publicly verifiable delegation of large polynomials and matrix computations, with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 92, + 344, + 529, + 356 + ], + "spans": [ + { + "bbox": [ + 92, + 344, + 529, + 356 + ], + "score": 1.0, + "content": "applications. In Proceedings of the 2012 ACM conference on Computer and communications security, pp. 501–512. ACM,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 92, + 352, + 117, + 366 + ], + "spans": [ + { + "bbox": [ + 92, + 352, + 117, + 366 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 83, + 335, + 529, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 371, + 530, + 393 + ], + "lines": [ + { + "bbox": [ + 82, + 372, + 528, + 384 + ], + "spans": [ + { + "bbox": [ + 82, + 372, + 528, + 384 + ], + "score": 1.0, + "content": "Ben Fisch, Dhinakaran Vinayagamurthy, Dan Boneh, and Sergey Gorbunov. Iron: functional encryption using intel sgx. In", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 92, + 382, + 529, + 394 + ], + "spans": [ + { + "bbox": [ + 92, + 382, + 529, + 394 + ], + "score": 1.0, + "content": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, pp. 765–782. ACM, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 82, + 372, + 529, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 399, + 498, + 411 + ], + "lines": [ + { + "bbox": [ + 83, + 399, + 494, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 399, + 494, + 412 + ], + "score": 1.0, + "content": "Rusins Freivalds. Probabilistic machines can use less running time. In IFIP congress, volume 839, pp. 842, 1977.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 83, + 399, + 494, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 417, + 527, + 438 + ], + "lines": [ + { + "bbox": [ + 82, + 417, + 528, + 429 + ], + "spans": [ + { + "bbox": [ + 82, + 417, + 528, + 429 + ], + "score": 1.0, + "content": "Zahra Ghodsi, Tianyu Gu, and Siddharth Garg. Safetynets: Verifiable execution of deep neural networks on an untrusted", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 93, + 427, + 430, + 438 + ], + "spans": [ + { + "bbox": [ + 93, + 427, + 430, + 438 + ], + "score": 1.0, + "content": "cloud. In Advances In Neural Information Processing Systems (NIPS), pp. 4675–4684, 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 82, + 417, + 528, + 438 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 445, + 527, + 476 + ], + "lines": [ + { + "bbox": [ + 82, + 443, + 528, + 459 + ], + "spans": [ + { + "bbox": [ + 82, + 443, + 528, + 459 + ], + "score": 1.0, + "content": "Ran Gilad-Bachrach, Nathan Dowlin, Kim Laine, Kristin Lauter, Michael Naehrig, and John Wernsing. Cryptonets: Applying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 91, + 453, + 529, + 469 + ], + "spans": [ + { + "bbox": [ + 91, + 453, + 529, + 469 + ], + "score": 1.0, + "content": "neural networks to encrypted data with high throughput and accuracy. In International Conference on Machine Learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 92, + 465, + 196, + 477 + ], + "spans": [ + { + "bbox": [ + 92, + 465, + 196, + 477 + ], + "score": 1.0, + "content": "(ICML), pp. 201–210, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 82, + 443, + 529, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 81, + 482, + 527, + 504 + ], + "lines": [ + { + "bbox": [ + 82, + 481, + 528, + 495 + ], + "spans": [ + { + "bbox": [ + 82, + 481, + 528, + 495 + ], + "score": 1.0, + "content": "Johannes Götzfried, Moritz Eckert, Sebastian Schinzel, and Tilo Müller. Cache attacks on Intel SGX. In European Workshop", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 92, + 493, + 242, + 504 + ], + "spans": [ + { + "bbox": [ + 92, + 493, + 242, + 504 + ], + "score": 1.0, + "content": "on Systems Security, pp. 2. ACM, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 82, + 481, + 528, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 510, + 527, + 532 + ], + "lines": [ + { + "bbox": [ + 83, + 511, + 528, + 522 + ], + "spans": [ + { + "bbox": [ + 83, + 511, + 528, + 522 + ], + "score": 1.0, + "content": "Suyog Gupta, Ankur Agrawal, Kailash Gopalakrishnan, and Pritish Narayanan. Deep learning with limited numerical", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 92, + 520, + 428, + 532 + ], + "spans": [ + { + "bbox": [ + 92, + 520, + 428, + 532 + ], + "score": 1.0, + "content": "precision. In International Conference on Machine Learning (ICML), pp. 1737–1746, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 83, + 511, + 528, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 537, + 526, + 559 + ], + "lines": [ + { + "bbox": [ + 83, + 538, + 527, + 549 + ], + "spans": [ + { + "bbox": [ + 83, + 538, + 527, + 549 + ], + "score": 1.0, + "content": "Lucjan Hanzlik, Yang Zhang, Kathrin Grosse, Ahmed Salem, Max Augustin, Michael Backes, and Mario Fritz. Mlcapsule:", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 93, + 548, + 463, + 559 + ], + "spans": [ + { + "bbox": [ + 93, + 548, + 463, + 559 + ], + "score": 1.0, + "content": "Guarded offline deployment of machine learning as a service. arXiv preprint arXiv:1808.00590, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 83, + 538, + 527, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 565, + 528, + 587 + ], + "lines": [ + { + "bbox": [ + 83, + 565, + 528, + 577 + ], + "spans": [ + { + "bbox": [ + 83, + 565, + 528, + 577 + ], + "score": 1.0, + "content": "Danny Harnik and Eliad Tsfadia. Impressions of Intel SGX performance. https://medium.com/@danny_harnik/", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 92, + 576, + 490, + 587 + ], + "spans": [ + { + "bbox": [ + 92, + 576, + 490, + 587 + ], + "score": 1.0, + "content": "impressions-of-intel-sgx-performance-22442093595a, 2017. Accessed on May 17, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 83, + 565, + 528, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 82, + 593, + 528, + 614 + ], + "lines": [ + { + "bbox": [ + 82, + 591, + 529, + 606 + ], + "spans": [ + { + "bbox": [ + 82, + 591, + 529, + 606 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 93, + 604, + 402, + 615 + ], + "spans": [ + { + "bbox": [ + 93, + 604, + 402, + 615 + ], + "score": 1.0, + "content": "the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 82, + 591, + 529, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 621, + 527, + 651 + ], + "lines": [ + { + "bbox": [ + 82, + 619, + 529, + 633 + ], + "spans": [ + { + "bbox": [ + 82, + 619, + 529, + 633 + ], + "score": 1.0, + "content": "Andrew G Howard, Menglong Zhu, Bo Chen, Dmitry Kalenichenko, Weijun Wang, Tobias Weyand, Marco Andreetto,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 92, + 630, + 529, + 643 + ], + "spans": [ + { + "bbox": [ + 92, + 630, + 529, + 643 + ], + "score": 1.0, + "content": "and Hartwig Adam. Mobilenets: Efficient convolutional neural networks for mobile vision applications. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 93, + 641, + 186, + 652 + ], + "spans": [ + { + "bbox": [ + 93, + 641, + 186, + 652 + ], + "score": 1.0, + "content": "arXiv:1704.04861, 2017.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 82, + 619, + 529, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 658, + 525, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 658, + 528, + 671 + ], + "spans": [ + { + "bbox": [ + 82, + 658, + 528, + 671 + ], + "score": 1.0, + "content": "Tyler Hunt, Congzheng Song, Reza Shokri, Vitaly Shmatikov, and Emmett Witchel. Chiron: Privacy-preserving machine", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 92, + 668, + 318, + 680 + ], + "spans": [ + { + "bbox": [ + 92, + 668, + 318, + 680 + ], + "score": 1.0, + "content": "learning as a service. arXiv preprint arXiv:1803.05961, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 82, + 658, + 528, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 81, + 122, + 530, + 682 + ], + "lines": [ + { + "bbox": [ + 81, + 140, + 531, + 154 + ], + "spans": [ + { + "bbox": [ + 81, + 140, + 531, + 154 + ], + "score": 1.0, + "content": "Intel Corp. Intel Software Guard Extensions Evaluation SDK. https://software.intel.com/en-us/sgx-sdk,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 92, + 151, + 117, + 164 + ], + "spans": [ + { + "bbox": [ + 92, + 151, + 117, + 164 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 81, + 169, + 530, + 182 + ], + "spans": [ + { + "bbox": [ + 81, + 169, + 530, + 182 + ], + "score": 1.0, + "content": "Intel Corp. Intel software guard extensions (sgx) SW development guidance for potential bounds check bypass (CVE-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 92, + 178, + 529, + 194 + ], + "spans": [ + { + "bbox": [ + 92, + 178, + 529, + 194 + ], + "score": 1.0, + "content": "2017-5753) side channel exploits. https://software.intel.com/sites/default/files/180204_SGX_", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 92, + 190, + 287, + 202 + ], + "spans": [ + { + "bbox": [ + 92, + 190, + 287, + 202 + ], + "score": 1.0, + "content": "SDK_Developer_Guidance_v1.0.pdf, 2018.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 208, + 528, + 219 + ], + "spans": [ + { + "bbox": [ + 83, + 208, + 528, + 219 + ], + "score": 1.0, + "content": "Chiraag Juvekar, Vinod Vaikuntanathan, and Anantha Chandrakasan. Gazelle: A low latency framework for secure neural", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 92, + 218, + 310, + 230 + ], + "spans": [ + { + "bbox": [ + 92, + 218, + 310, + 230 + ], + "score": 1.0, + "content": "network inference. arXiv preprint arXiv:1801.05507, 2018.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 81, + 234, + 530, + 249 + ], + "spans": [ + { + "bbox": [ + 81, + 234, + 530, + 249 + ], + "score": 1.0, + "content": "Paul Kocher, Daniel Genkin, Daniel Gruss, Werner Haas, Mike Hamburg, Moritz Lipp, Stefan Mangard, Thomas Prescher,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 91, + 244, + 530, + 259 + ], + "spans": [ + { + "bbox": [ + 91, + 244, + 530, + 259 + ], + "score": 1.0, + "content": "Michael Schwarz, and Yuval Yarom. Spectre attacks: Exploiting speculative execution. arXiv preprint arXiv:1801.01203,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 92, + 254, + 118, + 269 + ], + "spans": [ + { + "bbox": [ + 92, + 254, + 118, + 269 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 82, + 273, + 528, + 286 + ], + "spans": [ + { + "bbox": [ + 82, + 273, + 528, + 286 + ], + "score": 1.0, + "content": "Sangho Lee, Ming-Wei Shih, Prasun Gera, Taesoo Kim, Hyesoon Kim, and Marcus Peinado. Inferring fine-grained control", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 91, + 283, + 460, + 297 + ], + "spans": [ + { + "bbox": [ + 91, + 283, + 460, + 297 + ], + "score": 1.0, + "content": "flow inside SGX enclaves with branch shadowing. In USENIX Security Symposium, pp. 16–18, 2017.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 300, + 529, + 315 + ], + "spans": [ + { + "bbox": [ + 82, + 300, + 529, + 315 + ], + "score": 1.0, + "content": "Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. SSD:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 92, + 312, + 500, + 324 + ], + "spans": [ + { + "bbox": [ + 92, + 312, + 500, + 324 + ], + "score": 1.0, + "content": "Single shot multibox detector. In European Conference on Computer Vision (ECCV), pp. 21–37. Springer, 2016.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 81, + 329, + 530, + 343 + ], + "spans": [ + { + "bbox": [ + 81, + 329, + 530, + 343 + ], + "score": 1.0, + "content": "Ross M McConnell, Kurt Mehlhorn, Stefan Näher, and Pascal Schweitzer. Certifying algorithms. Computer Science Review,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 92, + 340, + 169, + 352 + ], + "spans": [ + { + "bbox": [ + 92, + 340, + 169, + 352 + ], + "score": 1.0, + "content": "5(2):119–161, 2011.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 357, + 530, + 371 + ], + "spans": [ + { + "bbox": [ + 82, + 357, + 530, + 371 + ], + "score": 1.0, + "content": "Frank McKeen, Ilya Alex, Alex Berenzon, Carlos Rozas, Hisham Shafi, Vedvyas Shanbhogue, and Uday Savagaonkar. Inno-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 92, + 367, + 529, + 381 + ], + "spans": [ + { + "bbox": [ + 92, + 367, + 529, + 381 + ], + "score": 1.0, + "content": "vative instructions and software model for isolated execution. In International Workshop on Hardware and Architectural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 92, + 379, + 270, + 390 + ], + "spans": [ + { + "bbox": [ + 92, + 379, + 270, + 390 + ], + "score": 1.0, + "content": "Support for Security and Privacy (HASP), 2013.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "spans": [ + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "score": 1.0, + "content": "Paulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 91, + 405, + 529, + 420 + ], + "spans": [ + { + "bbox": [ + 91, + 405, + 529, + 420 + ], + "score": 1.0, + "content": "Houston, Oleksii Kuchaev, Ganesh Venkatesh, et al. Mixed precision training. In International Conference on Learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 92, + 416, + 206, + 428 + ], + "spans": [ + { + "bbox": [ + 92, + 416, + 206, + 428 + ], + "score": 1.0, + "content": "Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 433, + 529, + 446 + ], + "spans": [ + { + "bbox": [ + 82, + 433, + 529, + 446 + ], + "score": 1.0, + "content": "Ahmad Moghimi, Gorka Irazoqui, and Thomas Eisenbarth. Cachezoom: How SGX amplifies the power of cache attacks. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 91, + 444, + 479, + 457 + ], + "spans": [ + { + "bbox": [ + 91, + 444, + 479, + 457 + ], + "score": 1.0, + "content": "International Conference on Cryptographic Hardware and Embedded Systems, pp. 69–90. Springer, 2017.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 462, + 529, + 474 + ], + "spans": [ + { + "bbox": [ + 82, + 462, + 529, + 474 + ], + "score": 1.0, + "content": "Payman Mohassel and Yupeng Zhang. SecureML: A system for scalable privacy-preserving machine learning. In IEEE", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 91, + 472, + 315, + 485 + ], + "spans": [ + { + "bbox": [ + 91, + 472, + 315, + 485 + ], + "score": 1.0, + "content": "Symposium on Security and Privacy, pp. 19–38. IEEE, 2017.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 489, + 530, + 504 + ], + "spans": [ + { + "bbox": [ + 82, + 489, + 530, + 504 + ], + "score": 1.0, + "content": "Olga Ohrimenko, Felix Schuster, Cdric Fournet, Aastha Mehta, Sebastian Nowozin, Kapil Vaswani, and Manuel Costa.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 92, + 500, + 462, + 513 + ], + "spans": [ + { + "bbox": [ + 92, + 500, + 462, + 513 + ], + "score": 1.0, + "content": "Oblivious multi-party machine learning on trusted processors. In USENIX Security Symposium, 2016.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "score": 1.0, + "content": "Meni Orenbach, Pavel Lifshits, Marina Minkin, and Mark Silberstein. Eleos: Exitless os services for sgx enclaves. In", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 92, + 528, + 449, + 540 + ], + "spans": [ + { + "bbox": [ + 92, + 528, + 449, + 540 + ], + "score": 1.0, + "content": "Proceedings of the Twelfth European Conference on Computer Systems, pp. 238–253. ACM, 2017.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 81, + 545, + 530, + 559 + ], + "spans": [ + { + "bbox": [ + 81, + 545, + 530, + 559 + ], + "score": 1.0, + "content": "Rafael Pass, Elaine Shi, and Florian Tramèr. Formal abstractions for attested execution secure processors. In EUROCRYPT’17,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 92, + 556, + 117, + 569 + ], + "spans": [ + { + "bbox": [ + 92, + 556, + 117, + 569 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "score": 1.0, + "content": "Tao Sheng, Chen Feng, Shaojie Zhuo, Xiaopeng Zhang, Liang Shen, and Mickey Aleksic. A quantization-friendly separable", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 92, + 584, + 343, + 598 + ], + "spans": [ + { + "bbox": [ + 92, + 584, + 343, + 598 + ], + "score": 1.0, + "content": "convolution for mobilenets. arXiv preprint arXiv:1803.08607, 2018.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 602, + 529, + 615 + ], + "spans": [ + { + "bbox": [ + 82, + 602, + 529, + 615 + ], + "score": 1.0, + "content": "Ming-Wei Shih, Sangho Lee, Taesoo Kim, and Marcus Peinado. T-SGX: Eradicating controlled-channel attacks against", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 92, + 612, + 420, + 626 + ], + "spans": [ + { + "bbox": [ + 92, + 612, + 420, + 626 + ], + "score": 1.0, + "content": "enclave programs. In Network and Distributed System Security Symposium (NDSS), 2017.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 629, + 529, + 644 + ], + "spans": [ + { + "bbox": [ + 82, + 629, + 529, + 644 + ], + "score": 1.0, + "content": "Shweta Shinde, Zheng Leong Chua, Viswesh Narayanan, and Prateek Saxena. Preventing page faults from telling your", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 90, + 640, + 518, + 654 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 518, + 654 + ], + "score": 1.0, + "content": "secrets. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 317–328. ACM, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 81, + 658, + 529, + 672 + ], + "spans": [ + { + "bbox": [ + 81, + 658, + 529, + 672 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 92, + 669, + 182, + 681 + ], + "spans": [ + { + "bbox": [ + 92, + 669, + 182, + 681 + ], + "score": 1.0, + "content": "arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 19.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 697, + 289, + 712 + ], + "spans": [ + { + "bbox": [ + 276, + 697, + 289, + 712 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 81, + 122, + 530, + 682 + ], + "lines": [ + { + "bbox": [ + 81, + 140, + 531, + 154 + ], + "spans": [ + { + "bbox": [ + 81, + 140, + 531, + 154 + ], + "score": 1.0, + "content": "Intel Corp. Intel Software Guard Extensions Evaluation SDK. https://software.intel.com/en-us/sgx-sdk,", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 151, + 117, + 164 + ], + "spans": [ + { + "bbox": [ + 92, + 151, + 117, + 164 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 169, + 530, + 182 + ], + "spans": [ + { + "bbox": [ + 81, + 169, + 530, + 182 + ], + "score": 1.0, + "content": "Intel Corp. Intel software guard extensions (sgx) SW development guidance for potential bounds check bypass (CVE-", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 178, + 529, + 194 + ], + "spans": [ + { + "bbox": [ + 92, + 178, + 529, + 194 + ], + "score": 1.0, + "content": "2017-5753) side channel exploits. https://software.intel.com/sites/default/files/180204_SGX_", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 92, + 190, + 287, + 202 + ], + "spans": [ + { + "bbox": [ + 92, + 190, + 287, + 202 + ], + "score": 1.0, + "content": "SDK_Developer_Guidance_v1.0.pdf, 2018.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 83, + 208, + 528, + 219 + ], + "spans": [ + { + "bbox": [ + 83, + 208, + 528, + 219 + ], + "score": 1.0, + "content": "Chiraag Juvekar, Vinod Vaikuntanathan, and Anantha Chandrakasan. Gazelle: A low latency framework for secure neural", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 218, + 310, + 230 + ], + "spans": [ + { + "bbox": [ + 92, + 218, + 310, + 230 + ], + "score": 1.0, + "content": "network inference. arXiv preprint arXiv:1801.05507, 2018.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 234, + 530, + 249 + ], + "spans": [ + { + "bbox": [ + 81, + 234, + 530, + 249 + ], + "score": 1.0, + "content": "Paul Kocher, Daniel Genkin, Daniel Gruss, Werner Haas, Mike Hamburg, Moritz Lipp, Stefan Mangard, Thomas Prescher,", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 244, + 530, + 259 + ], + "spans": [ + { + "bbox": [ + 91, + 244, + 530, + 259 + ], + "score": 1.0, + "content": "Michael Schwarz, and Yuval Yarom. Spectre attacks: Exploiting speculative execution. arXiv preprint arXiv:1801.01203,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 92, + 254, + 118, + 269 + ], + "spans": [ + { + "bbox": [ + 92, + 254, + 118, + 269 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 273, + 528, + 286 + ], + "spans": [ + { + "bbox": [ + 82, + 273, + 528, + 286 + ], + "score": 1.0, + "content": "Sangho Lee, Ming-Wei Shih, Prasun Gera, Taesoo Kim, Hyesoon Kim, and Marcus Peinado. Inferring fine-grained control", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 283, + 460, + 297 + ], + "spans": [ + { + "bbox": [ + 91, + 283, + 460, + 297 + ], + "score": 1.0, + "content": "flow inside SGX enclaves with branch shadowing. In USENIX Security Symposium, pp. 16–18, 2017.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 300, + 529, + 315 + ], + "spans": [ + { + "bbox": [ + 82, + 300, + 529, + 315 + ], + "score": 1.0, + "content": "Wei Liu, Dragomir Anguelov, Dumitru Erhan, Christian Szegedy, Scott Reed, Cheng-Yang Fu, and Alexander C Berg. SSD:", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 312, + 500, + 324 + ], + "spans": [ + { + "bbox": [ + 92, + 312, + 500, + 324 + ], + "score": 1.0, + "content": "Single shot multibox detector. In European Conference on Computer Vision (ECCV), pp. 21–37. Springer, 2016.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 329, + 530, + 343 + ], + "spans": [ + { + "bbox": [ + 81, + 329, + 530, + 343 + ], + "score": 1.0, + "content": "Ross M McConnell, Kurt Mehlhorn, Stefan Näher, and Pascal Schweitzer. Certifying algorithms. Computer Science Review,", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 340, + 169, + 352 + ], + "spans": [ + { + "bbox": [ + 92, + 340, + 169, + 352 + ], + "score": 1.0, + "content": "5(2):119–161, 2011.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 357, + 530, + 371 + ], + "spans": [ + { + "bbox": [ + 82, + 357, + 530, + 371 + ], + "score": 1.0, + "content": "Frank McKeen, Ilya Alex, Alex Berenzon, Carlos Rozas, Hisham Shafi, Vedvyas Shanbhogue, and Uday Savagaonkar. Inno-", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 367, + 529, + 381 + ], + "spans": [ + { + "bbox": [ + 92, + 367, + 529, + 381 + ], + "score": 1.0, + "content": "vative instructions and software model for isolated execution. In International Workshop on Hardware and Architectural", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 92, + 379, + 270, + 390 + ], + "spans": [ + { + "bbox": [ + 92, + 379, + 270, + 390 + ], + "score": 1.0, + "content": "Support for Security and Privacy (HASP), 2013.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "spans": [ + { + "bbox": [ + 82, + 396, + 529, + 409 + ], + "score": 1.0, + "content": "Paulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 405, + 529, + 420 + ], + "spans": [ + { + "bbox": [ + 91, + 405, + 529, + 420 + ], + "score": 1.0, + "content": "Houston, Oleksii Kuchaev, Ganesh Venkatesh, et al. Mixed precision training. In International Conference on Learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 92, + 416, + 206, + 428 + ], + "spans": [ + { + "bbox": [ + 92, + 416, + 206, + 428 + ], + "score": 1.0, + "content": "Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 433, + 529, + 446 + ], + "spans": [ + { + "bbox": [ + 82, + 433, + 529, + 446 + ], + "score": 1.0, + "content": "Ahmad Moghimi, Gorka Irazoqui, and Thomas Eisenbarth. Cachezoom: How SGX amplifies the power of cache attacks. In", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 444, + 479, + 457 + ], + "spans": [ + { + "bbox": [ + 91, + 444, + 479, + 457 + ], + "score": 1.0, + "content": "International Conference on Cryptographic Hardware and Embedded Systems, pp. 69–90. Springer, 2017.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 462, + 529, + 474 + ], + "spans": [ + { + "bbox": [ + 82, + 462, + 529, + 474 + ], + "score": 1.0, + "content": "Payman Mohassel and Yupeng Zhang. SecureML: A system for scalable privacy-preserving machine learning. In IEEE", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 472, + 315, + 485 + ], + "spans": [ + { + "bbox": [ + 91, + 472, + 315, + 485 + ], + "score": 1.0, + "content": "Symposium on Security and Privacy, pp. 19–38. IEEE, 2017.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 489, + 530, + 504 + ], + "spans": [ + { + "bbox": [ + 82, + 489, + 530, + 504 + ], + "score": 1.0, + "content": "Olga Ohrimenko, Felix Schuster, Cdric Fournet, Aastha Mehta, Sebastian Nowozin, Kapil Vaswani, and Manuel Costa.", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 500, + 462, + 513 + ], + "spans": [ + { + "bbox": [ + 92, + 500, + 462, + 513 + ], + "score": 1.0, + "content": "Oblivious multi-party machine learning on trusted processors. In USENIX Security Symposium, 2016.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "spans": [ + { + "bbox": [ + 82, + 518, + 529, + 532 + ], + "score": 1.0, + "content": "Meni Orenbach, Pavel Lifshits, Marina Minkin, and Mark Silberstein. Eleos: Exitless os services for sgx enclaves. In", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 528, + 449, + 540 + ], + "spans": [ + { + "bbox": [ + 92, + 528, + 449, + 540 + ], + "score": 1.0, + "content": "Proceedings of the Twelfth European Conference on Computer Systems, pp. 238–253. ACM, 2017.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 545, + 530, + 559 + ], + "spans": [ + { + "bbox": [ + 81, + 545, + 530, + 559 + ], + "score": 1.0, + "content": "Rafael Pass, Elaine Shi, and Florian Tramèr. Formal abstractions for attested execution secure processors. In EUROCRYPT’17,", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 556, + 117, + 569 + ], + "spans": [ + { + "bbox": [ + 92, + 556, + 117, + 569 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "score": 1.0, + "content": "Tao Sheng, Chen Feng, Shaojie Zhuo, Xiaopeng Zhang, Liang Shen, and Mickey Aleksic. A quantization-friendly separable", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 584, + 343, + 598 + ], + "spans": [ + { + "bbox": [ + 92, + 584, + 343, + 598 + ], + "score": 1.0, + "content": "convolution for mobilenets. arXiv preprint arXiv:1803.08607, 2018.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 602, + 529, + 615 + ], + "spans": [ + { + "bbox": [ + 82, + 602, + 529, + 615 + ], + "score": 1.0, + "content": "Ming-Wei Shih, Sangho Lee, Taesoo Kim, and Marcus Peinado. T-SGX: Eradicating controlled-channel attacks against", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 612, + 420, + 626 + ], + "spans": [ + { + "bbox": [ + 92, + 612, + 420, + 626 + ], + "score": 1.0, + "content": "enclave programs. In Network and Distributed System Security Symposium (NDSS), 2017.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 629, + 529, + 644 + ], + "spans": [ + { + "bbox": [ + 82, + 629, + 529, + 644 + ], + "score": 1.0, + "content": "Shweta Shinde, Zheng Leong Chua, Viswesh Narayanan, and Prateek Saxena. Preventing page faults from telling your", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 640, + 518, + 654 + ], + "spans": [ + { + "bbox": [ + 90, + 640, + 518, + 654 + ], + "score": 1.0, + "content": "secrets. In ACM Asia Conference on Computer and Communications Security (ASIACCS), pp. 317–328. ACM, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 81, + 658, + 529, + 672 + ], + "spans": [ + { + "bbox": [ + 81, + 658, + 529, + 672 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 669, + 182, + 681 + ], + "spans": [ + { + "bbox": [ + 92, + 669, + 182, + 681 + ], + "score": 1.0, + "content": "arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 141, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 141, + 529, + 154 + ], + "score": 1.0, + "content": "Ion Stoica, Dawn Song, Raluca Ada Popa, David Patterson, Michael W Mahoney, Randy Katz, Anthony D Joseph, Michael", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 151, + 529, + 164 + ], + "spans": [ + { + "bbox": [ + 92, + 151, + 529, + 164 + ], + "score": 1.0, + "content": "Jordan, Joseph M Hellerstein, Joseph E Gonzalez, et al. A Berkeley view of systems challenges for AI. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 92, + 161, + 186, + 173 + ], + "spans": [ + { + "bbox": [ + 92, + 161, + 186, + 173 + ], + "score": 1.0, + "content": "arXiv:1712.05855, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 178, + 529, + 192 + ], + "spans": [ + { + "bbox": [ + 82, + 178, + 529, + 192 + ], + "score": 1.0, + "content": "Pramod Subramanyan, Rohit Sinha, Ilia Lebedev, Srinivas Devadas, and Sanjit A Seshia. A formal foundation for secure", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 187, + 529, + 202 + ], + "spans": [ + { + "bbox": [ + 92, + 187, + 529, + 202 + ], + "score": 1.0, + "content": "remote execution of enclaves. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 92, + 199, + 233, + 211 + ], + "spans": [ + { + "bbox": [ + 92, + 199, + 233, + 211 + ], + "score": 1.0, + "content": "Security, pp. 2435–2450. ACM, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 83, + 217, + 529, + 228 + ], + "spans": [ + { + "bbox": [ + 83, + 217, + 529, + 228 + ], + "score": 1.0, + "content": "Justin Thaler. Time-optimal interactive proofs for circuit evaluation. In Advances in Cryptology–CRYPTO 2013, pp. 71–89.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 227, + 151, + 237 + ], + "spans": [ + { + "bbox": [ + 92, + 227, + 151, + 237 + ], + "score": 1.0, + "content": "Springer, 2013.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 241, + 529, + 257 + ], + "spans": [ + { + "bbox": [ + 82, + 241, + 529, + 257 + ], + "score": 1.0, + "content": "Florian Tramèr, Fan Zhang, Huang Lin, Jean-Pierre Hubaux, Ari Juels, and Elaine Shi. Sealed-Glass Proofs: Using transparent", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 253, + 458, + 266 + ], + "spans": [ + { + "bbox": [ + 92, + 253, + 458, + 266 + ], + "score": 1.0, + "content": "enclaves to prove and sell knowledge. In IEEE European Symposium on Security and Privacy, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 81, + 268, + 529, + 285 + ], + "spans": [ + { + "bbox": [ + 81, + 268, + 529, + 285 + ], + "score": 1.0, + "content": "Jo Van Bulck, Nico Weichbrodt, Rüdiger Kapitza, Frank Piessens, and Raoul Strackx. Telling your secrets without page", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 281, + 468, + 293 + ], + "spans": [ + { + "bbox": [ + 92, + 281, + 468, + 293 + ], + "score": 1.0, + "content": "faults: Stealthy page table-based attacks on enclaved execution. In USENIX Security Symposium, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 298, + 530, + 310 + ], + "spans": [ + { + "bbox": [ + 82, + 298, + 530, + 310 + ], + "score": 1.0, + "content": "Jo Van Bulck, Marina Minkin, Ofir Weisse, Daniel Genkin, Baris Kasikci, Frank Piessens, Mark Silberstein, Thomas F.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 307, + 529, + 320 + ], + "spans": [ + { + "bbox": [ + 92, + 307, + 529, + 320 + ], + "score": 1.0, + "content": "Wenisch, Yuval Yarom, and Raoul Strackx. Foreshadow: Extracting the keys to the Intel SGX kingdom with transient", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 92, + 317, + 410, + 330 + ], + "spans": [ + { + "bbox": [ + 92, + 317, + 410, + 330 + ], + "score": 1.0, + "content": "out-of-order execution. In Proceedings of the 27th USENIX Security Symposium, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 333, + 529, + 348 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 529, + 348 + ], + "score": 1.0, + "content": "Riad S Wahby, Max Howald, Siddharth Garg, Abhi Shelat, and Michael Walfish. Verifiable ASICs. In IEEE Symposium on", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 345, + 269, + 357 + ], + "spans": [ + { + "bbox": [ + 91, + 345, + 269, + 357 + ], + "score": 1.0, + "content": "Security and Privacy, pp. 759–778. IEEE, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 82, + 361, + 529, + 376 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 529, + 376 + ], + "score": 1.0, + "content": "Riad S Wahby, Ye Ji, Andrew J Blumberg, Abhi Shelat, Justin Thaler, Michael Walfish, and Thomas Wies. Full accounting", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 372, + 529, + 385 + ], + "spans": [ + { + "bbox": [ + 92, + 372, + 529, + 385 + ], + "score": 1.0, + "content": "for verifiable outsourcing. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 92, + 381, + 233, + 394 + ], + "spans": [ + { + "bbox": [ + 92, + 381, + 233, + 394 + ], + "score": 1.0, + "content": "Security, pp. 2071–2086. ACM, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 83, + 399, + 528, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 399, + 528, + 412 + ], + "score": 1.0, + "content": "Yuanzhong Xu, Weidong Cui, and Marcus Peinado. Controlled-channel attacks: Deterministic side channels for untrusted", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 409, + 303, + 422 + ], + "spans": [ + { + "bbox": [ + 91, + 409, + 303, + 422 + ], + "score": 1.0, + "content": "operating systems. In S&P’15, pp. 640–656. IEEE, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 83, + 426, + 528, + 439 + ], + "spans": [ + { + "bbox": [ + 83, + 426, + 528, + 439 + ], + "score": 1.0, + "content": "Yupeng Zhang, Charalampos Papamanthou, and Jonathan Katz. Alitheia: Towards practical verifiable graph processing. In", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 435, + 529, + 448 + ], + "spans": [ + { + "bbox": [ + 92, + 435, + 529, + 448 + ], + "score": 1.0, + "content": "Proceedings of the 2014 ACM SIGSAC Conference on Computer and Communications Security, pp. 856–867. ACM, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 81, + 140, + 531, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 81, + 141, + 530, + 449 + ], + "lines": [ + { + "bbox": [ + 82, + 141, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 141, + 529, + 154 + ], + "score": 1.0, + "content": "Ion Stoica, Dawn Song, Raluca Ada Popa, David Patterson, Michael W Mahoney, Randy Katz, Anthony D Joseph, Michael", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 92, + 151, + 529, + 164 + ], + "spans": [ + { + "bbox": [ + 92, + 151, + 529, + 164 + ], + "score": 1.0, + "content": "Jordan, Joseph M Hellerstein, Joseph E Gonzalez, et al. A Berkeley view of systems challenges for AI. arXiv preprint", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 92, + 161, + 186, + 173 + ], + "spans": [ + { + "bbox": [ + 92, + 161, + 186, + 173 + ], + "score": 1.0, + "content": "arXiv:1712.05855, 2017.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 178, + 529, + 192 + ], + "spans": [ + { + "bbox": [ + 82, + 178, + 529, + 192 + ], + "score": 1.0, + "content": "Pramod Subramanyan, Rohit Sinha, Ilia Lebedev, Srinivas Devadas, and Sanjit A Seshia. A formal foundation for secure", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 92, + 187, + 529, + 202 + ], + "spans": [ + { + "bbox": [ + 92, + 187, + 529, + 202 + ], + "score": 1.0, + "content": "remote execution of enclaves. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 92, + 199, + 233, + 211 + ], + "spans": [ + { + "bbox": [ + 92, + 199, + 233, + 211 + ], + "score": 1.0, + "content": "Security, pp. 2435–2450. ACM, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 83, + 217, + 529, + 228 + ], + "spans": [ + { + "bbox": [ + 83, + 217, + 529, + 228 + ], + "score": 1.0, + "content": "Justin Thaler. Time-optimal interactive proofs for circuit evaluation. In Advances in Cryptology–CRYPTO 2013, pp. 71–89.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 92, + 227, + 151, + 237 + ], + "spans": [ + { + "bbox": [ + 92, + 227, + 151, + 237 + ], + "score": 1.0, + "content": "Springer, 2013.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 241, + 529, + 257 + ], + "spans": [ + { + "bbox": [ + 82, + 241, + 529, + 257 + ], + "score": 1.0, + "content": "Florian Tramèr, Fan Zhang, Huang Lin, Jean-Pierre Hubaux, Ari Juels, and Elaine Shi. Sealed-Glass Proofs: Using transparent", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 92, + 253, + 458, + 266 + ], + "spans": [ + { + "bbox": [ + 92, + 253, + 458, + 266 + ], + "score": 1.0, + "content": "enclaves to prove and sell knowledge. In IEEE European Symposium on Security and Privacy, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 81, + 268, + 529, + 285 + ], + "spans": [ + { + "bbox": [ + 81, + 268, + 529, + 285 + ], + "score": 1.0, + "content": "Jo Van Bulck, Nico Weichbrodt, Rüdiger Kapitza, Frank Piessens, and Raoul Strackx. Telling your secrets without page", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 92, + 281, + 468, + 293 + ], + "spans": [ + { + "bbox": [ + 92, + 281, + 468, + 293 + ], + "score": 1.0, + "content": "faults: Stealthy page table-based attacks on enclaved execution. In USENIX Security Symposium, 2017.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 298, + 530, + 310 + ], + "spans": [ + { + "bbox": [ + 82, + 298, + 530, + 310 + ], + "score": 1.0, + "content": "Jo Van Bulck, Marina Minkin, Ofir Weisse, Daniel Genkin, Baris Kasikci, Frank Piessens, Mark Silberstein, Thomas F.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 92, + 307, + 529, + 320 + ], + "spans": [ + { + "bbox": [ + 92, + 307, + 529, + 320 + ], + "score": 1.0, + "content": "Wenisch, Yuval Yarom, and Raoul Strackx. Foreshadow: Extracting the keys to the Intel SGX kingdom with transient", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 92, + 317, + 410, + 330 + ], + "spans": [ + { + "bbox": [ + 92, + 317, + 410, + 330 + ], + "score": 1.0, + "content": "out-of-order execution. In Proceedings of the 27th USENIX Security Symposium, 2018.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 333, + 529, + 348 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 529, + 348 + ], + "score": 1.0, + "content": "Riad S Wahby, Max Howald, Siddharth Garg, Abhi Shelat, and Michael Walfish. Verifiable ASICs. In IEEE Symposium on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 91, + 345, + 269, + 357 + ], + "spans": [ + { + "bbox": [ + 91, + 345, + 269, + 357 + ], + "score": 1.0, + "content": "Security and Privacy, pp. 759–778. IEEE, 2016.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 361, + 529, + 376 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 529, + 376 + ], + "score": 1.0, + "content": "Riad S Wahby, Ye Ji, Andrew J Blumberg, Abhi Shelat, Justin Thaler, Michael Walfish, and Thomas Wies. Full accounting", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 92, + 372, + 529, + 385 + ], + "spans": [ + { + "bbox": [ + 92, + 372, + 529, + 385 + ], + "score": 1.0, + "content": "for verifiable outsourcing. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 92, + 381, + 233, + 394 + ], + "spans": [ + { + "bbox": [ + 92, + 381, + 233, + 394 + ], + "score": 1.0, + "content": "Security, pp. 2071–2086. ACM, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 83, + 399, + 528, + 412 + ], + "spans": [ + { + "bbox": [ + 83, + 399, + 528, + 412 + ], + "score": 1.0, + "content": "Yuanzhong Xu, Weidong Cui, and Marcus Peinado. Controlled-channel attacks: Deterministic side channels for untrusted", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 91, + 409, + 303, + 422 + ], + "spans": [ + { + "bbox": [ + 91, + 409, + 303, + 422 + ], + "score": 1.0, + "content": "operating systems. In S&P’15, pp. 640–656. IEEE, 2015.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 83, + 426, + 528, + 439 + ], + "spans": [ + { + "bbox": [ + 83, + 426, + 528, + 439 + ], + "score": 1.0, + "content": "Yupeng Zhang, Charalampos Papamanthou, and Jonathan Katz. Alitheia: Towards practical verifiable graph processing. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 92, + 435, + 529, + 448 + ], + "spans": [ + { + "bbox": [ + 92, + 435, + 529, + 448 + ], + "score": 1.0, + "content": "Proceedings of the 2014 ACM SIGSAC Conference on Computer and Communications Security, pp. 856–867. ACM, 2014.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 84, + 466, + 288, + 479 + ], + "lines": [ + { + "bbox": [ + 82, + 465, + 289, + 482 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 289, + 482 + ], + "score": 1.0, + "content": "A DETAILS ON INTEL SGX SECURITY", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 84, + 491, + 528, + 525 + ], + "lines": [ + { + "bbox": [ + 83, + 491, + 528, + 505 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 528, + 505 + ], + "score": 1.0, + "content": "SGX enclaves isolate execution of a program from all other processes on a same host, including a potentially", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 502, + 528, + 514 + ], + "spans": [ + { + "bbox": [ + 83, + 502, + 528, + 514 + ], + "score": 1.0, + "content": "malicious OS. In particular, enclave memory is fully encrypted and authenticated. When a word is read from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 513, + 530, + 527 + ], + "spans": [ + { + "bbox": [ + 82, + 513, + 530, + 527 + ], + "score": 1.0, + "content": "memory into a CPU register, a Memory Management Engine handles the decryption (Costan & Devadas, 2016).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 84, + 530, + 528, + 619 + ], + "lines": [ + { + "bbox": [ + 83, + 531, + 529, + 542 + ], + "spans": [ + { + "bbox": [ + 83, + 531, + 529, + 542 + ], + "score": 1.0, + "content": "While SGX covers many software and hardware attack vectors, there is a large and prominent class of side-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "score": 1.0, + "content": "channel attacks that it explicitly does not address (Costan & Devadas, 2016; Tramèr et al., 2017). In the past", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 81, + 552, + 528, + 565 + ], + "spans": [ + { + "bbox": [ + 81, + 552, + 512, + 565 + ], + "score": 1.0, + "content": "years, many attacks have been proposed, with the goal of undermining privacy of enclave computations", + "type": "text" + }, + { + "bbox": [ + 513, + 552, + 528, + 563 + ], + "score": 0.29, + "content": "\\mathrm { { X u } }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 563, + 529, + 575 + ], + "spans": [ + { + "bbox": [ + 82, + 563, + 529, + 575 + ], + "score": 1.0, + "content": "et al., 2015; Brasser et al., 2017; Moghimi et al., 2017; Götzfried et al., 2017; Van Bulck et al., 2017; Lee et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 573, + 529, + 588 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 588 + ], + "score": 1.0, + "content": "2017). Most of these attacks rely on data dependent code behavior in an enclave (e.g., branching or memory", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "score": 1.0, + "content": "access) that can be partially observed by other processes running on the same host. These side-channels are a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 596, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 596, + 529, + 609 + ], + "score": 1.0, + "content": "minor concern for the DNN computations considered in this paper, as the standard computations in a DNN are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 83, + 608, + 508, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 608, + 508, + 620 + ], + "score": 1.0, + "content": "data-oblivious (i.e., the same operations are applied regardless of the input data) (Ohrimenko et al., 2016).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 84, + 623, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 83, + 624, + 528, + 636 + ], + "spans": [ + { + "bbox": [ + 83, + 624, + 528, + 636 + ], + "score": 1.0, + "content": "The recent Spectre attacks on speculative execution (Kocher et al., 2018) also prove damaging to SGX (as well", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 81, + 634, + 530, + 647 + ], + "spans": [ + { + "bbox": [ + 81, + 634, + 530, + 647 + ], + "score": 1.0, + "content": "as to most other processors), as recently shown (Chen et al., 2018; Dall et al., 2018; Van Bulck et al., 2018).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 82, + 645, + 530, + 658 + ], + "spans": [ + { + "bbox": [ + 82, + 645, + 530, + 658 + ], + "score": 1.0, + "content": "Mitigations for these side-channel attacks are being developed (Shinde et al., 2016; Shih et al., 2017; Chen et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "score": 1.0, + "content": "2017; Intel Corp., 2018) but a truly secure solution might require some architectural changes, e.g., as in the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 82, + 668, + 286, + 680 + ], + "spans": [ + { + "bbox": [ + 82, + 668, + 286, + 680 + ], + "score": 1.0, + "content": "proposed Sanctum processor (Costan et al., 2016).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 287, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 81, + 141, + 530, + 449 + ], + "lines": [], + "index": 11.5, + "bbox_fs": [ + 81, + 141, + 530, + 448 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 84, + 466, + 288, + 479 + ], + "lines": [ + { + "bbox": [ + 82, + 465, + 289, + 482 + ], + "spans": [ + { + "bbox": [ + 82, + 465, + 289, + 482 + ], + "score": 1.0, + "content": "A DETAILS ON INTEL SGX SECURITY", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 84, + 491, + 528, + 525 + ], + "lines": [ + { + "bbox": [ + 83, + 491, + 528, + 505 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 528, + 505 + ], + "score": 1.0, + "content": "SGX enclaves isolate execution of a program from all other processes on a same host, including a potentially", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 502, + 528, + 514 + ], + "spans": [ + { + "bbox": [ + 83, + 502, + 528, + 514 + ], + "score": 1.0, + "content": "malicious OS. In particular, enclave memory is fully encrypted and authenticated. When a word is read from", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 513, + 530, + 527 + ], + "spans": [ + { + "bbox": [ + 82, + 513, + 530, + 527 + ], + "score": 1.0, + "content": "memory into a CPU register, a Memory Management Engine handles the decryption (Costan & Devadas, 2016).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 82, + 491, + 530, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 530, + 528, + 619 + ], + "lines": [ + { + "bbox": [ + 83, + 531, + 529, + 542 + ], + "spans": [ + { + "bbox": [ + 83, + 531, + 529, + 542 + ], + "score": 1.0, + "content": "While SGX covers many software and hardware attack vectors, there is a large and prominent class of side-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "spans": [ + { + "bbox": [ + 82, + 540, + 529, + 554 + ], + "score": 1.0, + "content": "channel attacks that it explicitly does not address (Costan & Devadas, 2016; Tramèr et al., 2017). In the past", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 81, + 552, + 528, + 565 + ], + "spans": [ + { + "bbox": [ + 81, + 552, + 512, + 565 + ], + "score": 1.0, + "content": "years, many attacks have been proposed, with the goal of undermining privacy of enclave computations", + "type": "text" + }, + { + "bbox": [ + 513, + 552, + 528, + 563 + ], + "score": 0.29, + "content": "\\mathrm { { X u } }", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 563, + 529, + 575 + ], + "spans": [ + { + "bbox": [ + 82, + 563, + 529, + 575 + ], + "score": 1.0, + "content": "et al., 2015; Brasser et al., 2017; Moghimi et al., 2017; Götzfried et al., 2017; Van Bulck et al., 2017; Lee et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 573, + 529, + 588 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 588 + ], + "score": 1.0, + "content": "2017). Most of these attacks rely on data dependent code behavior in an enclave (e.g., branching or memory", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "score": 1.0, + "content": "access) that can be partially observed by other processes running on the same host. These side-channels are a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 596, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 596, + 529, + 609 + ], + "score": 1.0, + "content": "minor concern for the DNN computations considered in this paper, as the standard computations in a DNN are", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 83, + 608, + 508, + 620 + ], + "spans": [ + { + "bbox": [ + 83, + 608, + 508, + 620 + ], + "score": 1.0, + "content": "data-oblivious (i.e., the same operations are applied regardless of the input data) (Ohrimenko et al., 2016).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 81, + 531, + 529, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 623, + 528, + 679 + ], + "lines": [ + { + "bbox": [ + 83, + 624, + 528, + 636 + ], + "spans": [ + { + "bbox": [ + 83, + 624, + 528, + 636 + ], + "score": 1.0, + "content": "The recent Spectre attacks on speculative execution (Kocher et al., 2018) also prove damaging to SGX (as well", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 81, + 634, + 530, + 647 + ], + "spans": [ + { + "bbox": [ + 81, + 634, + 530, + 647 + ], + "score": 1.0, + "content": "as to most other processors), as recently shown (Chen et al., 2018; Dall et al., 2018; Van Bulck et al., 2018).", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 82, + 645, + 530, + 658 + ], + "spans": [ + { + "bbox": [ + 82, + 645, + 530, + 658 + ], + "score": 1.0, + "content": "Mitigations for these side-channel attacks are being developed (Shinde et al., 2016; Shih et al., 2017; Chen et al.,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "spans": [ + { + "bbox": [ + 82, + 655, + 528, + 669 + ], + "score": 1.0, + "content": "2017; Intel Corp., 2018) but a truly secure solution might require some architectural changes, e.g., as in the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 82, + 668, + 286, + 680 + ], + "spans": [ + { + "bbox": [ + 82, + 668, + 286, + 680 + ], + "score": 1.0, + "content": "proposed Sanctum processor (Costan et al., 2016).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 81, + 624, + 530, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 83, + 140, + 529, + 174 + ], + "lines": [ + { + "bbox": [ + 83, + 140, + 527, + 152 + ], + "spans": [ + { + "bbox": [ + 83, + 140, + 527, + 152 + ], + "score": 1.0, + "content": "We refrain from formally modeling SGX’s (or other TEE’s) security in this paper, as Slalom is mostly concerned", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 83, + 152, + 529, + 164 + ], + "spans": [ + { + "bbox": [ + 83, + 152, + 529, + 164 + ], + "score": 1.0, + "content": "with outsourcing protocols wherein the TEE acts as a client. We refer the interested reader to (Pass et al., 2017;", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 163, + 431, + 175 + ], + "spans": [ + { + "bbox": [ + 83, + 163, + 431, + 175 + ], + "score": 1.0, + "content": "Fisch et al., 2017; Subramanyan et al., 2017) for different attempts at such formalisms.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 84, + 191, + 345, + 204 + ], + "lines": [ + { + "bbox": [ + 82, + 190, + 346, + 206 + ], + "spans": [ + { + "bbox": [ + 82, + 190, + 346, + 206 + ], + "score": 1.0, + "content": "B FORMAL SECURITY DEFINITIONS AND PROOFS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 83, + 217, + 528, + 240 + ], + "lines": [ + { + "bbox": [ + 83, + 217, + 528, + 230 + ], + "spans": [ + { + "bbox": [ + 83, + 217, + 307, + 230 + ], + "score": 1.0, + "content": "We define a secure outsourcing scheme, between a client", + "type": "text" + }, + { + "bbox": [ + 307, + 218, + 314, + 227 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 217, + 364, + 230 + ], + "score": 1.0, + "content": "and a server", + "type": "text" + }, + { + "bbox": [ + 365, + 218, + 372, + 227 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 217, + 420, + 230 + ], + "score": 1.0, + "content": ", for a DNN", + "type": "text" + }, + { + "bbox": [ + 420, + 217, + 483, + 229 + ], + "score": 0.91, + "content": "F ( x ) : \\mathcal { X } \\mathcal { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 217, + 528, + 230 + ], + "score": 1.0, + "content": "from some", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 228, + 493, + 240 + ], + "spans": [ + { + "bbox": [ + 83, + 228, + 112, + 240 + ], + "score": 1.0, + "content": "family", + "type": "text" + }, + { + "bbox": [ + 112, + 228, + 122, + 239 + ], + "score": 0.81, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 228, + 376, + 240 + ], + "score": 1.0, + "content": "(e.g., all DNNs of a given size). We first assume that the model", + "type": "text" + }, + { + "bbox": [ + 377, + 229, + 386, + 238 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 228, + 456, + 240 + ], + "score": 1.0, + "content": "is known to both", + "type": "text" + }, + { + "bbox": [ + 456, + 229, + 463, + 238 + ], + "score": 0.82, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 228, + 481, + 240 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 482, + 229, + 489, + 238 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 228, + 493, + 240 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 83, + 243, + 526, + 266 + ], + "lines": [ + { + "bbox": [ + 82, + 242, + 528, + 257 + ], + "spans": [ + { + "bbox": [ + 82, + 242, + 528, + 257 + ], + "score": 1.0, + "content": "Definition B.1 (Secure Outsourcing Schemes). A secure outsourcing scheme consists of an offline preprocessing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 83, + 254, + 472, + 267 + ], + "spans": [ + { + "bbox": [ + 83, + 254, + 365, + 267 + ], + "score": 1.0, + "content": "algorithm Preproc, as well as an interactive online protocol Outsource", + "type": "text" + }, + { + "bbox": [ + 366, + 255, + 390, + 266 + ], + "score": 0.91, + "content": "\\langle \\mathcal { C } , \\mathcal { S } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 254, + 472, + 267 + ], + "score": 1.0, + "content": ", defined as follows:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 85, + 270, + 528, + 323 + ], + "lines": [ + { + "bbox": [ + 87, + 270, + 528, + 284 + ], + "spans": [ + { + "bbox": [ + 87, + 270, + 97, + 284 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 98, + 270, + 188, + 283 + ], + "score": 0.85, + "content": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 270, + 347, + 284 + ], + "score": 1.0, + "content": ": The preprocessing algorithm is run by", + "type": "text" + }, + { + "bbox": [ + 347, + 271, + 354, + 281 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 270, + 528, + 284 + ], + "score": 1.0, + "content": "and generates some data-independent state", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 98, + 282, + 492, + 295 + ], + "spans": [ + { + "bbox": [ + 98, + 283, + 111, + 293 + ], + "score": 0.34, + "content": "\\mathtt { s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 282, + 492, + 295 + ], + "score": 1.0, + "content": "(e.g., cryptographic keys or precomputed values to accelerate the online outsourcing protocol.)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 87, + 298, + 528, + 313 + ], + "spans": [ + { + "bbox": [ + 87, + 298, + 96, + 313 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 96, + 299, + 276, + 312 + ], + "score": 0.8, + "content": "\\mathcal { V } \\cup \\{ \\bot \\} \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle \\mathrm { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 298, + 471, + 313 + ], + "score": 1.0, + "content": ": The online outsourcing protocol is initiated by", + "type": "text" + }, + { + "bbox": [ + 471, + 300, + 479, + 310 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 298, + 528, + 313 + ], + "score": 1.0, + "content": "with inputs", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 97, + 311, + 488, + 324 + ], + "spans": [ + { + "bbox": [ + 97, + 311, + 138, + 323 + ], + "score": 0.85, + "content": "( F , x , s \\ t )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 311, + 250, + 324 + ], + "score": 1.0, + "content": ". At the end of the protocol,", + "type": "text" + }, + { + "bbox": [ + 251, + 312, + 258, + 321 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 311, + 347, + 324 + ], + "score": 1.0, + "content": "either outputs a value", + "type": "text" + }, + { + "bbox": [ + 347, + 311, + 373, + 322 + ], + "score": 0.91, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 311, + 432, + 324 + ], + "score": 1.0, + "content": "or aborts (i.e.,", + "type": "text" + }, + { + "bbox": [ + 432, + 311, + 439, + 321 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 311, + 472, + 324 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 473, + 312, + 481, + 321 + ], + "score": 0.64, + "content": "\\perp", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 311, + 488, + 324 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 86, + 327, + 381, + 339 + ], + "lines": [ + { + "bbox": [ + 84, + 326, + 382, + 341 + ], + "spans": [ + { + "bbox": [ + 84, + 326, + 382, + 341 + ], + "score": 1.0, + "content": "The properties that we may require from a secure outsourcing scheme are:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 88, + 342, + 524, + 367 + ], + "lines": [ + { + "bbox": [ + 88, + 340, + 528, + 357 + ], + "spans": [ + { + "bbox": [ + 88, + 340, + 205, + 357 + ], + "score": 1.0, + "content": "• Correctness: For any", + "type": "text" + }, + { + "bbox": [ + 205, + 343, + 251, + 353 + ], + "score": 0.84, + "content": "\\begin{array} { r l r l } { F } & { { } \\in } & { { \\mathcal { F } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 340, + 276, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 276, + 343, + 320, + 353 + ], + "score": 0.83, + "content": "\\begin{array} { r l r l } { x } & { { } \\in } & { { \\mathcal { X } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 340, + 367, + 357 + ], + "score": 1.0, + "content": ", running", + "type": "text" + }, + { + "bbox": [ + 367, + 342, + 473, + 355 + ], + "score": 0.29, + "content": "\\begin{array} { r l r } { \\mathsf { s t } } & { { } \\gets } & { \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 340, + 499, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 500, + 344, + 528, + 355 + ], + "score": 0.82, + "content": "y ", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 96, + 352, + 296, + 368 + ], + "spans": [ + { + "bbox": [ + 96, + 352, + 141, + 368 + ], + "score": 1.0, + "content": "Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 354, + 222, + 366 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 352, + 250, + 368 + ], + "score": 1.0, + "content": "yields", + "type": "text" + }, + { + "bbox": [ + 250, + 354, + 291, + 366 + ], + "score": 0.92, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 352, + 296, + 368 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 89, + 371, + 525, + 396 + ], + "lines": [ + { + "bbox": [ + 87, + 370, + 528, + 385 + ], + "spans": [ + { + "bbox": [ + 87, + 370, + 183, + 385 + ], + "score": 1.0, + "content": "• t-Integrity: For any", + "type": "text" + }, + { + "bbox": [ + 183, + 372, + 212, + 382 + ], + "score": 0.89, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 370, + 239, + 385 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 239, + 372, + 267, + 382 + ], + "score": 0.91, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 370, + 450, + 385 + ], + "score": 1.0, + "content": "and probabilistic polynomial-time adversary", + "type": "text" + }, + { + "bbox": [ + 450, + 372, + 462, + 382 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 370, + 528, + 385 + ], + "score": 1.0, + "content": ", the probability", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 97, + 383, + 400, + 396 + ], + "spans": [ + { + "bbox": [ + 97, + 383, + 115, + 396 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 115, + 383, + 263, + 396 + ], + "score": 0.74, + "content": "\\tilde { y } = \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { \\ast } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 383, + 281, + 396 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 383, + 343, + 395 + ], + "score": 0.93, + "content": "\\tilde { y } \\notin \\{ F ( x ) , \\bot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 383, + 390, + 396 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 391, + 384, + 396, + 393 + ], + "score": 0.69, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 383, + 400, + 396 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 90, + 401, + 525, + 424 + ], + "lines": [ + { + "bbox": [ + 89, + 400, + 527, + 414 + ], + "spans": [ + { + "bbox": [ + 89, + 400, + 193, + 414 + ], + "score": 1.0, + "content": "• Input privacy: For any", + "type": "text" + }, + { + "bbox": [ + 193, + 401, + 222, + 411 + ], + "score": 0.89, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 400, + 252, + 414 + ], + "score": 1.0, + "content": ", inputs", + "type": "text" + }, + { + "bbox": [ + 252, + 401, + 292, + 412 + ], + "score": 0.91, + "content": "x , x ^ { \\prime } \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 400, + 439, + 414 + ], + "score": 1.0, + "content": "and probabilistic poly-time adversary", + "type": "text" + }, + { + "bbox": [ + 440, + 402, + 452, + 411 + ], + "score": 0.86, + "content": "{ \\boldsymbol { S } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 400, + 504, + 414 + ], + "score": 1.0, + "content": ", the views of", + "type": "text" + }, + { + "bbox": [ + 505, + 401, + 517, + 411 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 517, + 400, + 527, + 414 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 97, + 411, + 527, + 425 + ], + "spans": [ + { + "bbox": [ + 97, + 411, + 141, + 425 + ], + "score": 1.0, + "content": "Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 412, + 227, + 424 + ], + "score": 0.91, + "content": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 411, + 288, + 425 + ], + "score": 1.0, + "content": "and Outsource", + "type": "text" + }, + { + "bbox": [ + 288, + 412, + 376, + 424 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , \\overline { { x ^ { \\prime } } } , \\mathrm { { s t } } ) , S ^ { \\ast } ( \\mathrm { { \\bar { F } } } ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 411, + 527, + 425 + ], + "score": 1.0, + "content": "are computationally indistinguishable.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 87, + 429, + 528, + 442 + ], + "lines": [ + { + "bbox": [ + 88, + 428, + 529, + 442 + ], + "spans": [ + { + "bbox": [ + 88, + 428, + 254, + 442 + ], + "score": 1.0, + "content": "• Efficiency: The online computation of", + "type": "text" + }, + { + "bbox": [ + 254, + 430, + 262, + 440 + ], + "score": 0.82, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 428, + 443, + 442 + ], + "score": 1.0, + "content": "in Outsource should be less than the cost for", + "type": "text" + }, + { + "bbox": [ + 443, + 430, + 450, + 440 + ], + "score": 0.81, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 428, + 496, + 442 + ], + "score": 1.0, + "content": "to evaluate", + "type": "text" + }, + { + "bbox": [ + 497, + 430, + 526, + 440 + ], + "score": 0.9, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 428, + 529, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 84, + 454, + 528, + 477 + ], + "lines": [ + { + "bbox": [ + 83, + 454, + 528, + 467 + ], + "spans": [ + { + "bbox": [ + 83, + 454, + 496, + 467 + ], + "score": 1.0, + "content": "Model Privacy. In some applications a secure outsourcing scheme may also require to hide the model", + "type": "text" + }, + { + "bbox": [ + 496, + 455, + 505, + 464 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 505, + 454, + 528, + 467 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 83, + 466, + 473, + 477 + ], + "spans": [ + { + "bbox": [ + 83, + 466, + 108, + 477 + ], + "score": 1.0, + "content": "either", + "type": "text" + }, + { + "bbox": [ + 109, + 466, + 117, + 475 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 466, + 128, + 477 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 129, + 466, + 136, + 475 + ], + "score": 0.79, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 466, + 340, + 477 + ], + "score": 1.0, + "content": "(in which case that party would obviously not take", + "type": "text" + }, + { + "bbox": [ + 341, + 466, + 350, + 475 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 466, + 473, + 477 + ], + "score": 1.0, + "content": "as input in the above scheme).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 83, + 482, + 528, + 505 + ], + "lines": [ + { + "bbox": [ + 83, + 482, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 83, + 482, + 258, + 495 + ], + "score": 1.0, + "content": "Privacy with respect to an adversarial server", + "type": "text" + }, + { + "bbox": [ + 258, + 483, + 270, + 492 + ], + "score": 0.87, + "content": "{ \\boldsymbol { S } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 482, + 529, + 495 + ], + "score": 1.0, + "content": "(which Slalom does not provide), is defined as the indistinguisha-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 83, + 493, + 504, + 506 + ], + "spans": [ + { + "bbox": [ + 83, + 493, + 118, + 506 + ], + "score": 1.0, + "content": "bility of", + "type": "text" + }, + { + "bbox": [ + 118, + 494, + 130, + 504 + ], + "score": 0.85, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 493, + 217, + 506 + ], + "score": 1.0, + "content": "’s views in Outsource", + "type": "text" + }, + { + "bbox": [ + 217, + 493, + 288, + 505 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 493, + 349, + 506 + ], + "score": 1.0, + "content": "and Outsource", + "type": "text" + }, + { + "bbox": [ + 349, + 493, + 423, + 505 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F ^ { \\prime } , x , \\mathrm { s t } ) , S ^ { * } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 493, + 456, + 506 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 456, + 493, + 499, + 505 + ], + "score": 0.92, + "content": "F , F ^ { \\prime } \\in \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 493, + 504, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 84, + 510, + 528, + 555 + ], + "lines": [ + { + "bbox": [ + 82, + 509, + 529, + 524 + ], + "spans": [ + { + "bbox": [ + 82, + 509, + 405, + 524 + ], + "score": 1.0, + "content": "As noted in Section 2.1, a meaningful model-privacy guarantee with respect to", + "type": "text" + }, + { + "bbox": [ + 405, + 511, + 412, + 520 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 509, + 466, + 524 + ], + "score": 1.0, + "content": "requires that", + "type": "text" + }, + { + "bbox": [ + 467, + 511, + 475, + 520 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 509, + 529, + 524 + ], + "score": 1.0, + "content": "first commit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 520, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 160, + 533 + ], + "score": 1.0, + "content": "to a specific DNN", + "type": "text" + }, + { + "bbox": [ + 160, + 522, + 169, + 531 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 520, + 254, + 533 + ], + "score": 1.0, + "content": ", and then convinces", + "type": "text" + }, + { + "bbox": [ + 254, + 522, + 262, + 531 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 520, + 528, + 533 + ], + "score": 1.0, + "content": "that her outputs were produced with the same model as all other", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 531, + 530, + 546 + ], + "spans": [ + { + "bbox": [ + 82, + 531, + 530, + 546 + ], + "score": 1.0, + "content": "clients’. We refer the reader to Canetti et al. (2002) for formal definitions for such commit-and-prove schemes,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 543, + 419, + 556 + ], + "spans": [ + { + "bbox": [ + 82, + 543, + 419, + 556 + ], + "score": 1.0, + "content": "and to Tramèr et al. (2017) who show how to trivially instantiate them using a TEE.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 84, + 562, + 528, + 608 + ], + "lines": [ + { + "bbox": [ + 81, + 561, + 528, + 578 + ], + "spans": [ + { + "bbox": [ + 81, + 561, + 205, + 578 + ], + "score": 1.0, + "content": "Proof of Theorem 3.2. Let", + "type": "text" + }, + { + "bbox": [ + 206, + 564, + 237, + 574 + ], + "score": 0.32, + "content": "\\mathrm { s t ~ ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 561, + 333, + 578 + ], + "score": 1.0, + "content": "Preproc and Outsource", + "type": "text" + }, + { + "bbox": [ + 334, + 563, + 413, + 575 + ], + "score": 0.81, + "content": "\\langle \\mathrm { T E E } ( F , x , \\mathrm { s t } ) , S \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 561, + 528, + 578 + ], + "score": 1.0, + "content": "be the outsourcing scheme", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 573, + 528, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 528, + 587 + ], + "score": 1.0, + "content": "defined in Figure 1 (right). We assume that all random values sampled by the TEE are produced by a secure", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 585, + 529, + 599 + ], + "spans": [ + { + "bbox": [ + 82, + 585, + 432, + 599 + ], + "score": 1.0, + "content": "cryptographically secure pseudorandom number generator (PRNG) (with elements in", + "type": "text" + }, + { + "bbox": [ + 433, + 585, + 459, + 596 + ], + "score": 0.9, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 585, + 529, + 599 + ], + "score": 1.0, + "content": "for the integrity-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 595, + 412, + 610 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 140, + 610 + ], + "score": 1.0, + "content": "check vectors", + "type": "text" + }, + { + "bbox": [ + 141, + 599, + 146, + 606 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 595, + 291, + 610 + ], + "score": 1.0, + "content": "used in Freivalds’ algorithm, and in", + "type": "text" + }, + { + "bbox": [ + 291, + 596, + 299, + 606 + ], + "score": 0.77, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 595, + 396, + 610 + ], + "score": 1.0, + "content": "for the blinding vectors", + "type": "text" + }, + { + "bbox": [ + 396, + 598, + 405, + 607 + ], + "score": 0.79, + "content": "r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 595, + 412, + 610 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 612, + 529, + 627 + ], + "spans": [ + { + "bbox": [ + 82, + 612, + 362, + 627 + ], + "score": 1.0, + "content": "We first consider integrity. Assume that the scheme is run with input", + "type": "text" + }, + { + "bbox": [ + 362, + 615, + 374, + 624 + ], + "score": 0.86, + "content": "x _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 612, + 478, + 627 + ], + "score": 1.0, + "content": "and that the TEE outputs", + "type": "text" + }, + { + "bbox": [ + 478, + 615, + 489, + 624 + ], + "score": 0.84, + "content": "y _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 612, + 529, + 627 + ], + "score": 1.0, + "content": ". We will", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 623, + 529, + 637 + ], + "spans": [ + { + "bbox": [ + 83, + 623, + 111, + 637 + ], + "score": 1.0, + "content": "bound", + "type": "text" + }, + { + "bbox": [ + 111, + 624, + 217, + 636 + ], + "score": 0.91, + "content": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) \\ | \\ { \\dot { y } } _ { n } \\neq \\bot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 623, + 449, + 637 + ], + "score": 1.0, + "content": ". By the security of the PRNG, we can replace the vectors", + "type": "text" + }, + { + "bbox": [ + 449, + 626, + 455, + 634 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 623, + 529, + 637 + ], + "score": 1.0, + "content": "used in Freivalds’", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 275, + 648 + ], + "score": 1.0, + "content": "algorithm by truly uniformly random values in", + "type": "text" + }, + { + "bbox": [ + 275, + 635, + 302, + 646 + ], + "score": 0.9, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 634, + 461, + 648 + ], + "score": 1.0, + "content": ", via a simple hybrid argument. For the", + "type": "text" + }, + { + "bbox": [ + 461, + 636, + 466, + 645 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "-th linear layer,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 646, + 529, + 659 + ], + "spans": [ + { + "bbox": [ + 82, + 646, + 138, + 659 + ], + "score": 1.0, + "content": "with operator", + "type": "text" + }, + { + "bbox": [ + 139, + 646, + 152, + 657 + ], + "score": 0.88, + "content": "W _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 646, + 179, + 659 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 179, + 648, + 190, + 657 + ], + "score": 0.86, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 646, + 276, + 659 + ], + "score": 1.0, + "content": "and purported output", + "type": "text" + }, + { + "bbox": [ + 277, + 648, + 285, + 657 + ], + "score": 0.81, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 646, + 361, + 659 + ], + "score": 1.0, + "content": ", we then have that", + "type": "text" + }, + { + "bbox": [ + 362, + 646, + 406, + 657 + ], + "score": 0.91, + "content": "y _ { i } \\neq x _ { i } W _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 646, + 504, + 659 + ], + "score": 1.0, + "content": "with probability at most", + "type": "text" + }, + { + "bbox": [ + 505, + 646, + 525, + 658 + ], + "score": 0.91, + "content": "1 / | \\mathbb { S } | ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 646, + 529, + 659 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 656, + 529, + 670 + ], + "spans": [ + { + "bbox": [ + 83, + 656, + 266, + 670 + ], + "score": 1.0, + "content": "By a simple union bound, we thus have that", + "type": "text" + }, + { + "bbox": [ + 266, + 657, + 413, + 669 + ], + "score": 0.91, + "content": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) ] \\leq { n } / { | \\mathbb { S } | ^ { k } } - \\operatorname { n e g l } ( \\lambda ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 656, + 529, + 670 + ], + "score": 1.0, + "content": ". Note that this bound holds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 667, + 354, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 244, + 681 + ], + "score": 1.0, + "content": "even if the same (secret) random values", + "type": "text" + }, + { + "bbox": [ + 244, + 671, + 249, + 678 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 667, + 354, + 681 + ], + "score": 1.0, + "content": "are re-used across layers.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 83, + 140, + 529, + 174 + ], + "lines": [ + { + "bbox": [ + 83, + 140, + 527, + 152 + ], + "spans": [ + { + "bbox": [ + 83, + 140, + 527, + 152 + ], + "score": 1.0, + "content": "We refrain from formally modeling SGX’s (or other TEE’s) security in this paper, as Slalom is mostly concerned", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 83, + 152, + 529, + 164 + ], + "spans": [ + { + "bbox": [ + 83, + 152, + 529, + 164 + ], + "score": 1.0, + "content": "with outsourcing protocols wherein the TEE acts as a client. We refer the interested reader to (Pass et al., 2017;", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 163, + 431, + 175 + ], + "spans": [ + { + "bbox": [ + 83, + 163, + 431, + 175 + ], + "score": 1.0, + "content": "Fisch et al., 2017; Subramanyan et al., 2017) for different attempts at such formalisms.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 83, + 140, + 529, + 175 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 191, + 345, + 204 + ], + "lines": [ + { + "bbox": [ + 82, + 190, + 346, + 206 + ], + "spans": [ + { + "bbox": [ + 82, + 190, + 346, + 206 + ], + "score": 1.0, + "content": "B FORMAL SECURITY DEFINITIONS AND PROOFS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 83, + 217, + 528, + 240 + ], + "lines": [ + { + "bbox": [ + 83, + 217, + 528, + 230 + ], + "spans": [ + { + "bbox": [ + 83, + 217, + 307, + 230 + ], + "score": 1.0, + "content": "We define a secure outsourcing scheme, between a client", + "type": "text" + }, + { + "bbox": [ + 307, + 218, + 314, + 227 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 217, + 364, + 230 + ], + "score": 1.0, + "content": "and a server", + "type": "text" + }, + { + "bbox": [ + 365, + 218, + 372, + 227 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 217, + 420, + 230 + ], + "score": 1.0, + "content": ", for a DNN", + "type": "text" + }, + { + "bbox": [ + 420, + 217, + 483, + 229 + ], + "score": 0.91, + "content": "F ( x ) : \\mathcal { X } \\mathcal { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 217, + 528, + 230 + ], + "score": 1.0, + "content": "from some", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 228, + 493, + 240 + ], + "spans": [ + { + "bbox": [ + 83, + 228, + 112, + 240 + ], + "score": 1.0, + "content": "family", + "type": "text" + }, + { + "bbox": [ + 112, + 228, + 122, + 239 + ], + "score": 0.81, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 228, + 376, + 240 + ], + "score": 1.0, + "content": "(e.g., all DNNs of a given size). We first assume that the model", + "type": "text" + }, + { + "bbox": [ + 377, + 229, + 386, + 238 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 228, + 456, + 240 + ], + "score": 1.0, + "content": "is known to both", + "type": "text" + }, + { + "bbox": [ + 456, + 229, + 463, + 238 + ], + "score": 0.82, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 228, + 481, + 240 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 482, + 229, + 489, + 238 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 228, + 493, + 240 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 83, + 217, + 528, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 243, + 526, + 266 + ], + "lines": [ + { + "bbox": [ + 82, + 242, + 528, + 257 + ], + "spans": [ + { + "bbox": [ + 82, + 242, + 528, + 257 + ], + "score": 1.0, + "content": "Definition B.1 (Secure Outsourcing Schemes). A secure outsourcing scheme consists of an offline preprocessing", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 83, + 254, + 472, + 267 + ], + "spans": [ + { + "bbox": [ + 83, + 254, + 365, + 267 + ], + "score": 1.0, + "content": "algorithm Preproc, as well as an interactive online protocol Outsource", + "type": "text" + }, + { + "bbox": [ + 366, + 255, + 390, + 266 + ], + "score": 0.91, + "content": "\\langle \\mathcal { C } , \\mathcal { S } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 254, + 472, + 267 + ], + "score": 1.0, + "content": ", defined as follows:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 82, + 242, + 528, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 85, + 270, + 528, + 323 + ], + "lines": [ + { + "bbox": [ + 87, + 270, + 528, + 284 + ], + "spans": [ + { + "bbox": [ + 87, + 270, + 97, + 284 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 98, + 270, + 188, + 283 + ], + "score": 0.85, + "content": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 270, + 347, + 284 + ], + "score": 1.0, + "content": ": The preprocessing algorithm is run by", + "type": "text" + }, + { + "bbox": [ + 347, + 271, + 354, + 281 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 270, + 528, + 284 + ], + "score": 1.0, + "content": "and generates some data-independent state", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 98, + 282, + 492, + 295 + ], + "spans": [ + { + "bbox": [ + 98, + 283, + 111, + 293 + ], + "score": 0.34, + "content": "\\mathtt { s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 282, + 492, + 295 + ], + "score": 1.0, + "content": "(e.g., cryptographic keys or precomputed values to accelerate the online outsourcing protocol.)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 87, + 298, + 528, + 313 + ], + "spans": [ + { + "bbox": [ + 87, + 298, + 96, + 313 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 96, + 299, + 276, + 312 + ], + "score": 0.8, + "content": "\\mathcal { V } \\cup \\{ \\bot \\} \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle \\mathrm { : }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 298, + 471, + 313 + ], + "score": 1.0, + "content": ": The online outsourcing protocol is initiated by", + "type": "text" + }, + { + "bbox": [ + 471, + 300, + 479, + 310 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 298, + 528, + 313 + ], + "score": 1.0, + "content": "with inputs", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 97, + 311, + 488, + 324 + ], + "spans": [ + { + "bbox": [ + 97, + 311, + 138, + 323 + ], + "score": 0.85, + "content": "( F , x , s \\ t )", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 311, + 250, + 324 + ], + "score": 1.0, + "content": ". At the end of the protocol,", + "type": "text" + }, + { + "bbox": [ + 251, + 312, + 258, + 321 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 311, + 347, + 324 + ], + "score": 1.0, + "content": "either outputs a value", + "type": "text" + }, + { + "bbox": [ + 347, + 311, + 373, + 322 + ], + "score": 0.91, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 311, + 432, + 324 + ], + "score": 1.0, + "content": "or aborts (i.e.,", + "type": "text" + }, + { + "bbox": [ + 432, + 311, + 439, + 321 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 311, + 472, + 324 + ], + "score": 1.0, + "content": "outputs", + "type": "text" + }, + { + "bbox": [ + 473, + 312, + 481, + 321 + ], + "score": 0.64, + "content": "\\perp", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 311, + 488, + 324 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 87, + 270, + 528, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 86, + 327, + 381, + 339 + ], + "lines": [ + { + "bbox": [ + 84, + 326, + 382, + 341 + ], + "spans": [ + { + "bbox": [ + 84, + 326, + 382, + 341 + ], + "score": 1.0, + "content": "The properties that we may require from a secure outsourcing scheme are:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 84, + 326, + 382, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 342, + 524, + 367 + ], + "lines": [ + { + "bbox": [ + 88, + 340, + 528, + 357 + ], + "spans": [ + { + "bbox": [ + 88, + 340, + 205, + 357 + ], + "score": 1.0, + "content": "• Correctness: For any", + "type": "text" + }, + { + "bbox": [ + 205, + 343, + 251, + 353 + ], + "score": 0.84, + "content": "\\begin{array} { r l r l } { F } & { { } \\in } & { { \\mathcal { F } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 340, + 276, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 276, + 343, + 320, + 353 + ], + "score": 0.83, + "content": "\\begin{array} { r l r l } { x } & { { } \\in } & { { \\mathcal { X } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 340, + 367, + 357 + ], + "score": 1.0, + "content": ", running", + "type": "text" + }, + { + "bbox": [ + 367, + 342, + 473, + 355 + ], + "score": 0.29, + "content": "\\begin{array} { r l r } { \\mathsf { s t } } & { { } \\gets } & { \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 340, + 499, + 357 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 500, + 344, + 528, + 355 + ], + "score": 0.82, + "content": "y ", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 96, + 352, + 296, + 368 + ], + "spans": [ + { + "bbox": [ + 96, + 352, + 141, + 368 + ], + "score": 1.0, + "content": "Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 354, + 222, + 366 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 352, + 250, + 368 + ], + "score": 1.0, + "content": "yields", + "type": "text" + }, + { + "bbox": [ + 250, + 354, + 291, + 366 + ], + "score": 0.92, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 352, + 296, + 368 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 88, + 340, + 528, + 368 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 371, + 525, + 396 + ], + "lines": [ + { + "bbox": [ + 87, + 370, + 528, + 385 + ], + "spans": [ + { + "bbox": [ + 87, + 370, + 183, + 385 + ], + "score": 1.0, + "content": "• t-Integrity: For any", + "type": "text" + }, + { + "bbox": [ + 183, + 372, + 212, + 382 + ], + "score": 0.89, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 370, + 239, + 385 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 239, + 372, + 267, + 382 + ], + "score": 0.91, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 370, + 450, + 385 + ], + "score": 1.0, + "content": "and probabilistic polynomial-time adversary", + "type": "text" + }, + { + "bbox": [ + 450, + 372, + 462, + 382 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 370, + 528, + 385 + ], + "score": 1.0, + "content": ", the probability", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 97, + 383, + 400, + 396 + ], + "spans": [ + { + "bbox": [ + 97, + 383, + 115, + 396 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 115, + 383, + 263, + 396 + ], + "score": 0.74, + "content": "\\tilde { y } = \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { \\ast } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 383, + 281, + 396 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 383, + 343, + 395 + ], + "score": 0.93, + "content": "\\tilde { y } \\notin \\{ F ( x ) , \\bot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 383, + 390, + 396 + ], + "score": 1.0, + "content": "is less than", + "type": "text" + }, + { + "bbox": [ + 391, + 384, + 396, + 393 + ], + "score": 0.69, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 383, + 400, + 396 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 87, + 370, + 528, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 90, + 401, + 525, + 424 + ], + "lines": [ + { + "bbox": [ + 89, + 400, + 527, + 414 + ], + "spans": [ + { + "bbox": [ + 89, + 400, + 193, + 414 + ], + "score": 1.0, + "content": "• Input privacy: For any", + "type": "text" + }, + { + "bbox": [ + 193, + 401, + 222, + 411 + ], + "score": 0.89, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 400, + 252, + 414 + ], + "score": 1.0, + "content": ", inputs", + "type": "text" + }, + { + "bbox": [ + 252, + 401, + 292, + 412 + ], + "score": 0.91, + "content": "x , x ^ { \\prime } \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 400, + 439, + 414 + ], + "score": 1.0, + "content": "and probabilistic poly-time adversary", + "type": "text" + }, + { + "bbox": [ + 440, + 402, + 452, + 411 + ], + "score": 0.86, + "content": "{ \\boldsymbol { S } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 400, + 504, + 414 + ], + "score": 1.0, + "content": ", the views of", + "type": "text" + }, + { + "bbox": [ + 505, + 401, + 517, + 411 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 517, + 400, + 527, + 414 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 97, + 411, + 527, + 425 + ], + "spans": [ + { + "bbox": [ + 97, + 411, + 141, + 425 + ], + "score": 1.0, + "content": "Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 412, + 227, + 424 + ], + "score": 0.91, + "content": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 411, + 288, + 425 + ], + "score": 1.0, + "content": "and Outsource", + "type": "text" + }, + { + "bbox": [ + 288, + 412, + 376, + 424 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , \\overline { { x ^ { \\prime } } } , \\mathrm { { s t } } ) , S ^ { \\ast } ( \\mathrm { { \\bar { F } } } ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 411, + 527, + 425 + ], + "score": 1.0, + "content": "are computationally indistinguishable.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 89, + 400, + 527, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 87, + 429, + 528, + 442 + ], + "lines": [ + { + "bbox": [ + 88, + 428, + 529, + 442 + ], + "spans": [ + { + "bbox": [ + 88, + 428, + 254, + 442 + ], + "score": 1.0, + "content": "• Efficiency: The online computation of", + "type": "text" + }, + { + "bbox": [ + 254, + 430, + 262, + 440 + ], + "score": 0.82, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 428, + 443, + 442 + ], + "score": 1.0, + "content": "in Outsource should be less than the cost for", + "type": "text" + }, + { + "bbox": [ + 443, + 430, + 450, + 440 + ], + "score": 0.81, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 428, + 496, + 442 + ], + "score": 1.0, + "content": "to evaluate", + "type": "text" + }, + { + "bbox": [ + 497, + 430, + 526, + 440 + ], + "score": 0.9, + "content": "F \\in { \\mathcal { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 428, + 529, + 442 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 88, + 428, + 529, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 454, + 528, + 477 + ], + "lines": [ + { + "bbox": [ + 83, + 454, + 528, + 467 + ], + "spans": [ + { + "bbox": [ + 83, + 454, + 496, + 467 + ], + "score": 1.0, + "content": "Model Privacy. In some applications a secure outsourcing scheme may also require to hide the model", + "type": "text" + }, + { + "bbox": [ + 496, + 455, + 505, + 464 + ], + "score": 0.84, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 505, + 454, + 528, + 467 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 83, + 466, + 473, + 477 + ], + "spans": [ + { + "bbox": [ + 83, + 466, + 108, + 477 + ], + "score": 1.0, + "content": "either", + "type": "text" + }, + { + "bbox": [ + 109, + 466, + 117, + 475 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 466, + 128, + 477 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 129, + 466, + 136, + 475 + ], + "score": 0.79, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 466, + 340, + 477 + ], + "score": 1.0, + "content": "(in which case that party would obviously not take", + "type": "text" + }, + { + "bbox": [ + 341, + 466, + 350, + 475 + ], + "score": 0.81, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 466, + 473, + 477 + ], + "score": 1.0, + "content": "as input in the above scheme).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 83, + 454, + 528, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 482, + 528, + 505 + ], + "lines": [ + { + "bbox": [ + 83, + 482, + 529, + 495 + ], + "spans": [ + { + "bbox": [ + 83, + 482, + 258, + 495 + ], + "score": 1.0, + "content": "Privacy with respect to an adversarial server", + "type": "text" + }, + { + "bbox": [ + 258, + 483, + 270, + 492 + ], + "score": 0.87, + "content": "{ \\boldsymbol { S } } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 482, + 529, + 495 + ], + "score": 1.0, + "content": "(which Slalom does not provide), is defined as the indistinguisha-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 83, + 493, + 504, + 506 + ], + "spans": [ + { + "bbox": [ + 83, + 493, + 118, + 506 + ], + "score": 1.0, + "content": "bility of", + "type": "text" + }, + { + "bbox": [ + 118, + 494, + 130, + 504 + ], + "score": 0.85, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 493, + 217, + 506 + ], + "score": 1.0, + "content": "’s views in Outsource", + "type": "text" + }, + { + "bbox": [ + 217, + 493, + 288, + 505 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 493, + 349, + 506 + ], + "score": 1.0, + "content": "and Outsource", + "type": "text" + }, + { + "bbox": [ + 349, + 493, + 423, + 505 + ], + "score": 0.9, + "content": "\\langle \\mathcal { C } ( F ^ { \\prime } , x , \\mathrm { s t } ) , S ^ { * } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 493, + 456, + 506 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 456, + 493, + 499, + 505 + ], + "score": 0.92, + "content": "F , F ^ { \\prime } \\in \\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 493, + 504, + 506 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 83, + 482, + 529, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 510, + 528, + 555 + ], + "lines": [ + { + "bbox": [ + 82, + 509, + 529, + 524 + ], + "spans": [ + { + "bbox": [ + 82, + 509, + 405, + 524 + ], + "score": 1.0, + "content": "As noted in Section 2.1, a meaningful model-privacy guarantee with respect to", + "type": "text" + }, + { + "bbox": [ + 405, + 511, + 412, + 520 + ], + "score": 0.76, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 509, + 466, + 524 + ], + "score": 1.0, + "content": "requires that", + "type": "text" + }, + { + "bbox": [ + 467, + 511, + 475, + 520 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 509, + 529, + 524 + ], + "score": 1.0, + "content": "first commit", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 520, + 528, + 533 + ], + "spans": [ + { + "bbox": [ + 82, + 520, + 160, + 533 + ], + "score": 1.0, + "content": "to a specific DNN", + "type": "text" + }, + { + "bbox": [ + 160, + 522, + 169, + 531 + ], + "score": 0.79, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 520, + 254, + 533 + ], + "score": 1.0, + "content": ", and then convinces", + "type": "text" + }, + { + "bbox": [ + 254, + 522, + 262, + 531 + ], + "score": 0.77, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 520, + 528, + 533 + ], + "score": 1.0, + "content": "that her outputs were produced with the same model as all other", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 531, + 530, + 546 + ], + "spans": [ + { + "bbox": [ + 82, + 531, + 530, + 546 + ], + "score": 1.0, + "content": "clients’. We refer the reader to Canetti et al. (2002) for formal definitions for such commit-and-prove schemes,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 543, + 419, + 556 + ], + "spans": [ + { + "bbox": [ + 82, + 543, + 419, + 556 + ], + "score": 1.0, + "content": "and to Tramèr et al. (2017) who show how to trivially instantiate them using a TEE.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 82, + 509, + 530, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 562, + 528, + 608 + ], + "lines": [ + { + "bbox": [ + 81, + 561, + 528, + 578 + ], + "spans": [ + { + "bbox": [ + 81, + 561, + 205, + 578 + ], + "score": 1.0, + "content": "Proof of Theorem 3.2. Let", + "type": "text" + }, + { + "bbox": [ + 206, + 564, + 237, + 574 + ], + "score": 0.32, + "content": "\\mathrm { s t ~ ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 561, + 333, + 578 + ], + "score": 1.0, + "content": "Preproc and Outsource", + "type": "text" + }, + { + "bbox": [ + 334, + 563, + 413, + 575 + ], + "score": 0.81, + "content": "\\langle \\mathrm { T E E } ( F , x , \\mathrm { s t } ) , S \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 561, + 528, + 578 + ], + "score": 1.0, + "content": "be the outsourcing scheme", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 573, + 528, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 528, + 587 + ], + "score": 1.0, + "content": "defined in Figure 1 (right). We assume that all random values sampled by the TEE are produced by a secure", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 585, + 529, + 599 + ], + "spans": [ + { + "bbox": [ + 82, + 585, + 432, + 599 + ], + "score": 1.0, + "content": "cryptographically secure pseudorandom number generator (PRNG) (with elements in", + "type": "text" + }, + { + "bbox": [ + 433, + 585, + 459, + 596 + ], + "score": 0.9, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 585, + 529, + 599 + ], + "score": 1.0, + "content": "for the integrity-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 595, + 412, + 610 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 140, + 610 + ], + "score": 1.0, + "content": "check vectors", + "type": "text" + }, + { + "bbox": [ + 141, + 599, + 146, + 606 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 595, + 291, + 610 + ], + "score": 1.0, + "content": "used in Freivalds’ algorithm, and in", + "type": "text" + }, + { + "bbox": [ + 291, + 596, + 299, + 606 + ], + "score": 0.77, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 595, + 396, + 610 + ], + "score": 1.0, + "content": "for the blinding vectors", + "type": "text" + }, + { + "bbox": [ + 396, + 598, + 405, + 607 + ], + "score": 0.79, + "content": "r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 595, + 412, + 610 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 81, + 561, + 529, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 528, + 680 + ], + "lines": [ + { + "bbox": [ + 82, + 612, + 529, + 627 + ], + "spans": [ + { + "bbox": [ + 82, + 612, + 362, + 627 + ], + "score": 1.0, + "content": "We first consider integrity. Assume that the scheme is run with input", + "type": "text" + }, + { + "bbox": [ + 362, + 615, + 374, + 624 + ], + "score": 0.86, + "content": "x _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 612, + 478, + 627 + ], + "score": 1.0, + "content": "and that the TEE outputs", + "type": "text" + }, + { + "bbox": [ + 478, + 615, + 489, + 624 + ], + "score": 0.84, + "content": "y _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 612, + 529, + 627 + ], + "score": 1.0, + "content": ". We will", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 623, + 529, + 637 + ], + "spans": [ + { + "bbox": [ + 83, + 623, + 111, + 637 + ], + "score": 1.0, + "content": "bound", + "type": "text" + }, + { + "bbox": [ + 111, + 624, + 217, + 636 + ], + "score": 0.91, + "content": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) \\ | \\ { \\dot { y } } _ { n } \\neq \\bot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 623, + 449, + 637 + ], + "score": 1.0, + "content": ". By the security of the PRNG, we can replace the vectors", + "type": "text" + }, + { + "bbox": [ + 449, + 626, + 455, + 634 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 623, + 529, + 637 + ], + "score": 1.0, + "content": "used in Freivalds’", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 275, + 648 + ], + "score": 1.0, + "content": "algorithm by truly uniformly random values in", + "type": "text" + }, + { + "bbox": [ + 275, + 635, + 302, + 646 + ], + "score": 0.9, + "content": "\\mathbb { S } \\subseteq \\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 634, + 461, + 648 + ], + "score": 1.0, + "content": ", via a simple hybrid argument. For the", + "type": "text" + }, + { + "bbox": [ + 461, + 636, + 466, + 645 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "-th linear layer,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 646, + 529, + 659 + ], + "spans": [ + { + "bbox": [ + 82, + 646, + 138, + 659 + ], + "score": 1.0, + "content": "with operator", + "type": "text" + }, + { + "bbox": [ + 139, + 646, + 152, + 657 + ], + "score": 0.88, + "content": "W _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 646, + 179, + 659 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 179, + 648, + 190, + 657 + ], + "score": 0.86, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 646, + 276, + 659 + ], + "score": 1.0, + "content": "and purported output", + "type": "text" + }, + { + "bbox": [ + 277, + 648, + 285, + 657 + ], + "score": 0.81, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 646, + 361, + 659 + ], + "score": 1.0, + "content": ", we then have that", + "type": "text" + }, + { + "bbox": [ + 362, + 646, + 406, + 657 + ], + "score": 0.91, + "content": "y _ { i } \\neq x _ { i } W _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 646, + 504, + 659 + ], + "score": 1.0, + "content": "with probability at most", + "type": "text" + }, + { + "bbox": [ + 505, + 646, + 525, + 658 + ], + "score": 0.91, + "content": "1 / | \\mathbb { S } | ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 526, + 646, + 529, + 659 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 83, + 656, + 529, + 670 + ], + "spans": [ + { + "bbox": [ + 83, + 656, + 266, + 670 + ], + "score": 1.0, + "content": "By a simple union bound, we thus have that", + "type": "text" + }, + { + "bbox": [ + 266, + 657, + 413, + 669 + ], + "score": 0.91, + "content": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) ] \\leq { n } / { | \\mathbb { S } | ^ { k } } - \\operatorname { n e g l } ( \\lambda ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 656, + 529, + 670 + ], + "score": 1.0, + "content": ". Note that this bound holds", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 82, + 667, + 354, + 681 + ], + "spans": [ + { + "bbox": [ + 82, + 667, + 244, + 681 + ], + "score": 1.0, + "content": "even if the same (secret) random values", + "type": "text" + }, + { + "bbox": [ + 244, + 671, + 249, + 678 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 667, + 354, + 681 + ], + "score": 1.0, + "content": "are re-used across layers.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 82, + 612, + 529, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 528, + 196 + ], + "lines": [ + { + "bbox": [ + 82, + 140, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 140, + 279, + 154 + ], + "score": 1.0, + "content": "For privacy, consider the views of an adversary", + "type": "text" + }, + { + "bbox": [ + 279, + 141, + 291, + 151 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 140, + 423, + 154 + ], + "score": 1.0, + "content": "when Slalom is run with inputs", + "type": "text" + }, + { + "bbox": [ + 423, + 142, + 435, + 151 + ], + "score": 0.85, + "content": "x _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 140, + 453, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 141, + 465, + 152 + ], + "score": 0.89, + "content": "x _ { 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 140, + 529, + 154 + ], + "score": 1.0, + "content": ". Again, by the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 151, + 528, + 164 + ], + "spans": [ + { + "bbox": [ + 82, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "security of the PRNG, we consider a hybrid protocol where we replace the pre-computed blinding vectors", + "type": "text" + }, + { + "bbox": [ + 505, + 153, + 515, + 163 + ], + "score": 0.84, + "content": "r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 515, + 151, + 528, + 164 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 162, + 529, + 176 + ], + "spans": [ + { + "bbox": [ + 82, + 162, + 216, + 176 + ], + "score": 1.0, + "content": "truly uniformly random values in", + "type": "text" + }, + { + "bbox": [ + 216, + 163, + 224, + 172 + ], + "score": 0.41, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 162, + 321, + 176 + ], + "score": 1.0, + "content": ". In this hybrid protocol,", + "type": "text" + }, + { + "bbox": [ + 321, + 163, + 373, + 174 + ], + "score": 0.92, + "content": "\\tilde { x } _ { i } = x _ { i } + r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 162, + 529, + 176 + ], + "score": 1.0, + "content": "is simply a “one-time-pad” encryption", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 529, + 186 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 93, + 186 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 94, + 175, + 104, + 185 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 104, + 173, + 157, + 186 + ], + "score": 1.0, + "content": "over the field", + "type": "text" + }, + { + "bbox": [ + 158, + 174, + 165, + 184 + ], + "score": 0.63, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 173, + 179, + 186 + ], + "score": 1.0, + "content": ", so", + "type": "text" + }, + { + "bbox": [ + 179, + 174, + 192, + 184 + ], + "score": 0.86, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 173, + 529, + 186 + ], + "score": 1.0, + "content": "’s views in both executions of the hybrid protocol are equal (information theoretically).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 81, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 81, + 183, + 108, + 197 + ], + "score": 1.0, + "content": "Thus,", + "type": "text" + }, + { + "bbox": [ + 108, + 185, + 120, + 195 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 183, + 479, + 197 + ], + "score": 1.0, + "content": "’s views in both executions of the original protocol are computationally indistinguishable.", + "type": "text" + }, + { + "bbox": [ + 518, + 185, + 528, + 196 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 84, + 207, + 526, + 229 + ], + "lines": [ + { + "bbox": [ + 83, + 206, + 528, + 219 + ], + "spans": [ + { + "bbox": [ + 83, + 206, + 393, + 219 + ], + "score": 1.0, + "content": "Proof of Corollary 3.3. The outsourcing protocol between the remote client", + "type": "text" + }, + { + "bbox": [ + 393, + 208, + 400, + 217 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 206, + 443, + 219 + ], + "score": 1.0, + "content": "and server", + "type": "text" + }, + { + "bbox": [ + 444, + 207, + 452, + 217 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 206, + 528, + 219 + ], + "score": 1.0, + "content": "hosting the TEE is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 217, + 339, + 230 + ], + "spans": [ + { + "bbox": [ + 82, + 217, + 322, + 230 + ], + "score": 1.0, + "content": "simply defined as follows (we assume the model belongs to", + "type": "text" + }, + { + "bbox": [ + 323, + 218, + 331, + 228 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 217, + 339, + 230 + ], + "score": 1.0, + "content": "):", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 86, + 234, + 526, + 257 + ], + "lines": [ + { + "bbox": [ + 88, + 234, + 528, + 246 + ], + "spans": [ + { + "bbox": [ + 88, + 235, + 97, + 246 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 97, + 234, + 167, + 246 + ], + "score": 0.56, + "content": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c ( ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 235, + 173, + 246 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 174, + 235, + 181, + 245 + ], + "score": 0.69, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 235, + 528, + 246 + ], + "score": 1.0, + "content": "and the TEE setup a secure authenticated communication channel, using the TEE’s", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 96, + 245, + 509, + 257 + ], + "spans": [ + { + "bbox": [ + 96, + 245, + 325, + 257 + ], + "score": 1.0, + "content": "remote attestation property. The TEE receives the model", + "type": "text" + }, + { + "bbox": [ + 326, + 246, + 335, + 255 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 245, + 357, + 257 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 358, + 246, + 366, + 255 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 245, + 509, + 257 + ], + "score": 1.0, + "content": "and initializes the Slalom protocol.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 89, + 261, + 481, + 312 + ], + "lines": [ + { + "bbox": [ + 88, + 258, + 215, + 274 + ], + "spans": [ + { + "bbox": [ + 88, + 258, + 141, + 274 + ], + "score": 1.0, + "content": "• Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 260, + 211, + 273 + ], + "score": 0.92, + "content": "\\langle { \\mathcal { C } } ( x , { \\mathrm { s t } } ) , S ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 258, + 215, + 274 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 101, + 273, + 297, + 285 + ], + "spans": [ + { + "bbox": [ + 101, + 273, + 111, + 285 + ], + "score": 1.0, + "content": "–", + "type": "text" + }, + { + "bbox": [ + 111, + 273, + 119, + 284 + ], + "score": 0.4, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 273, + 145, + 285 + ], + "score": 1.0, + "content": "sends", + "type": "text" + }, + { + "bbox": [ + 145, + 275, + 152, + 283 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 273, + 297, + 285 + ], + "score": 1.0, + "content": "to the TEE over the secure channel.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 100, + 286, + 326, + 300 + ], + "spans": [ + { + "bbox": [ + 100, + 286, + 227, + 300 + ], + "score": 1.0, + "content": "– The TEE securely computes", + "type": "text" + }, + { + "bbox": [ + 227, + 287, + 268, + 299 + ], + "score": 0.93, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 286, + 326, + 300 + ], + "score": 1.0, + "content": "using Slalom.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 101, + 299, + 479, + 313 + ], + "spans": [ + { + "bbox": [ + 101, + 299, + 175, + 313 + ], + "score": 1.0, + "content": "– The TEE sends", + "type": "text" + }, + { + "bbox": [ + 175, + 302, + 182, + 312 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 299, + 348, + 313 + ], + "score": 1.0, + "content": "(and a publicly verifiable commitment to", + "type": "text" + }, + { + "bbox": [ + 348, + 302, + 357, + 311 + ], + "score": 0.78, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 299, + 372, + 313 + ], + "score": 1.0, + "content": ") to", + "type": "text" + }, + { + "bbox": [ + 372, + 301, + 379, + 311 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 299, + 479, + 313 + ], + "score": 1.0, + "content": "over the secure channel.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 83, + 317, + 453, + 329 + ], + "lines": [ + { + "bbox": [ + 82, + 317, + 454, + 330 + ], + "spans": [ + { + "bbox": [ + 82, + 317, + 344, + 330 + ], + "score": 1.0, + "content": "If the TEE is secure (i.e., it acts as a trusted third party hosted by", + "type": "text" + }, + { + "bbox": [ + 344, + 318, + 352, + 327 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 317, + 454, + 330 + ], + "score": 1.0, + "content": "), then the result follows.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 86, + 348, + 435, + 361 + ], + "lines": [ + { + "bbox": [ + 82, + 347, + 437, + 363 + ], + "spans": [ + { + "bbox": [ + 82, + 347, + 437, + 363 + ], + "score": 1.0, + "content": "C PERFORMANCE COMPARISON OF DNN OUTSOURCING SCHEMES", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 84, + 375, + 528, + 419 + ], + "lines": [ + { + "bbox": [ + 83, + 376, + 529, + 388 + ], + "spans": [ + { + "bbox": [ + 83, + 376, + 529, + 388 + ], + "score": 1.0, + "content": "We provide a brief overview of the outsourcing approaches compared in Table 1. Our baseline runs a DNN in a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 385, + 528, + 400 + ], + "spans": [ + { + "bbox": [ + 82, + 385, + 528, + 400 + ], + "score": 1.0, + "content": "TEE (a single-threaded Intel SGX enclave) and can provide all the security guarantees of an ML outsourcing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 397, + 529, + 410 + ], + "spans": [ + { + "bbox": [ + 82, + 397, + 369, + 410 + ], + "score": 1.0, + "content": "scheme. On a high-end GPU (an Nvidia TITAN XP), we achieve over", + "type": "text" + }, + { + "bbox": [ + 370, + 398, + 389, + 408 + ], + "score": 0.87, + "content": "5 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 397, + 529, + 410 + ], + "score": 1.0, + "content": "higher throughput but no security.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 81, + 407, + 521, + 422 + ], + "spans": [ + { + "bbox": [ + 81, + 407, + 466, + 422 + ], + "score": 1.0, + "content": "For example, for MobileNet, the enclave evaluates 16 images/sec and the GPU 900 images/sec", + "type": "text" + }, + { + "bbox": [ + 467, + 409, + 486, + 419 + ], + "score": 0.85, + "content": "5 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 407, + 521, + 422 + ], + "score": 1.0, + "content": "higher).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 84, + 425, + 527, + 514 + ], + "lines": [ + { + "bbox": [ + 83, + 425, + 528, + 437 + ], + "spans": [ + { + "bbox": [ + 83, + 425, + 528, + 437 + ], + "score": 1.0, + "content": "SafetyNets (Ghodsi et al., 2017) and Gazelle (Juvekar et al., 2018) are two representative works that achieve", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 436, + 529, + 450 + ], + "spans": [ + { + "bbox": [ + 82, + 436, + 529, + 450 + ], + "score": 1.0, + "content": "respectively integrity and privacy using purely cryptographic approaches (without a TEE). SafetyNets does not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 447, + 528, + 460 + ], + "spans": [ + { + "bbox": [ + 82, + 447, + 528, + 460 + ], + "score": 1.0, + "content": "hide the model from either party, while Gazelle leaks some architectural details to the client. The cryptographic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 459, + 529, + 471 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 529, + 471 + ], + "score": 1.0, + "content": "techniques used by these systems incur large computation and communication overheads in practice. The largest", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 468, + 529, + 482 + ], + "spans": [ + { + "bbox": [ + 82, + 468, + 529, + 482 + ], + "score": 1.0, + "content": "model evaluated by SafetyNets is a 4-layer TIMIT model with quadratic activations which runs at about 13", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 480, + 528, + 493 + ], + "spans": [ + { + "bbox": [ + 82, + 480, + 528, + 493 + ], + "score": 1.0, + "content": "images/sec (on a notebook CPU). In our baseline enclave, the same model runs at over 3,500 images/sec. The", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 491, + 529, + 504 + ], + "spans": [ + { + "bbox": [ + 82, + 491, + 529, + 504 + ], + "score": 1.0, + "content": "largest model evaluated by Gazelle is an 8-layer CIFAR10 model. In the enclave, we can evaluate 450 images/sec", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 502, + 525, + 515 + ], + "spans": [ + { + "bbox": [ + 83, + 502, + 311, + 515 + ], + "score": 1.0, + "content": "whereas Gazelle evaluates a single image in 3.5 sec with", + "type": "text" + }, + { + "bbox": [ + 311, + 502, + 343, + 513 + ], + "score": 0.29, + "content": "3 0 0 \\mathrm { M B }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 502, + 525, + 515 + ], + "score": 1.0, + "content": "of communication between client and server.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 84, + 524, + 528, + 569 + ], + "lines": [ + { + "bbox": [ + 82, + 523, + 528, + 538 + ], + "spans": [ + { + "bbox": [ + 82, + 523, + 528, + 538 + ], + "score": 1.0, + "content": "A Note on Energy Efficiency. When comparing approaches with different hardware (e.g., our single-core CPU", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 535, + 529, + 548 + ], + "spans": [ + { + "bbox": [ + 82, + 535, + 529, + 548 + ], + "score": 1.0, + "content": "baseline versus Slalom which also uses a GPU), throughput alone is not the fairest metric. E.g., the baseline’s", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 546, + 529, + 558 + ], + "spans": [ + { + "bbox": [ + 83, + 546, + 529, + 558 + ], + "score": 1.0, + "content": "throughput could also be increased by adding more SGX CPUs. A more accurate comparison considers the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 558, + 493, + 569 + ], + "spans": [ + { + "bbox": [ + 82, + 558, + 481, + 569 + ], + "score": 1.0, + "content": "energy efficiency of a particular approach, a more direct measure of the recurrent costs to the server", + "type": "text" + }, + { + "bbox": [ + 482, + 558, + 489, + 567 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 558, + 493, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 84, + 573, + 528, + 608 + ], + "lines": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "score": 1.0, + "content": "For example, when evaluating MobileNet or VGG16, our GPU draws 85W of power, whereas our baseline SGX", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 584, + 356, + 598 + ], + "score": 1.0, + "content": "CPU draws 30W. As noted above, the GPU also achieves more than", + "type": "text" + }, + { + "bbox": [ + 356, + 586, + 375, + 596 + ], + "score": 0.87, + "content": "5 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 584, + 529, + 598 + ], + "score": 1.0, + "content": "higher throughput, and thus is at least", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 596, + 406, + 609 + ], + "spans": [ + { + "bbox": [ + 83, + 596, + 102, + 607 + ], + "score": 0.86, + "content": "1 8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 102, + 596, + 406, + 609 + ], + "score": 1.0, + "content": "more energy efficient (e.g., measured in Joules per image) than the enclave.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 613, + 528, + 624 + ], + "spans": [ + { + "bbox": [ + 83, + 613, + 528, + 624 + ], + "score": 1.0, + "content": "For Slalom, we must consider the cost of running both the enclave and GPU. In our evaluations, the outsourced", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 623, + 528, + 636 + ], + "spans": [ + { + "bbox": [ + 82, + 623, + 267, + 636 + ], + "score": 1.0, + "content": "computations on the GPU account for at most", + "type": "text" + }, + { + "bbox": [ + 267, + 624, + 287, + 635 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 623, + 528, + 636 + ], + "score": 1.0, + "content": "of the total running time of Slalom (i.e., the integrity checks", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "and data encryption/decryption in the enclave are the main bottleneck). Thus, the power consumption attributed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 83, + 645, + 528, + 658 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 165, + 658 + ], + "score": 1.0, + "content": "to Slalom is roughly", + "type": "text" + }, + { + "bbox": [ + 165, + 645, + 310, + 657 + ], + "score": 0.89, + "content": "1 0 \\% \\cdot 8 5 \\mathrm { W } + 9 0 \\% \\cdot 3 0 \\mathrm { W } = 3 5 . 5 \\mathrm { W } .", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 646, + 528, + 658 + ], + "score": 1.0, + "content": "Note that when not being in use by Slalom, the trusted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 656, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 83, + 656, + 463, + 670 + ], + "score": 1.0, + "content": "CPU or untrusted GPU can be used by other tasks running on the server. As Slalom achieves", + "type": "text" + }, + { + "bbox": [ + 463, + 657, + 498, + 668 + ], + "score": 0.9, + "content": "4 \\times - 2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 656, + 528, + 670 + ], + "score": 1.0, + "content": "higher", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 83, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 363, + 680 + ], + "score": 1.0, + "content": "throughput than our baseline for the tasks we evaluate, it is also about", + "type": "text" + }, + { + "bbox": [ + 364, + 668, + 414, + 679 + ], + "score": 0.87, + "content": "3 . 4 \\times - 1 7 . 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "more energy efficient.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 287, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 517, + 318, + 527, + 328 + ], + "lines": [ + { + "bbox": [ + 519, + 319, + 527, + 329 + ], + "spans": [ + { + "bbox": [ + 519, + 319, + 527, + 329 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 528, + 196 + ], + "lines": [ + { + "bbox": [ + 82, + 140, + 529, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 140, + 279, + 154 + ], + "score": 1.0, + "content": "For privacy, consider the views of an adversary", + "type": "text" + }, + { + "bbox": [ + 279, + 141, + 291, + 151 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 140, + 423, + 154 + ], + "score": 1.0, + "content": "when Slalom is run with inputs", + "type": "text" + }, + { + "bbox": [ + 423, + 142, + 435, + 151 + ], + "score": 0.85, + "content": "x _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 140, + 453, + 154 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 141, + 465, + 152 + ], + "score": 0.89, + "content": "x _ { 1 } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 140, + 529, + 154 + ], + "score": 1.0, + "content": ". Again, by the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 151, + 528, + 164 + ], + "spans": [ + { + "bbox": [ + 82, + 151, + 505, + 164 + ], + "score": 1.0, + "content": "security of the PRNG, we consider a hybrid protocol where we replace the pre-computed blinding vectors", + "type": "text" + }, + { + "bbox": [ + 505, + 153, + 515, + 163 + ], + "score": 0.84, + "content": "r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 515, + 151, + 528, + 164 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 162, + 529, + 176 + ], + "spans": [ + { + "bbox": [ + 82, + 162, + 216, + 176 + ], + "score": 1.0, + "content": "truly uniformly random values in", + "type": "text" + }, + { + "bbox": [ + 216, + 163, + 224, + 172 + ], + "score": 0.41, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 162, + 321, + 176 + ], + "score": 1.0, + "content": ". In this hybrid protocol,", + "type": "text" + }, + { + "bbox": [ + 321, + 163, + 373, + 174 + ], + "score": 0.92, + "content": "\\tilde { x } _ { i } = x _ { i } + r _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 162, + 529, + 176 + ], + "score": 1.0, + "content": "is simply a “one-time-pad” encryption", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 529, + 186 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 93, + 186 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 94, + 175, + 104, + 185 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 104, + 173, + 157, + 186 + ], + "score": 1.0, + "content": "over the field", + "type": "text" + }, + { + "bbox": [ + 158, + 174, + 165, + 184 + ], + "score": 0.63, + "content": "\\mathbb { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 173, + 179, + 186 + ], + "score": 1.0, + "content": ", so", + "type": "text" + }, + { + "bbox": [ + 179, + 174, + 192, + 184 + ], + "score": 0.86, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 173, + 529, + 186 + ], + "score": 1.0, + "content": "’s views in both executions of the hybrid protocol are equal (information theoretically).", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 81, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 81, + 183, + 108, + 197 + ], + "score": 1.0, + "content": "Thus,", + "type": "text" + }, + { + "bbox": [ + 108, + 185, + 120, + 195 + ], + "score": 0.87, + "content": "S ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 183, + 479, + 197 + ], + "score": 1.0, + "content": "’s views in both executions of the original protocol are computationally indistinguishable.", + "type": "text" + }, + { + "bbox": [ + 518, + 185, + 528, + 196 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 81, + 140, + 529, + 197 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 207, + 526, + 229 + ], + "lines": [ + { + "bbox": [ + 83, + 206, + 528, + 219 + ], + "spans": [ + { + "bbox": [ + 83, + 206, + 393, + 219 + ], + "score": 1.0, + "content": "Proof of Corollary 3.3. The outsourcing protocol between the remote client", + "type": "text" + }, + { + "bbox": [ + 393, + 208, + 400, + 217 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 206, + 443, + 219 + ], + "score": 1.0, + "content": "and server", + "type": "text" + }, + { + "bbox": [ + 444, + 207, + 452, + 217 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 206, + 528, + 219 + ], + "score": 1.0, + "content": "hosting the TEE is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 217, + 339, + 230 + ], + "spans": [ + { + "bbox": [ + 82, + 217, + 322, + 230 + ], + "score": 1.0, + "content": "simply defined as follows (we assume the model belongs to", + "type": "text" + }, + { + "bbox": [ + 323, + 218, + 331, + 228 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 217, + 339, + 230 + ], + "score": 1.0, + "content": "):", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 82, + 206, + 528, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 86, + 234, + 526, + 257 + ], + "lines": [ + { + "bbox": [ + 88, + 234, + 528, + 246 + ], + "spans": [ + { + "bbox": [ + 88, + 235, + 97, + 246 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 97, + 234, + 167, + 246 + ], + "score": 0.56, + "content": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c ( ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 235, + 173, + 246 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 174, + 235, + 181, + 245 + ], + "score": 0.69, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 235, + 528, + 246 + ], + "score": 1.0, + "content": "and the TEE setup a secure authenticated communication channel, using the TEE’s", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 96, + 245, + 509, + 257 + ], + "spans": [ + { + "bbox": [ + 96, + 245, + 325, + 257 + ], + "score": 1.0, + "content": "remote attestation property. The TEE receives the model", + "type": "text" + }, + { + "bbox": [ + 326, + 246, + 335, + 255 + ], + "score": 0.83, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 245, + 357, + 257 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 358, + 246, + 366, + 255 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 245, + 509, + 257 + ], + "score": 1.0, + "content": "and initializes the Slalom protocol.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 88, + 234, + 528, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 89, + 261, + 481, + 312 + ], + "lines": [ + { + "bbox": [ + 88, + 258, + 215, + 274 + ], + "spans": [ + { + "bbox": [ + 88, + 258, + 141, + 274 + ], + "score": 1.0, + "content": "• Outsource", + "type": "text" + }, + { + "bbox": [ + 141, + 260, + 211, + 273 + ], + "score": 0.92, + "content": "\\langle { \\mathcal { C } } ( x , { \\mathrm { s t } } ) , S ( F ) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 258, + 215, + 274 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 101, + 273, + 297, + 285 + ], + "spans": [ + { + "bbox": [ + 101, + 273, + 111, + 285 + ], + "score": 1.0, + "content": "–", + "type": "text" + }, + { + "bbox": [ + 111, + 273, + 119, + 284 + ], + "score": 0.4, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 273, + 145, + 285 + ], + "score": 1.0, + "content": "sends", + "type": "text" + }, + { + "bbox": [ + 145, + 275, + 152, + 283 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 273, + 297, + 285 + ], + "score": 1.0, + "content": "to the TEE over the secure channel.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 100, + 286, + 326, + 300 + ], + "spans": [ + { + "bbox": [ + 100, + 286, + 227, + 300 + ], + "score": 1.0, + "content": "– The TEE securely computes", + "type": "text" + }, + { + "bbox": [ + 227, + 287, + 268, + 299 + ], + "score": 0.93, + "content": "y = F ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 286, + 326, + 300 + ], + "score": 1.0, + "content": "using Slalom.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 101, + 299, + 479, + 313 + ], + "spans": [ + { + "bbox": [ + 101, + 299, + 175, + 313 + ], + "score": 1.0, + "content": "– The TEE sends", + "type": "text" + }, + { + "bbox": [ + 175, + 302, + 182, + 312 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 299, + 348, + 313 + ], + "score": 1.0, + "content": "(and a publicly verifiable commitment to", + "type": "text" + }, + { + "bbox": [ + 348, + 302, + 357, + 311 + ], + "score": 0.78, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 299, + 372, + 313 + ], + "score": 1.0, + "content": ") to", + "type": "text" + }, + { + "bbox": [ + 372, + 301, + 379, + 311 + ], + "score": 0.78, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 299, + 479, + 313 + ], + "score": 1.0, + "content": "over the secure channel.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 88, + 258, + 479, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 317, + 453, + 329 + ], + "lines": [ + { + "bbox": [ + 82, + 317, + 454, + 330 + ], + "spans": [ + { + "bbox": [ + 82, + 317, + 344, + 330 + ], + "score": 1.0, + "content": "If the TEE is secure (i.e., it acts as a trusted third party hosted by", + "type": "text" + }, + { + "bbox": [ + 344, + 318, + 352, + 327 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 317, + 454, + 330 + ], + "score": 1.0, + "content": "), then the result follows.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 82, + 317, + 454, + 330 + ] + }, + { + "type": "title", + "bbox": [ + 86, + 348, + 435, + 361 + ], + "lines": [ + { + "bbox": [ + 82, + 347, + 437, + 363 + ], + "spans": [ + { + "bbox": [ + 82, + 347, + 437, + 363 + ], + "score": 1.0, + "content": "C PERFORMANCE COMPARISON OF DNN OUTSOURCING SCHEMES", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 84, + 375, + 528, + 419 + ], + "lines": [ + { + "bbox": [ + 83, + 376, + 529, + 388 + ], + "spans": [ + { + "bbox": [ + 83, + 376, + 529, + 388 + ], + "score": 1.0, + "content": "We provide a brief overview of the outsourcing approaches compared in Table 1. Our baseline runs a DNN in a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 385, + 528, + 400 + ], + "spans": [ + { + "bbox": [ + 82, + 385, + 528, + 400 + ], + "score": 1.0, + "content": "TEE (a single-threaded Intel SGX enclave) and can provide all the security guarantees of an ML outsourcing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 397, + 529, + 410 + ], + "spans": [ + { + "bbox": [ + 82, + 397, + 369, + 410 + ], + "score": 1.0, + "content": "scheme. On a high-end GPU (an Nvidia TITAN XP), we achieve over", + "type": "text" + }, + { + "bbox": [ + 370, + 398, + 389, + 408 + ], + "score": 0.87, + "content": "5 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 397, + 529, + 410 + ], + "score": 1.0, + "content": "higher throughput but no security.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 81, + 407, + 521, + 422 + ], + "spans": [ + { + "bbox": [ + 81, + 407, + 466, + 422 + ], + "score": 1.0, + "content": "For example, for MobileNet, the enclave evaluates 16 images/sec and the GPU 900 images/sec", + "type": "text" + }, + { + "bbox": [ + 467, + 409, + 486, + 419 + ], + "score": 0.85, + "content": "5 6 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 407, + 521, + 422 + ], + "score": 1.0, + "content": "higher).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 81, + 376, + 529, + 422 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 425, + 527, + 514 + ], + "lines": [ + { + "bbox": [ + 83, + 425, + 528, + 437 + ], + "spans": [ + { + "bbox": [ + 83, + 425, + 528, + 437 + ], + "score": 1.0, + "content": "SafetyNets (Ghodsi et al., 2017) and Gazelle (Juvekar et al., 2018) are two representative works that achieve", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 436, + 529, + 450 + ], + "spans": [ + { + "bbox": [ + 82, + 436, + 529, + 450 + ], + "score": 1.0, + "content": "respectively integrity and privacy using purely cryptographic approaches (without a TEE). SafetyNets does not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 447, + 528, + 460 + ], + "spans": [ + { + "bbox": [ + 82, + 447, + 528, + 460 + ], + "score": 1.0, + "content": "hide the model from either party, while Gazelle leaks some architectural details to the client. The cryptographic", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 459, + 529, + 471 + ], + "spans": [ + { + "bbox": [ + 82, + 459, + 529, + 471 + ], + "score": 1.0, + "content": "techniques used by these systems incur large computation and communication overheads in practice. The largest", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 468, + 529, + 482 + ], + "spans": [ + { + "bbox": [ + 82, + 468, + 529, + 482 + ], + "score": 1.0, + "content": "model evaluated by SafetyNets is a 4-layer TIMIT model with quadratic activations which runs at about 13", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 480, + 528, + 493 + ], + "spans": [ + { + "bbox": [ + 82, + 480, + 528, + 493 + ], + "score": 1.0, + "content": "images/sec (on a notebook CPU). In our baseline enclave, the same model runs at over 3,500 images/sec. The", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 82, + 491, + 529, + 504 + ], + "spans": [ + { + "bbox": [ + 82, + 491, + 529, + 504 + ], + "score": 1.0, + "content": "largest model evaluated by Gazelle is an 8-layer CIFAR10 model. In the enclave, we can evaluate 450 images/sec", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 83, + 502, + 525, + 515 + ], + "spans": [ + { + "bbox": [ + 83, + 502, + 311, + 515 + ], + "score": 1.0, + "content": "whereas Gazelle evaluates a single image in 3.5 sec with", + "type": "text" + }, + { + "bbox": [ + 311, + 502, + 343, + 513 + ], + "score": 0.29, + "content": "3 0 0 \\mathrm { M B }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 502, + 525, + 515 + ], + "score": 1.0, + "content": "of communication between client and server.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 82, + 425, + 529, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 524, + 528, + 569 + ], + "lines": [ + { + "bbox": [ + 82, + 523, + 528, + 538 + ], + "spans": [ + { + "bbox": [ + 82, + 523, + 528, + 538 + ], + "score": 1.0, + "content": "A Note on Energy Efficiency. When comparing approaches with different hardware (e.g., our single-core CPU", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 535, + 529, + 548 + ], + "spans": [ + { + "bbox": [ + 82, + 535, + 529, + 548 + ], + "score": 1.0, + "content": "baseline versus Slalom which also uses a GPU), throughput alone is not the fairest metric. E.g., the baseline’s", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 83, + 546, + 529, + 558 + ], + "spans": [ + { + "bbox": [ + 83, + 546, + 529, + 558 + ], + "score": 1.0, + "content": "throughput could also be increased by adding more SGX CPUs. A more accurate comparison considers the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 82, + 558, + 493, + 569 + ], + "spans": [ + { + "bbox": [ + 82, + 558, + 481, + 569 + ], + "score": 1.0, + "content": "energy efficiency of a particular approach, a more direct measure of the recurrent costs to the server", + "type": "text" + }, + { + "bbox": [ + 482, + 558, + 489, + 567 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 558, + 493, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 82, + 523, + 529, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 573, + 528, + 608 + ], + "lines": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "spans": [ + { + "bbox": [ + 82, + 573, + 529, + 587 + ], + "score": 1.0, + "content": "For example, when evaluating MobileNet or VGG16, our GPU draws 85W of power, whereas our baseline SGX", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 82, + 584, + 529, + 598 + ], + "spans": [ + { + "bbox": [ + 82, + 584, + 356, + 598 + ], + "score": 1.0, + "content": "CPU draws 30W. As noted above, the GPU also achieves more than", + "type": "text" + }, + { + "bbox": [ + 356, + 586, + 375, + 596 + ], + "score": 0.87, + "content": "5 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 584, + 529, + 598 + ], + "score": 1.0, + "content": "higher throughput, and thus is at least", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 596, + 406, + 609 + ], + "spans": [ + { + "bbox": [ + 83, + 596, + 102, + 607 + ], + "score": 0.86, + "content": "1 8 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 102, + 596, + 406, + 609 + ], + "score": 1.0, + "content": "more energy efficient (e.g., measured in Joules per image) than the enclave.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 82, + 573, + 529, + 609 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 613, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 613, + 528, + 624 + ], + "spans": [ + { + "bbox": [ + 83, + 613, + 528, + 624 + ], + "score": 1.0, + "content": "For Slalom, we must consider the cost of running both the enclave and GPU. In our evaluations, the outsourced", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 82, + 623, + 528, + 636 + ], + "spans": [ + { + "bbox": [ + 82, + 623, + 267, + 636 + ], + "score": 1.0, + "content": "computations on the GPU account for at most", + "type": "text" + }, + { + "bbox": [ + 267, + 624, + 287, + 635 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 623, + 528, + 636 + ], + "score": 1.0, + "content": "of the total running time of Slalom (i.e., the integrity checks", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "spans": [ + { + "bbox": [ + 82, + 634, + 529, + 648 + ], + "score": 1.0, + "content": "and data encryption/decryption in the enclave are the main bottleneck). Thus, the power consumption attributed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 83, + 645, + 528, + 658 + ], + "spans": [ + { + "bbox": [ + 83, + 646, + 165, + 658 + ], + "score": 1.0, + "content": "to Slalom is roughly", + "type": "text" + }, + { + "bbox": [ + 165, + 645, + 310, + 657 + ], + "score": 0.89, + "content": "1 0 \\% \\cdot 8 5 \\mathrm { W } + 9 0 \\% \\cdot 3 0 \\mathrm { W } = 3 5 . 5 \\mathrm { W } .", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 646, + 528, + 658 + ], + "score": 1.0, + "content": "Note that when not being in use by Slalom, the trusted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 83, + 656, + 528, + 670 + ], + "spans": [ + { + "bbox": [ + 83, + 656, + 463, + 670 + ], + "score": 1.0, + "content": "CPU or untrusted GPU can be used by other tasks running on the server. As Slalom achieves", + "type": "text" + }, + { + "bbox": [ + 463, + 657, + 498, + 668 + ], + "score": 0.9, + "content": "4 \\times - 2 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 656, + 528, + 670 + ], + "score": 1.0, + "content": "higher", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 83, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 83, + 668, + 363, + 680 + ], + "score": 1.0, + "content": "throughput than our baseline for the tasks we evaluate, it is also about", + "type": "text" + }, + { + "bbox": [ + 364, + 668, + 414, + 679 + ], + "score": 0.87, + "content": "3 . 4 \\times - 1 7 . 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "more energy efficient.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 82, + 613, + 529, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 83, + 138, + 351, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 352, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 352, + 154 + ], + "score": 1.0, + "content": "D NOTATION FOR STANDARD LINEAR OPERATORS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 83, + 172, + 528, + 206 + ], + "lines": [ + { + "bbox": [ + 83, + 173, + 528, + 185 + ], + "spans": [ + { + "bbox": [ + 83, + 173, + 528, + 185 + ], + "score": 1.0, + "content": "Below we describe some common linear operators used in deep neural networks. For simplicity, we omit additive", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 82, + 183, + 528, + 197 + ], + "score": 1.0, + "content": "bias terms, and assume that convolutional operators preserve the spatial height and width of their inputs. Our", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 194, + 451, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 194, + 451, + 208 + ], + "score": 1.0, + "content": "techniques easily extend to convolutions with arbitrary strides, paddings, and window sizes.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 83, + 211, + 527, + 234 + ], + "lines": [ + { + "bbox": [ + 82, + 210, + 529, + 225 + ], + "spans": [ + { + "bbox": [ + 82, + 210, + 195, + 225 + ], + "score": 1.0, + "content": "For a fully-connected layer", + "type": "text" + }, + { + "bbox": [ + 195, + 212, + 210, + 223 + ], + "score": 0.88, + "content": "f _ { \\mathrm { F C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 210, + 256, + 225 + ], + "score": 1.0, + "content": ", the kernel", + "type": "text" + }, + { + "bbox": [ + 257, + 212, + 268, + 222 + ], + "score": 0.61, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 210, + 331, + 225 + ], + "score": 1.0, + "content": "has dimension", + "type": "text" + }, + { + "bbox": [ + 331, + 212, + 377, + 223 + ], + "score": 0.9, + "content": "\\left( h _ { \\mathrm { i n } } \\times h _ { \\mathrm { o u t } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 210, + 433, + 225 + ], + "score": 1.0, + "content": ". For an input", + "type": "text" + }, + { + "bbox": [ + 434, + 214, + 441, + 222 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 210, + 497, + 225 + ], + "score": 1.0, + "content": "of dimension", + "type": "text" + }, + { + "bbox": [ + 497, + 212, + 510, + 223 + ], + "score": 0.89, + "content": "h _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 210, + 529, + 225 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 222, + 369, + 235 + ], + "spans": [ + { + "bbox": [ + 82, + 222, + 104, + 235 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 105, + 222, + 169, + 235 + ], + "score": 0.93, + "content": "f _ { \\mathrm { F C } } ( \\dot { \\boldsymbol { x } } ) = \\boldsymbol { x } ^ { \\top } \\boldsymbol { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 222, + 267, + 235 + ], + "score": 1.0, + "content": ". The cost of the layer is", + "type": "text" + }, + { + "bbox": [ + 268, + 223, + 303, + 234 + ], + "score": 0.91, + "content": "h _ { \\mathrm { i n } } \\cdot h _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 222, + 369, + 235 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 84, + 239, + 528, + 295 + ], + "lines": [ + { + "bbox": [ + 82, + 239, + 528, + 252 + ], + "spans": [ + { + "bbox": [ + 82, + 239, + 218, + 252 + ], + "score": 1.0, + "content": "A convolutional layer has kernel", + "type": "text" + }, + { + "bbox": [ + 218, + 240, + 230, + 250 + ], + "score": 0.69, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 239, + 262, + 252 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 262, + 239, + 341, + 250 + ], + "score": 0.89, + "content": "( k \\times k \\times c _ { \\mathrm { i n } } \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 239, + 384, + 252 + ], + "score": 1.0, + "content": ". On input", + "type": "text" + }, + { + "bbox": [ + 384, + 242, + 391, + 249 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 239, + 423, + 252 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 423, + 239, + 478, + 252 + ], + "score": 0.82, + "content": "( h \\times w \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 239, + 483, + 252 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 483, + 239, + 528, + 252 + ], + "score": 0.87, + "content": "f _ { \\mathrm { c o n v } } ( x ) =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 83, + 250, + 529, + 263 + ], + "spans": [ + { + "bbox": [ + 83, + 250, + 137, + 263 + ], + "score": 0.91, + "content": "\\mathsf { C o n v } ( x ; W )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 250, + 255, + 263 + ], + "score": 1.0, + "content": "produces an output of size", + "type": "text" + }, + { + "bbox": [ + 255, + 251, + 314, + 262 + ], + "score": 0.86, + "content": "( h \\times w \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 250, + 529, + 263 + ], + "score": 1.0, + "content": ". A convolution can be seen as the combination of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 261, + 529, + 273 + ], + "spans": [ + { + "bbox": [ + 82, + 261, + 390, + 273 + ], + "score": 1.0, + "content": "two linear operators: a “patch-extraction” process that transforms the input", + "type": "text" + }, + { + "bbox": [ + 390, + 263, + 398, + 271 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "into an intermediate input", + "type": "text" + }, + { + "bbox": [ + 506, + 261, + 516, + 271 + ], + "score": 0.86, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 261, + 529, + 273 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 81, + 271, + 530, + 286 + ], + "spans": [ + { + "bbox": [ + 81, + 271, + 127, + 286 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 127, + 272, + 187, + 284 + ], + "score": 0.91, + "content": "( \\bar { h } \\cdot w , k ^ { 2 } \\cdot c _ { \\mathrm { i n } } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 271, + 243, + 286 + ], + "score": 1.0, + "content": "by extracting", + "type": "text" + }, + { + "bbox": [ + 243, + 273, + 268, + 283 + ], + "score": 0.92, + "content": "k \\times k", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 271, + 465, + 286 + ], + "score": 1.0, + "content": "patches, followed by a matrix multiplication with", + "type": "text" + }, + { + "bbox": [ + 465, + 273, + 477, + 282 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 271, + 530, + 286 + ], + "score": 1.0, + "content": ". The cost of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 82, + 282, + 294, + 297 + ], + "spans": [ + { + "bbox": [ + 82, + 282, + 151, + 297 + ], + "score": 1.0, + "content": "this layer is thus", + "type": "text" + }, + { + "bbox": [ + 151, + 284, + 228, + 294 + ], + "score": 0.89, + "content": "\\boldsymbol { k } ^ { 2 } \\cdot \\boldsymbol { h } \\cdot \\boldsymbol { w } \\cdot \\boldsymbol { c } _ { \\mathrm { i n } } \\cdot \\boldsymbol { c } _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 282, + 294, + 297 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 83, + 299, + 528, + 367 + ], + "lines": [ + { + "bbox": [ + 82, + 300, + 529, + 313 + ], + "spans": [ + { + "bbox": [ + 82, + 300, + 253, + 313 + ], + "score": 1.0, + "content": "A separable convolution has two kernels,", + "type": "text" + }, + { + "bbox": [ + 253, + 300, + 268, + 312 + ], + "score": 0.88, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 300, + 301, + 313 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 302, + 300, + 354, + 312 + ], + "score": 0.88, + "content": "( k \\times k \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 300, + 373, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 374, + 300, + 389, + 311 + ], + "score": 0.89, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 300, + 421, + 313 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 421, + 300, + 464, + 312 + ], + "score": 0.88, + "content": "\\left( { c _ { \\mathrm { i n } } } \\times { c _ { \\mathrm { o u t } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 300, + 509, + 313 + ], + "score": 1.0, + "content": ". On input", + "type": "text" + }, + { + "bbox": [ + 509, + 303, + 516, + 310 + ], + "score": 0.71, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 300, + 529, + 313 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 311, + 529, + 326 + ], + "spans": [ + { + "bbox": [ + 82, + 311, + 102, + 326 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 102, + 311, + 158, + 323 + ], + "score": 0.79, + "content": "( h \\times w \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 311, + 162, + 326 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 162, + 311, + 207, + 323 + ], + "score": 0.88, + "content": "f _ { \\mathrm { s e p - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 311, + 316, + 326 + ], + "score": 1.0, + "content": "produces an output of size", + "type": "text" + }, + { + "bbox": [ + 317, + 312, + 375, + 323 + ], + "score": 0.88, + "content": "( h \\times w \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 311, + 529, + 326 + ], + "score": 1.0, + "content": ", by applying a depthwise convolution", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 84, + 320, + 530, + 337 + ], + "spans": [ + { + "bbox": [ + 84, + 322, + 126, + 334 + ], + "score": 0.91, + "content": "f _ { \\mathrm { d p - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 320, + 178, + 337 + ], + "score": 1.0, + "content": "with kernel", + "type": "text" + }, + { + "bbox": [ + 178, + 323, + 193, + 333 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 320, + 350, + 337 + ], + "score": 1.0, + "content": "followed by a pointwise convolution", + "type": "text" + }, + { + "bbox": [ + 350, + 323, + 391, + 334 + ], + "score": 0.9, + "content": "f _ { \\mathrm { p t - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 320, + 443, + 337 + ], + "score": 1.0, + "content": "with kernel", + "type": "text" + }, + { + "bbox": [ + 443, + 322, + 458, + 333 + ], + "score": 0.89, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 320, + 530, + 337 + ], + "score": 1.0, + "content": ". The depthwise", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 333, + 528, + 346 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 177, + 346 + ], + "score": 1.0, + "content": "convolution consists of", + "type": "text" + }, + { + "bbox": [ + 177, + 335, + 189, + 344 + ], + "score": 0.86, + "content": "c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 333, + 368, + 346 + ], + "score": 1.0, + "content": "independent convolutions with filters of size", + "type": "text" + }, + { + "bbox": [ + 368, + 334, + 426, + 344 + ], + "score": 0.91, + "content": "k \\times k \\times 1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 333, + 528, + 346 + ], + "score": 1.0, + "content": ", applied to a single input", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 343, + 528, + 357 + ], + "spans": [ + { + "bbox": [ + 82, + 343, + 180, + 357 + ], + "score": 1.0, + "content": "channel, which requires", + "type": "text" + }, + { + "bbox": [ + 180, + 344, + 236, + 355 + ], + "score": 0.91, + "content": "k ^ { 2 } \\cdot h \\cdot w \\cdot c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 343, + 528, + 357 + ], + "score": 1.0, + "content": "multiplications. A pointwise convolution is simply a matrix product with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 355, + 399, + 369 + ], + "spans": [ + { + "bbox": [ + 82, + 355, + 147, + 369 + ], + "score": 1.0, + "content": "an input of size", + "type": "text" + }, + { + "bbox": [ + 147, + 355, + 199, + 367 + ], + "score": 0.93, + "content": "( h \\cdot w ) \\times c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 355, + 273, + 369 + ], + "score": 1.0, + "content": ", and thus requires", + "type": "text" + }, + { + "bbox": [ + 273, + 356, + 333, + 367 + ], + "score": 0.92, + "content": "h \\cdot w \\cdot c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 355, + 399, + 369 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 84, + 397, + 253, + 410 + ], + "lines": [ + { + "bbox": [ + 82, + 395, + 254, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 395, + 254, + 411 + ], + "score": 1.0, + "content": "E NEURAL NETWORK DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 84, + 430, + 528, + 486 + ], + "lines": [ + { + "bbox": [ + 83, + 430, + 528, + 442 + ], + "spans": [ + { + "bbox": [ + 83, + 430, + 528, + 442 + ], + "score": 1.0, + "content": "Table 3 provides details about the two DNNs we use in our evaluation (all pre-trained models are taken from", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 441, + 529, + 455 + ], + "spans": [ + { + "bbox": [ + 82, + 441, + 529, + 455 + ], + "score": 1.0, + "content": "Keras Chollet et al. (2015)). We report top 1 and top 5 accuracy on ImageNet with and without the simple", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 81, + 451, + 529, + 467 + ], + "spans": [ + { + "bbox": [ + 81, + 451, + 414, + 467 + ], + "score": 1.0, + "content": "quantization scheme described in Section 3.1. Quantization results in at most a", + "type": "text" + }, + { + "bbox": [ + 414, + 452, + 437, + 463 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 451, + 529, + 467 + ], + "score": 1.0, + "content": "drop in top 1 and top", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 463, + 529, + 477 + ], + "spans": [ + { + "bbox": [ + 82, + 463, + 529, + 477 + ], + "score": 1.0, + "content": "5 accuracy. More elaborate quantization schemes exist (e.g., Micikevicius et al. (2018)) that we have not", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 474, + 213, + 487 + ], + "spans": [ + { + "bbox": [ + 82, + 474, + 213, + 487 + ], + "score": 1.0, + "content": "experimented with in this work.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 84, + 491, + 528, + 536 + ], + "lines": [ + { + "bbox": [ + 83, + 491, + 528, + 504 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 528, + 504 + ], + "score": 1.0, + "content": "We report the number of model parameters, which is relevant to the memory constraints of TEEs such as Intel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 501, + 529, + 514 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 529, + 514 + ], + "score": 1.0, + "content": "SGX. We also list the total size of the inputs and outputs of all the model’s linear layers, which impact the amount", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 83, + 513, + 528, + 525 + ], + "spans": [ + { + "bbox": [ + 83, + 513, + 528, + 525 + ], + "score": 1.0, + "content": "of communication between trusted and untrusted co-processors in Slalom, as well as the amount of data stored in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 523, + 331, + 538 + ], + "spans": [ + { + "bbox": [ + 82, + 523, + 331, + 538 + ], + "score": 1.0, + "content": "the TEE when using Freivalds’ algorithm with preprocessing.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "table", + "bbox": [ + 92, + 588, + 516, + 669 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 84, + 559, + 527, + 582 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 558, + 529, + 572 + ], + "spans": [ + { + "bbox": [ + 82, + 558, + 529, + 572 + ], + "score": 1.0, + "content": "Table 3: Details of models used in our evaluation. Accuracies are computed on the ImageNet validation set.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 570, + 308, + 582 + ], + "spans": [ + { + "bbox": [ + 83, + 570, + 308, + 582 + ], + "score": 1.0, + "content": "Pre-trained models are from Keras Chollet et al. (2015).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "table_body", + "bbox": [ + 92, + 588, + 516, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 92, + 588, + 516, + 669 + ], + "spans": [ + { + "bbox": [ + 92, + 588, + 516, + 669 + ], + "score": 0.98, + "html": "
AccuracyQuantized
ModelTop 1Top5Top1Top 5LayersParameters (M)Size of layer inputs/outputs (M)
VGG1671.090.070.689.516138.49.1 / 13.6
VGG16 (no top)=-1314.79.1/13.5
MobileNet70.789.670.589.5284.25.5/ 5.0
MobileNet (fused)=1154.23.6/3.1
ResNet 5076.992.476.492.25025.510.0 /10.4
", + "type": "table", + "image_path": "0f91fa022782d0ac5f385e372dd812fdd263b672ff72a2a75427796980f9477e.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 92, + 588, + 516, + 615.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 92, + 615.0, + 516, + 642.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 92, + 642.0, + 516, + 669.0 + ], + "spans": [], + "index": 31 + } + ] + } + ], + "index": 28.75 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 697, + 289, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 697, + 289, + 711 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 83, + 138, + 351, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 137, + 352, + 154 + ], + "spans": [ + { + "bbox": [ + 82, + 137, + 352, + 154 + ], + "score": 1.0, + "content": "D NOTATION FOR STANDARD LINEAR OPERATORS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 83, + 172, + 528, + 206 + ], + "lines": [ + { + "bbox": [ + 83, + 173, + 528, + 185 + ], + "spans": [ + { + "bbox": [ + 83, + 173, + 528, + 185 + ], + "score": 1.0, + "content": "Below we describe some common linear operators used in deep neural networks. For simplicity, we omit additive", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 82, + 183, + 528, + 197 + ], + "spans": [ + { + "bbox": [ + 82, + 183, + 528, + 197 + ], + "score": 1.0, + "content": "bias terms, and assume that convolutional operators preserve the spatial height and width of their inputs. Our", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 194, + 451, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 194, + 451, + 208 + ], + "score": 1.0, + "content": "techniques easily extend to convolutions with arbitrary strides, paddings, and window sizes.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 82, + 173, + 528, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 211, + 527, + 234 + ], + "lines": [ + { + "bbox": [ + 82, + 210, + 529, + 225 + ], + "spans": [ + { + "bbox": [ + 82, + 210, + 195, + 225 + ], + "score": 1.0, + "content": "For a fully-connected layer", + "type": "text" + }, + { + "bbox": [ + 195, + 212, + 210, + 223 + ], + "score": 0.88, + "content": "f _ { \\mathrm { F C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 210, + 256, + 225 + ], + "score": 1.0, + "content": ", the kernel", + "type": "text" + }, + { + "bbox": [ + 257, + 212, + 268, + 222 + ], + "score": 0.61, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 210, + 331, + 225 + ], + "score": 1.0, + "content": "has dimension", + "type": "text" + }, + { + "bbox": [ + 331, + 212, + 377, + 223 + ], + "score": 0.9, + "content": "\\left( h _ { \\mathrm { i n } } \\times h _ { \\mathrm { o u t } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 210, + 433, + 225 + ], + "score": 1.0, + "content": ". For an input", + "type": "text" + }, + { + "bbox": [ + 434, + 214, + 441, + 222 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 210, + 497, + 225 + ], + "score": 1.0, + "content": "of dimension", + "type": "text" + }, + { + "bbox": [ + 497, + 212, + 510, + 223 + ], + "score": 0.89, + "content": "h _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 510, + 210, + 529, + 225 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 222, + 369, + 235 + ], + "spans": [ + { + "bbox": [ + 82, + 222, + 104, + 235 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 105, + 222, + 169, + 235 + ], + "score": 0.93, + "content": "f _ { \\mathrm { F C } } ( \\dot { \\boldsymbol { x } } ) = \\boldsymbol { x } ^ { \\top } \\boldsymbol { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 222, + 267, + 235 + ], + "score": 1.0, + "content": ". The cost of the layer is", + "type": "text" + }, + { + "bbox": [ + 268, + 223, + 303, + 234 + ], + "score": 0.91, + "content": "h _ { \\mathrm { i n } } \\cdot h _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 222, + 369, + 235 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 82, + 210, + 529, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 239, + 528, + 295 + ], + "lines": [ + { + "bbox": [ + 82, + 239, + 528, + 252 + ], + "spans": [ + { + "bbox": [ + 82, + 239, + 218, + 252 + ], + "score": 1.0, + "content": "A convolutional layer has kernel", + "type": "text" + }, + { + "bbox": [ + 218, + 240, + 230, + 250 + ], + "score": 0.69, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 239, + 262, + 252 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 262, + 239, + 341, + 250 + ], + "score": 0.89, + "content": "( k \\times k \\times c _ { \\mathrm { i n } } \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 239, + 384, + 252 + ], + "score": 1.0, + "content": ". On input", + "type": "text" + }, + { + "bbox": [ + 384, + 242, + 391, + 249 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 239, + 423, + 252 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 423, + 239, + 478, + 252 + ], + "score": 0.82, + "content": "( h \\times w \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 239, + 483, + 252 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 483, + 239, + 528, + 252 + ], + "score": 0.87, + "content": "f _ { \\mathrm { c o n v } } ( x ) =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 83, + 250, + 529, + 263 + ], + "spans": [ + { + "bbox": [ + 83, + 250, + 137, + 263 + ], + "score": 0.91, + "content": "\\mathsf { C o n v } ( x ; W )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 250, + 255, + 263 + ], + "score": 1.0, + "content": "produces an output of size", + "type": "text" + }, + { + "bbox": [ + 255, + 251, + 314, + 262 + ], + "score": 0.86, + "content": "( h \\times w \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 250, + 529, + 263 + ], + "score": 1.0, + "content": ". A convolution can be seen as the combination of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 261, + 529, + 273 + ], + "spans": [ + { + "bbox": [ + 82, + 261, + 390, + 273 + ], + "score": 1.0, + "content": "two linear operators: a “patch-extraction” process that transforms the input", + "type": "text" + }, + { + "bbox": [ + 390, + 263, + 398, + 271 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 261, + 506, + 273 + ], + "score": 1.0, + "content": "into an intermediate input", + "type": "text" + }, + { + "bbox": [ + 506, + 261, + 516, + 271 + ], + "score": 0.86, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 261, + 529, + 273 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 81, + 271, + 530, + 286 + ], + "spans": [ + { + "bbox": [ + 81, + 271, + 127, + 286 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 127, + 272, + 187, + 284 + ], + "score": 0.91, + "content": "( \\bar { h } \\cdot w , k ^ { 2 } \\cdot c _ { \\mathrm { i n } } ) ", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 271, + 243, + 286 + ], + "score": 1.0, + "content": "by extracting", + "type": "text" + }, + { + "bbox": [ + 243, + 273, + 268, + 283 + ], + "score": 0.92, + "content": "k \\times k", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 271, + 465, + 286 + ], + "score": 1.0, + "content": "patches, followed by a matrix multiplication with", + "type": "text" + }, + { + "bbox": [ + 465, + 273, + 477, + 282 + ], + "score": 0.64, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 271, + 530, + 286 + ], + "score": 1.0, + "content": ". The cost of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 82, + 282, + 294, + 297 + ], + "spans": [ + { + "bbox": [ + 82, + 282, + 151, + 297 + ], + "score": 1.0, + "content": "this layer is thus", + "type": "text" + }, + { + "bbox": [ + 151, + 284, + 228, + 294 + ], + "score": 0.89, + "content": "\\boldsymbol { k } ^ { 2 } \\cdot \\boldsymbol { h } \\cdot \\boldsymbol { w } \\cdot \\boldsymbol { c } _ { \\mathrm { i n } } \\cdot \\boldsymbol { c } _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 282, + 294, + 297 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 81, + 239, + 530, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 299, + 528, + 367 + ], + "lines": [ + { + "bbox": [ + 82, + 300, + 529, + 313 + ], + "spans": [ + { + "bbox": [ + 82, + 300, + 253, + 313 + ], + "score": 1.0, + "content": "A separable convolution has two kernels,", + "type": "text" + }, + { + "bbox": [ + 253, + 300, + 268, + 312 + ], + "score": 0.88, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 300, + 301, + 313 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 302, + 300, + 354, + 312 + ], + "score": 0.88, + "content": "( k \\times k \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 300, + 373, + 313 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 374, + 300, + 389, + 311 + ], + "score": 0.89, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 300, + 421, + 313 + ], + "score": 1.0, + "content": "of size", + "type": "text" + }, + { + "bbox": [ + 421, + 300, + 464, + 312 + ], + "score": 0.88, + "content": "\\left( { c _ { \\mathrm { i n } } } \\times { c _ { \\mathrm { o u t } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 300, + 509, + 313 + ], + "score": 1.0, + "content": ". On input", + "type": "text" + }, + { + "bbox": [ + 509, + 303, + 516, + 310 + ], + "score": 0.71, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 516, + 300, + 529, + 313 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 311, + 529, + 326 + ], + "spans": [ + { + "bbox": [ + 82, + 311, + 102, + 326 + ], + "score": 1.0, + "content": "size", + "type": "text" + }, + { + "bbox": [ + 102, + 311, + 158, + 323 + ], + "score": 0.79, + "content": "( h \\times w \\times c _ { \\mathrm { i n } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 311, + 162, + 326 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 162, + 311, + 207, + 323 + ], + "score": 0.88, + "content": "f _ { \\mathrm { s e p - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 311, + 316, + 326 + ], + "score": 1.0, + "content": "produces an output of size", + "type": "text" + }, + { + "bbox": [ + 317, + 312, + 375, + 323 + ], + "score": 0.88, + "content": "( h \\times w \\times c _ { \\mathrm { o u t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 311, + 529, + 326 + ], + "score": 1.0, + "content": ", by applying a depthwise convolution", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 84, + 320, + 530, + 337 + ], + "spans": [ + { + "bbox": [ + 84, + 322, + 126, + 334 + ], + "score": 0.91, + "content": "f _ { \\mathrm { d p - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 320, + 178, + 337 + ], + "score": 1.0, + "content": "with kernel", + "type": "text" + }, + { + "bbox": [ + 178, + 323, + 193, + 333 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 320, + 350, + 337 + ], + "score": 1.0, + "content": "followed by a pointwise convolution", + "type": "text" + }, + { + "bbox": [ + 350, + 323, + 391, + 334 + ], + "score": 0.9, + "content": "f _ { \\mathrm { p t - c o n v } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 320, + 443, + 337 + ], + "score": 1.0, + "content": "with kernel", + "type": "text" + }, + { + "bbox": [ + 443, + 322, + 458, + 333 + ], + "score": 0.89, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 320, + 530, + 337 + ], + "score": 1.0, + "content": ". The depthwise", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 333, + 528, + 346 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 177, + 346 + ], + "score": 1.0, + "content": "convolution consists of", + "type": "text" + }, + { + "bbox": [ + 177, + 335, + 189, + 344 + ], + "score": 0.86, + "content": "c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 333, + 368, + 346 + ], + "score": 1.0, + "content": "independent convolutions with filters of size", + "type": "text" + }, + { + "bbox": [ + 368, + 334, + 426, + 344 + ], + "score": 0.91, + "content": "k \\times k \\times 1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 333, + 528, + 346 + ], + "score": 1.0, + "content": ", applied to a single input", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 343, + 528, + 357 + ], + "spans": [ + { + "bbox": [ + 82, + 343, + 180, + 357 + ], + "score": 1.0, + "content": "channel, which requires", + "type": "text" + }, + { + "bbox": [ + 180, + 344, + 236, + 355 + ], + "score": 0.91, + "content": "k ^ { 2 } \\cdot h \\cdot w \\cdot c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 343, + 528, + 357 + ], + "score": 1.0, + "content": "multiplications. A pointwise convolution is simply a matrix product with", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 355, + 399, + 369 + ], + "spans": [ + { + "bbox": [ + 82, + 355, + 147, + 369 + ], + "score": 1.0, + "content": "an input of size", + "type": "text" + }, + { + "bbox": [ + 147, + 355, + 199, + 367 + ], + "score": 0.93, + "content": "( h \\cdot w ) \\times c _ { \\mathrm { i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 355, + 273, + 369 + ], + "score": 1.0, + "content": ", and thus requires", + "type": "text" + }, + { + "bbox": [ + 273, + 356, + 333, + 367 + ], + "score": 0.92, + "content": "h \\cdot w \\cdot c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 355, + 399, + 369 + ], + "score": 1.0, + "content": "multiplications.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 82, + 300, + 530, + 369 + ] + }, + { + "type": "title", + "bbox": [ + 84, + 397, + 253, + 410 + ], + "lines": [ + { + "bbox": [ + 82, + 395, + 254, + 411 + ], + "spans": [ + { + "bbox": [ + 82, + 395, + 254, + 411 + ], + "score": 1.0, + "content": "E NEURAL NETWORK DETAILS", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 84, + 430, + 528, + 486 + ], + "lines": [ + { + "bbox": [ + 83, + 430, + 528, + 442 + ], + "spans": [ + { + "bbox": [ + 83, + 430, + 528, + 442 + ], + "score": 1.0, + "content": "Table 3 provides details about the two DNNs we use in our evaluation (all pre-trained models are taken from", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 82, + 441, + 529, + 455 + ], + "spans": [ + { + "bbox": [ + 82, + 441, + 529, + 455 + ], + "score": 1.0, + "content": "Keras Chollet et al. (2015)). We report top 1 and top 5 accuracy on ImageNet with and without the simple", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 81, + 451, + 529, + 467 + ], + "spans": [ + { + "bbox": [ + 81, + 451, + 414, + 467 + ], + "score": 1.0, + "content": "quantization scheme described in Section 3.1. Quantization results in at most a", + "type": "text" + }, + { + "bbox": [ + 414, + 452, + 437, + 463 + ], + "score": 0.88, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 451, + 529, + 467 + ], + "score": 1.0, + "content": "drop in top 1 and top", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 463, + 529, + 477 + ], + "spans": [ + { + "bbox": [ + 82, + 463, + 529, + 477 + ], + "score": 1.0, + "content": "5 accuracy. More elaborate quantization schemes exist (e.g., Micikevicius et al. (2018)) that we have not", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 474, + 213, + 487 + ], + "spans": [ + { + "bbox": [ + 82, + 474, + 213, + 487 + ], + "score": 1.0, + "content": "experimented with in this work.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 81, + 430, + 529, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 491, + 528, + 536 + ], + "lines": [ + { + "bbox": [ + 83, + 491, + 528, + 504 + ], + "spans": [ + { + "bbox": [ + 83, + 491, + 528, + 504 + ], + "score": 1.0, + "content": "We report the number of model parameters, which is relevant to the memory constraints of TEEs such as Intel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 501, + 529, + 514 + ], + "spans": [ + { + "bbox": [ + 82, + 501, + 529, + 514 + ], + "score": 1.0, + "content": "SGX. We also list the total size of the inputs and outputs of all the model’s linear layers, which impact the amount", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 83, + 513, + 528, + 525 + ], + "spans": [ + { + "bbox": [ + 83, + 513, + 528, + 525 + ], + "score": 1.0, + "content": "of communication between trusted and untrusted co-processors in Slalom, as well as the amount of data stored in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 523, + 331, + 538 + ], + "spans": [ + { + "bbox": [ + 82, + 523, + 331, + 538 + ], + "score": 1.0, + "content": "the TEE when using Freivalds’ algorithm with preprocessing.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 82, + 491, + 529, + 538 + ] + }, + { + "type": "table", + "bbox": [ + 92, + 588, + 516, + 669 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 84, + 559, + 527, + 582 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 558, + 529, + 572 + ], + "spans": [ + { + "bbox": [ + 82, + 558, + 529, + 572 + ], + "score": 1.0, + "content": "Table 3: Details of models used in our evaluation. Accuracies are computed on the ImageNet validation set.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 83, + 570, + 308, + 582 + ], + "spans": [ + { + "bbox": [ + 83, + 570, + 308, + 582 + ], + "score": 1.0, + "content": "Pre-trained models are from Keras Chollet et al. (2015).", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "table_body", + "bbox": [ + 92, + 588, + 516, + 669 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 92, + 588, + 516, + 669 + ], + "spans": [ + { + "bbox": [ + 92, + 588, + 516, + 669 + ], + "score": 0.98, + "html": "
AccuracyQuantized
ModelTop 1Top5Top1Top 5LayersParameters (M)Size of layer inputs/outputs (M)
VGG1671.090.070.689.516138.49.1 / 13.6
VGG16 (no top)=-1314.79.1/13.5
MobileNet70.789.670.589.5284.25.5/ 5.0
MobileNet (fused)=1154.23.6/3.1
ResNet 5076.992.476.492.25025.510.0 /10.4
", + "type": "table", + "image_path": "0f91fa022782d0ac5f385e372dd812fdd263b672ff72a2a75427796980f9477e.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 92, + 588, + 516, + 615.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 92, + 615.0, + 516, + 642.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 92, + 642.0, + 516, + 669.0 + ], + "spans": [], + "index": 31 + } + ] + } + ], + "index": 28.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 83, + 138, + 418, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 138, + 420, + 153 + ], + "spans": [ + { + "bbox": [ + 82, + 138, + 420, + 153 + ], + "score": 1.0, + "content": "F MODULAR ARITHMETIC WITH FLOATING POINT OPERATIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 165, + 527, + 199 + ], + "lines": [ + { + "bbox": [ + 83, + 166, + 528, + 178 + ], + "spans": [ + { + "bbox": [ + 83, + 166, + 440, + 178 + ], + "score": 1.0, + "content": "In this section, we briefly describe how Slalom performs modular arithmetic over a field", + "type": "text" + }, + { + "bbox": [ + 441, + 166, + 453, + 178 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 166, + 528, + 178 + ], + "score": 1.0, + "content": "in the TEE, while", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 176, + 529, + 190 + ], + "spans": [ + { + "bbox": [ + 83, + 176, + 529, + 190 + ], + "score": 1.0, + "content": "leveraging standard floating point operations to maximize computational efficiency. The main computations in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 188, + 508, + 200 + ], + "spans": [ + { + "bbox": [ + 83, + 189, + 213, + 200 + ], + "score": 1.0, + "content": "the TEE are inner products over", + "type": "text" + }, + { + "bbox": [ + 213, + 188, + 226, + 200 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 189, + 508, + 200 + ], + "score": 1.0, + "content": "for Freivalds’ check (a matrix product is itself a set of inner products).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 84, + 205, + 528, + 261 + ], + "lines": [ + { + "bbox": [ + 81, + 204, + 529, + 219 + ], + "spans": [ + { + "bbox": [ + 81, + 204, + 461, + 219 + ], + "score": 1.0, + "content": "Our quantization scheme (see Section 3.1) ensures that all DNN values can be represented in", + "type": "text" + }, + { + "bbox": [ + 462, + 206, + 474, + 218 + ], + "score": 0.88, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 204, + 492, + 219 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 492, + 205, + 525, + 218 + ], + "score": 0.91, + "content": "p \\lessapprox 2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 525, + 204, + 529, + 219 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 217, + 529, + 230 + ], + "spans": [ + { + "bbox": [ + 82, + 217, + 529, + 230 + ], + "score": 1.0, + "content": "which fits in a standard float. To compute inner products, we first cast elements to doubles (as a single", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 227, + 529, + 240 + ], + "spans": [ + { + "bbox": [ + 82, + 227, + 155, + 240 + ], + "score": 1.0, + "content": "multiplication in", + "type": "text" + }, + { + "bbox": [ + 155, + 228, + 168, + 240 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 227, + 529, + 240 + ], + "score": 1.0, + "content": "would exceed the range of integers exactly representable as floats). Single or double", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 239, + 529, + 252 + ], + "spans": [ + { + "bbox": [ + 82, + 239, + 529, + 252 + ], + "score": 1.0, + "content": "precision floats are preferable to integer types on Intel architectures due to the availability of much more efficient", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 248, + 429, + 263 + ], + "spans": [ + { + "bbox": [ + 82, + 248, + 429, + 263 + ], + "score": 1.0, + "content": "SIMD instructions, at a minor reduction in the range of exactly representable integers.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 84, + 266, + 528, + 345 + ], + "lines": [ + { + "bbox": [ + 81, + 264, + 530, + 280 + ], + "spans": [ + { + "bbox": [ + 81, + 264, + 274, + 280 + ], + "score": 1.0, + "content": "In our evaluation, we target a soundness error of", + "type": "text" + }, + { + "bbox": [ + 274, + 266, + 295, + 277 + ], + "score": 0.9, + "content": "2 ^ { - 4 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 264, + 530, + 280 + ], + "score": 1.0, + "content": "for each layer. This leads to a tradeoff between the number", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 81, + 276, + 529, + 290 + ], + "spans": [ + { + "bbox": [ + 81, + 276, + 140, + 290 + ], + "score": 1.0, + "content": "of repetitions", + "type": "text" + }, + { + "bbox": [ + 140, + 278, + 147, + 288 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 276, + 321, + 290 + ], + "score": 1.0, + "content": "of Freivalds’ check, and the size of the set", + "type": "text" + }, + { + "bbox": [ + 322, + 278, + 329, + 288 + ], + "score": 0.72, + "content": "\\mathbb { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 276, + 529, + 290 + ], + "score": 1.0, + "content": "from which we draw random values. One check", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 81, + 286, + 528, + 302 + ], + "spans": [ + { + "bbox": [ + 81, + 286, + 104, + 302 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 105, + 288, + 144, + 300 + ], + "score": 0.92, + "content": "| \\mathbb { S } | = 2 ^ { 4 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 286, + 321, + 302 + ], + "score": 1.0, + "content": "is problematic, as multiplying elements in", + "type": "text" + }, + { + "bbox": [ + 321, + 289, + 334, + 301 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 286, + 353, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 353, + 289, + 361, + 299 + ], + "score": 0.74, + "content": "\\mathbb { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 286, + 528, + 302 + ], + "score": 1.0, + "content": "can exceed the range of integers exactly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 298, + 530, + 315 + ], + "spans": [ + { + "bbox": [ + 81, + 298, + 186, + 315 + ], + "score": 1.0, + "content": "representable as doubles", + "type": "text" + }, + { + "bbox": [ + 187, + 300, + 207, + 312 + ], + "score": 0.86, + "content": "( 2 ^ { 5 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 298, + 235, + 315 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 235, + 301, + 262, + 311 + ], + "score": 0.9, + "content": "k = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 298, + 357, + 315 + ], + "score": 1.0, + "content": "repetitions, we can set", + "type": "text" + }, + { + "bbox": [ + 357, + 300, + 423, + 313 + ], + "score": 0.93, + "content": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 298, + 530, + 315 + ], + "score": 1.0, + "content": ". Multiplications are then", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 81, + 308, + 530, + 325 + ], + "spans": [ + { + "bbox": [ + 81, + 308, + 134, + 325 + ], + "score": 1.0, + "content": "bounded by", + "type": "text" + }, + { + "bbox": [ + 135, + 311, + 191, + 322 + ], + "score": 0.91, + "content": "2 ^ { 2 4 + 1 9 } = 2 ^ { 4 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 308, + 294, + 325 + ], + "score": 1.0, + "content": ", and we can accumulate", + "type": "text" + }, + { + "bbox": [ + 294, + 311, + 309, + 322 + ], + "score": 0.87, + "content": "2 ^ { 1 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 308, + 530, + 325 + ], + "score": 1.0, + "content": "terms in the inner-product before needing a modular", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 321, + 528, + 334 + ], + "spans": [ + { + "bbox": [ + 82, + 321, + 267, + 334 + ], + "score": 1.0, + "content": "reduction. In practice, we find that increasing", + "type": "text" + }, + { + "bbox": [ + 267, + 323, + 274, + 332 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 321, + 381, + 334 + ], + "score": 1.0, + "content": "further (and thus reducing", + "type": "text" + }, + { + "bbox": [ + 382, + 322, + 396, + 334 + ], + "score": 0.76, + "content": "| \\mathbb { S } | )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 321, + 528, + 334 + ], + "score": 1.0, + "content": "is not worthwhile, as the cost of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 333, + 447, + 346 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 447, + 346 + ], + "score": 1.0, + "content": "performing more inner products trumps the savings from reducing the number of modulos.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 85, + 363, + 268, + 376 + ], + "lines": [ + { + "bbox": [ + 83, + 362, + 270, + 378 + ], + "spans": [ + { + "bbox": [ + 83, + 362, + 270, + 378 + ], + "score": 1.0, + "content": "G RESULTS ON A STANDARD CPU", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 82, + 390, + 528, + 413 + ], + "lines": [ + { + "bbox": [ + 83, + 390, + 529, + 403 + ], + "spans": [ + { + "bbox": [ + 83, + 390, + 529, + 403 + ], + "score": 1.0, + "content": "For completeness, and to asses how our outsourcing scheme fairs in an environment devoid of Intel SGX’s", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 401, + 530, + 413 + ], + "spans": [ + { + "bbox": [ + 82, + 401, + 530, + 413 + ], + "score": 1.0, + "content": "performance quirks, we rerun the evaluations in Section 4 on the same CPU but outside of SGX’s enclave mode.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "image", + "bbox": [ + 84, + 425, + 526, + 537 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 84, + 425, + 526, + 537 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 84, + 425, + 526, + 537 + ], + "spans": [ + { + "bbox": [ + 84, + 425, + 526, + 537 + ], + "score": 0.967, + "type": "image", + "image_path": "9e3a7cd6a779288993a211826b1f16979c45c88d6f37c278fede67cb508715d1.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 84, + 425, + 526, + 462.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 84, + 462.3333333333333, + 526, + 499.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 84, + 499.66666666666663, + 526, + 537.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 84, + 540, + 527, + 574 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 83, + 539, + 528, + 553 + ], + "spans": [ + { + "bbox": [ + 83, + 539, + 528, + 553 + ], + "score": 1.0, + "content": "Figure 5: Micro benchmarks on an untrusted CPU. For three different linear operators, we plot the relative", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 551, + 529, + 565 + ], + "spans": [ + { + "bbox": [ + 82, + 551, + 529, + 565 + ], + "score": 1.0, + "content": "speedup of verifying a result compared to computing it. The dotted line in each plot shows the throughput", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 561, + 237, + 576 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 237, + 576 + ], + "score": 1.0, + "content": "obtained for computing the operation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 83, + 585, + 528, + 641 + ], + "lines": [ + { + "bbox": [ + 82, + 585, + 529, + 597 + ], + "spans": [ + { + "bbox": [ + 82, + 585, + 529, + 597 + ], + "score": 1.0, + "content": "Figure 5 show the results of the micro-benchmarks for matrix multiplication, convolution and separable convolu-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "score": 1.0, + "content": "tions. In all cases, verifying a computation becomes 1-2 orders of magnitude faster than computing it as the outer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 606, + 528, + 619 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 528, + 619 + ], + "score": 1.0, + "content": "dimension grows. Compared to the SGX benchmarks, we also see a much better viability of batched verification", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "(we haven’t optimized batched verifications much, as they are inherently slow on SGX. It is likely that these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 628, + 466, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 466, + 642 + ], + "score": 1.0, + "content": "numbers could be improved significantly, to approach those of verification with preprocessing).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 84, + 645, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 644, + 528, + 659 + ], + "spans": [ + { + "bbox": [ + 83, + 644, + 528, + 659 + ], + "score": 1.0, + "content": "Figure 6 shows benchmarks for VGG16 and MobileNet on a single core with either direct computation or various", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 656, + 529, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 383, + 670 + ], + "score": 1.0, + "content": "secure outsourcing strategies. For integrity alone, we achieve savings up to", + "type": "text" + }, + { + "bbox": [ + 384, + 657, + 406, + 668 + ], + "score": 0.88, + "content": "8 . 9 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 656, + 424, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 424, + 657, + 450, + 668 + ], + "score": 0.86, + "content": "1 9 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 656, + 529, + 670 + ], + "score": 1.0, + "content": "for MobileNet and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 83, + 667, + 529, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 667, + 529, + 681 + ], + "score": 1.0, + "content": "VGG16 respectively. Even without storing any secrets in the enclave, we obtain good speedups using batched", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 84, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 83, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 287, + 707 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 83, + 138, + 418, + 152 + ], + "lines": [ + { + "bbox": [ + 82, + 138, + 420, + 153 + ], + "spans": [ + { + "bbox": [ + 82, + 138, + 420, + 153 + ], + "score": 1.0, + "content": "F MODULAR ARITHMETIC WITH FLOATING POINT OPERATIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 84, + 165, + 527, + 199 + ], + "lines": [ + { + "bbox": [ + 83, + 166, + 528, + 178 + ], + "spans": [ + { + "bbox": [ + 83, + 166, + 440, + 178 + ], + "score": 1.0, + "content": "In this section, we briefly describe how Slalom performs modular arithmetic over a field", + "type": "text" + }, + { + "bbox": [ + 441, + 166, + 453, + 178 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 166, + 528, + 178 + ], + "score": 1.0, + "content": "in the TEE, while", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 83, + 176, + 529, + 190 + ], + "spans": [ + { + "bbox": [ + 83, + 176, + 529, + 190 + ], + "score": 1.0, + "content": "leveraging standard floating point operations to maximize computational efficiency. The main computations in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 83, + 188, + 508, + 200 + ], + "spans": [ + { + "bbox": [ + 83, + 189, + 213, + 200 + ], + "score": 1.0, + "content": "the TEE are inner products over", + "type": "text" + }, + { + "bbox": [ + 213, + 188, + 226, + 200 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 189, + 508, + 200 + ], + "score": 1.0, + "content": "for Freivalds’ check (a matrix product is itself a set of inner products).", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 83, + 166, + 529, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 205, + 528, + 261 + ], + "lines": [ + { + "bbox": [ + 81, + 204, + 529, + 219 + ], + "spans": [ + { + "bbox": [ + 81, + 204, + 461, + 219 + ], + "score": 1.0, + "content": "Our quantization scheme (see Section 3.1) ensures that all DNN values can be represented in", + "type": "text" + }, + { + "bbox": [ + 462, + 206, + 474, + 218 + ], + "score": 0.88, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 204, + 492, + 219 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 492, + 205, + 525, + 218 + ], + "score": 0.91, + "content": "p \\lessapprox 2 ^ { 2 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 525, + 204, + 529, + 219 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 217, + 529, + 230 + ], + "spans": [ + { + "bbox": [ + 82, + 217, + 529, + 230 + ], + "score": 1.0, + "content": "which fits in a standard float. To compute inner products, we first cast elements to doubles (as a single", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 227, + 529, + 240 + ], + "spans": [ + { + "bbox": [ + 82, + 227, + 155, + 240 + ], + "score": 1.0, + "content": "multiplication in", + "type": "text" + }, + { + "bbox": [ + 155, + 228, + 168, + 240 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 227, + 529, + 240 + ], + "score": 1.0, + "content": "would exceed the range of integers exactly representable as floats). Single or double", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 82, + 239, + 529, + 252 + ], + "spans": [ + { + "bbox": [ + 82, + 239, + 529, + 252 + ], + "score": 1.0, + "content": "precision floats are preferable to integer types on Intel architectures due to the availability of much more efficient", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 82, + 248, + 429, + 263 + ], + "spans": [ + { + "bbox": [ + 82, + 248, + 429, + 263 + ], + "score": 1.0, + "content": "SIMD instructions, at a minor reduction in the range of exactly representable integers.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 81, + 204, + 529, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 266, + 528, + 345 + ], + "lines": [ + { + "bbox": [ + 81, + 264, + 530, + 280 + ], + "spans": [ + { + "bbox": [ + 81, + 264, + 274, + 280 + ], + "score": 1.0, + "content": "In our evaluation, we target a soundness error of", + "type": "text" + }, + { + "bbox": [ + 274, + 266, + 295, + 277 + ], + "score": 0.9, + "content": "2 ^ { - 4 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 264, + 530, + 280 + ], + "score": 1.0, + "content": "for each layer. This leads to a tradeoff between the number", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 81, + 276, + 529, + 290 + ], + "spans": [ + { + "bbox": [ + 81, + 276, + 140, + 290 + ], + "score": 1.0, + "content": "of repetitions", + "type": "text" + }, + { + "bbox": [ + 140, + 278, + 147, + 288 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 276, + 321, + 290 + ], + "score": 1.0, + "content": "of Freivalds’ check, and the size of the set", + "type": "text" + }, + { + "bbox": [ + 322, + 278, + 329, + 288 + ], + "score": 0.72, + "content": "\\mathbb { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 276, + 529, + 290 + ], + "score": 1.0, + "content": "from which we draw random values. One check", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 81, + 286, + 528, + 302 + ], + "spans": [ + { + "bbox": [ + 81, + 286, + 104, + 302 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 105, + 288, + 144, + 300 + ], + "score": 0.92, + "content": "| \\mathbb { S } | = 2 ^ { 4 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 286, + 321, + 302 + ], + "score": 1.0, + "content": "is problematic, as multiplying elements in", + "type": "text" + }, + { + "bbox": [ + 321, + 289, + 334, + 301 + ], + "score": 0.89, + "content": "\\mathbb { Z } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 286, + 353, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 353, + 289, + 361, + 299 + ], + "score": 0.74, + "content": "\\mathbb { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 286, + 528, + 302 + ], + "score": 1.0, + "content": "can exceed the range of integers exactly", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 81, + 298, + 530, + 315 + ], + "spans": [ + { + "bbox": [ + 81, + 298, + 186, + 315 + ], + "score": 1.0, + "content": "representable as doubles", + "type": "text" + }, + { + "bbox": [ + 187, + 300, + 207, + 312 + ], + "score": 0.86, + "content": "( 2 ^ { 5 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 298, + 235, + 315 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 235, + 301, + 262, + 311 + ], + "score": 0.9, + "content": "k = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 298, + 357, + 315 + ], + "score": 1.0, + "content": "repetitions, we can set", + "type": "text" + }, + { + "bbox": [ + 357, + 300, + 423, + 313 + ], + "score": 0.93, + "content": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 298, + 530, + 315 + ], + "score": 1.0, + "content": ". Multiplications are then", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 81, + 308, + 530, + 325 + ], + "spans": [ + { + "bbox": [ + 81, + 308, + 134, + 325 + ], + "score": 1.0, + "content": "bounded by", + "type": "text" + }, + { + "bbox": [ + 135, + 311, + 191, + 322 + ], + "score": 0.91, + "content": "2 ^ { 2 4 + 1 9 } = 2 ^ { 4 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 308, + 294, + 325 + ], + "score": 1.0, + "content": ", and we can accumulate", + "type": "text" + }, + { + "bbox": [ + 294, + 311, + 309, + 322 + ], + "score": 0.87, + "content": "2 ^ { 1 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 308, + 530, + 325 + ], + "score": 1.0, + "content": "terms in the inner-product before needing a modular", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 321, + 528, + 334 + ], + "spans": [ + { + "bbox": [ + 82, + 321, + 267, + 334 + ], + "score": 1.0, + "content": "reduction. In practice, we find that increasing", + "type": "text" + }, + { + "bbox": [ + 267, + 323, + 274, + 332 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 321, + 381, + 334 + ], + "score": 1.0, + "content": "further (and thus reducing", + "type": "text" + }, + { + "bbox": [ + 382, + 322, + 396, + 334 + ], + "score": 0.76, + "content": "| \\mathbb { S } | )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 321, + 528, + 334 + ], + "score": 1.0, + "content": "is not worthwhile, as the cost of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 333, + 447, + 346 + ], + "spans": [ + { + "bbox": [ + 82, + 333, + 447, + 346 + ], + "score": 1.0, + "content": "performing more inner products trumps the savings from reducing the number of modulos.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 81, + 264, + 530, + 346 + ] + }, + { + "type": "title", + "bbox": [ + 85, + 363, + 268, + 376 + ], + "lines": [ + { + "bbox": [ + 83, + 362, + 270, + 378 + ], + "spans": [ + { + "bbox": [ + 83, + 362, + 270, + 378 + ], + "score": 1.0, + "content": "G RESULTS ON A STANDARD CPU", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 82, + 390, + 528, + 413 + ], + "lines": [ + { + "bbox": [ + 83, + 390, + 529, + 403 + ], + "spans": [ + { + "bbox": [ + 83, + 390, + 529, + 403 + ], + "score": 1.0, + "content": "For completeness, and to asses how our outsourcing scheme fairs in an environment devoid of Intel SGX’s", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 401, + 530, + 413 + ], + "spans": [ + { + "bbox": [ + 82, + 401, + 530, + 413 + ], + "score": 1.0, + "content": "performance quirks, we rerun the evaluations in Section 4 on the same CPU but outside of SGX’s enclave mode.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 82, + 390, + 530, + 413 + ] + }, + { + "type": "image", + "bbox": [ + 84, + 425, + 526, + 537 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 84, + 425, + 526, + 537 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 84, + 425, + 526, + 537 + ], + "spans": [ + { + "bbox": [ + 84, + 425, + 526, + 537 + ], + "score": 0.967, + "type": "image", + "image_path": "9e3a7cd6a779288993a211826b1f16979c45c88d6f37c278fede67cb508715d1.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 84, + 425, + 526, + 462.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 84, + 462.3333333333333, + 526, + 499.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 84, + 499.66666666666663, + 526, + 537.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 84, + 540, + 527, + 574 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 83, + 539, + 528, + 553 + ], + "spans": [ + { + "bbox": [ + 83, + 539, + 528, + 553 + ], + "score": 1.0, + "content": "Figure 5: Micro benchmarks on an untrusted CPU. For three different linear operators, we plot the relative", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 551, + 529, + 565 + ], + "spans": [ + { + "bbox": [ + 82, + 551, + 529, + 565 + ], + "score": 1.0, + "content": "speedup of verifying a result compared to computing it. The dotted line in each plot shows the throughput", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 82, + 561, + 237, + 576 + ], + "spans": [ + { + "bbox": [ + 82, + 561, + 237, + 576 + ], + "score": 1.0, + "content": "obtained for computing the operation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 83, + 585, + 528, + 641 + ], + "lines": [ + { + "bbox": [ + 82, + 585, + 529, + 597 + ], + "spans": [ + { + "bbox": [ + 82, + 585, + 529, + 597 + ], + "score": 1.0, + "content": "Figure 5 show the results of the micro-benchmarks for matrix multiplication, convolution and separable convolu-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "spans": [ + { + "bbox": [ + 82, + 595, + 529, + 609 + ], + "score": 1.0, + "content": "tions. In all cases, verifying a computation becomes 1-2 orders of magnitude faster than computing it as the outer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 82, + 606, + 528, + 619 + ], + "spans": [ + { + "bbox": [ + 82, + 606, + 528, + 619 + ], + "score": 1.0, + "content": "dimension grows. Compared to the SGX benchmarks, we also see a much better viability of batched verification", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "spans": [ + { + "bbox": [ + 82, + 617, + 529, + 631 + ], + "score": 1.0, + "content": "(we haven’t optimized batched verifications much, as they are inherently slow on SGX. It is likely that these", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 628, + 466, + 642 + ], + "spans": [ + { + "bbox": [ + 82, + 628, + 466, + 642 + ], + "score": 1.0, + "content": "numbers could be improved significantly, to approach those of verification with preprocessing).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 82, + 585, + 529, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 84, + 645, + 527, + 680 + ], + "lines": [ + { + "bbox": [ + 83, + 644, + 528, + 659 + ], + "spans": [ + { + "bbox": [ + 83, + 644, + 528, + 659 + ], + "score": 1.0, + "content": "Figure 6 shows benchmarks for VGG16 and MobileNet on a single core with either direct computation or various", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 82, + 656, + 529, + 670 + ], + "spans": [ + { + "bbox": [ + 82, + 656, + 383, + 670 + ], + "score": 1.0, + "content": "secure outsourcing strategies. For integrity alone, we achieve savings up to", + "type": "text" + }, + { + "bbox": [ + 384, + 657, + 406, + 668 + ], + "score": 0.88, + "content": "8 . 9 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 656, + 424, + 670 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 424, + 657, + 450, + 668 + ], + "score": 0.86, + "content": "1 9 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 656, + 529, + 670 + ], + "score": 1.0, + "content": "for MobileNet and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 83, + 667, + 529, + 681 + ], + "spans": [ + { + "bbox": [ + 83, + 667, + 529, + 681 + ], + "score": 1.0, + "content": "VGG16 respectively. Even without storing any secrets in the enclave, we obtain good speedups using batched", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 83, + 277, + 528, + 288 + ], + "spans": [ + { + "bbox": [ + 83, + 277, + 528, + 288 + ], + "score": 1.0, + "content": "verification. As noted above, it is likely that the batched results could be further improved. With additional", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 287, + 520, + 300 + ], + "spans": [ + { + "bbox": [ + 83, + 287, + 295, + 300 + ], + "score": 1.0, + "content": "blinding to preserve privacy, we achieve speedups of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 296, + 288, + 317, + 298 + ], + "score": 0.87, + "content": "3 . 9 \\times", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 318, + 287, + 335, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 335, + 288, + 357, + 299 + ], + "score": 0.86, + "content": "8 . 1 \\times", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 358, + 287, + 520, + 300 + ], + "score": 1.0, + "content": "for MobileNet and VGG16 respectively.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 31, + "bbox_fs": [ + 82, + 644, + 529, + 681 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 90, + 138, + 527, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 90, + 138, + 527, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 138, + 527, + 214 + ], + "spans": [ + { + "bbox": [ + 90, + 138, + 527, + 214 + ], + "score": 0.959, + "type": "image", + "image_path": "c8154e92d0e65f4edf1599b73db1e4f3db8f57d0f186fd57a3cf3863327d0a07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 90, + 138, + 527, + 163.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 90, + 163.33333333333334, + 527, + 188.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 90, + 188.66666666666669, + 527, + 214.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 83, + 219, + 528, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 218, + 528, + 232 + ], + "spans": [ + { + "bbox": [ + 82, + 218, + 528, + 232 + ], + "score": 1.0, + "content": "Figure 6: Inference with integrity and/or privacy on an untrusted CPU. We compare the baseline inference", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 229, + 529, + 244 + ], + "spans": [ + { + "bbox": [ + 82, + 229, + 529, + 244 + ], + "score": 1.0, + "content": "throughput (blue) to that obtained with “on-the-fly” integrity checks (red); batched integrity checks (green);", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 241, + 528, + 254 + ], + "spans": [ + { + "bbox": [ + 83, + 241, + 528, + 254 + ], + "score": 1.0, + "content": "integrity checks with precomputed secrets (yellow); privacy only (black); and privacy and integrity (purple). The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 252, + 412, + 265 + ], + "spans": [ + { + "bbox": [ + 82, + 252, + 412, + 265 + ], + "score": 1.0, + "content": "fused MobileNet model has no intermediate activation for separable convolutions.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 82, + 276, + 528, + 299 + ], + "lines": [ + { + "bbox": [ + 83, + 277, + 528, + 288 + ], + "spans": [ + { + "bbox": [ + 83, + 277, + 528, + 288 + ], + "score": 1.0, + "content": "verification. As noted above, it is likely that the batched results could be further improved. With additional", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 83, + 287, + 520, + 300 + ], + "spans": [ + { + "bbox": [ + 83, + 287, + 295, + 300 + ], + "score": 1.0, + "content": "blinding to preserve privacy, we achieve speedups of", + "type": "text" + }, + { + "bbox": [ + 296, + 288, + 317, + 298 + ], + "score": 0.87, + "content": "3 . 9 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 287, + 335, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 335, + 288, + 357, + 299 + ], + "score": 0.86, + "content": "8 . 1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 287, + 520, + 300 + ], + "score": 1.0, + "content": "for MobileNet and VGG16 respectively.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 84, + 315, + 202, + 328 + ], + "lines": [ + { + "bbox": [ + 82, + 315, + 203, + 330 + ], + "spans": [ + { + "bbox": [ + 82, + 315, + 203, + 330 + ], + "score": 1.0, + "content": "H PARALLELIZATION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 82, + 340, + 529, + 374 + ], + "lines": [ + { + "bbox": [ + 82, + 339, + 528, + 353 + ], + "spans": [ + { + "bbox": [ + 82, + 339, + 528, + 353 + ], + "score": 1.0, + "content": "Our experiments on SGX in Section 4 where performed using a single execution thread, as SGX enclaves do not", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 352, + 529, + 364 + ], + "spans": [ + { + "bbox": [ + 83, + 352, + 529, + 364 + ], + "score": 1.0, + "content": "have the ability to create threads. We have also experimented with techniques for achieving parallelism in SGX,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 361, + 388, + 375 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 388, + 375 + ], + "score": 1.0, + "content": "both for standard computations and outsourced ones, but with little success.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 83, + 379, + 528, + 446 + ], + "lines": [ + { + "bbox": [ + 83, + 379, + 528, + 391 + ], + "spans": [ + { + "bbox": [ + 83, + 379, + 528, + 391 + ], + "score": 1.0, + "content": "To optimize for throughput, a simple approach is to run multiple forward passes simultaneously. On a standard", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 389, + 529, + 403 + ], + "spans": [ + { + "bbox": [ + 82, + 389, + 529, + 403 + ], + "score": 1.0, + "content": "CPU, this form of “outer-parallelism” achieves close to linear scaling as we increase the number of threads from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 401, + 529, + 414 + ], + "spans": [ + { + "bbox": [ + 82, + 401, + 529, + 414 + ], + "score": 1.0, + "content": "1 to 4 on our quad-core machine. With SGX however, we did not manage to achieve any parallel speedup for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 412, + 529, + 425 + ], + "spans": [ + { + "bbox": [ + 82, + 412, + 529, + 425 + ], + "score": 1.0, + "content": "VGG16—whether for direct computation or verifying outsourced results—presumably because each independent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 422, + 528, + 436 + ], + "spans": [ + { + "bbox": [ + 82, + 422, + 528, + 436 + ], + "score": 1.0, + "content": "thread requires extra memory that quickly exceeds the PRM limit. For the smaller MobileNet model, we get less", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 434, + 477, + 447 + ], + "spans": [ + { + "bbox": [ + 82, + 434, + 110, + 447 + ], + "score": 1.0, + "content": "than a", + "type": "text" + }, + { + "bbox": [ + 110, + 434, + 132, + 445 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 434, + 477, + 447 + ], + "score": 1.0, + "content": "speedup using up to 4 threads, for direct computation or outsourced verification alike.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 83, + 450, + 528, + 517 + ], + "lines": [ + { + "bbox": [ + 82, + 449, + 529, + 465 + ], + "spans": [ + { + "bbox": [ + 82, + 449, + 529, + 465 + ], + "score": 1.0, + "content": "DNNs typically also make use of intra-operation parallelism, i.e., computing the output of a given layer using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 460, + 529, + 476 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 529, + 476 + ], + "score": 1.0, + "content": "multiple threads. Our DNN library currently does not support intra-operation parallelism, but implementing", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 472, + 528, + 485 + ], + "spans": [ + { + "bbox": [ + 82, + 472, + 528, + 485 + ], + "score": 1.0, + "content": "a dedicated thread pool for SGX could be an interesting extension for future work. Instead, we evaluate the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 483, + 529, + 497 + ], + "spans": [ + { + "bbox": [ + 82, + 483, + 529, + 497 + ], + "score": 1.0, + "content": "potential benefits of intra-op parallelism on a standard untrusted CPU, for our matrix-product and convolution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 493, + 528, + 508 + ], + "spans": [ + { + "bbox": [ + 82, + 493, + 528, + 508 + ], + "score": 1.0, + "content": "benchmarks. We make use of Eigen’s internal multi-threading support to speed up these operations, and custom", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 84, + 506, + 400, + 519 + ], + "spans": [ + { + "bbox": [ + 84, + 506, + 400, + 519 + ], + "score": 1.0, + "content": "OpenMP code to parallelize dot products, as Eigen does not do this on its own.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "image", + "bbox": [ + 142, + 527, + 467, + 649 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 527, + 467, + 649 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 527, + 467, + 649 + ], + "spans": [ + { + "bbox": [ + 142, + 527, + 467, + 649 + ], + "score": 0.887, + "type": "image", + "image_path": "827a1dd46e9ddda18510395cc72fb7d148bced674096122d688675387980e22d.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 527, + 467, + 567.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 567.6666666666666, + 467, + 608.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 608.3333333333333, + 467, + 648.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 82, + 652, + 528, + 675 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 83, + 652, + 529, + 665 + ], + "spans": [ + { + "bbox": [ + 83, + 652, + 529, + 665 + ], + "score": 1.0, + "content": "Figure 7: Multi-threaded micro benchmarks on an untrusted CPU. Reiterates benchmarks for matrix prod-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 664, + 237, + 675 + ], + "spans": [ + { + "bbox": [ + 82, + 664, + 237, + 675 + ], + "score": 1.0, + "content": "ucts and convolutions using 4 threads.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + } + ], + "index": 27.25 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 85, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 708 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 711 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 90, + 138, + 527, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 90, + 138, + 527, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 90, + 138, + 527, + 214 + ], + "spans": [ + { + "bbox": [ + 90, + 138, + 527, + 214 + ], + "score": 0.959, + "type": "image", + "image_path": "c8154e92d0e65f4edf1599b73db1e4f3db8f57d0f186fd57a3cf3863327d0a07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 90, + 138, + 527, + 163.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 90, + 163.33333333333334, + 527, + 188.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 90, + 188.66666666666669, + 527, + 214.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 83, + 219, + 528, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 82, + 218, + 528, + 232 + ], + "spans": [ + { + "bbox": [ + 82, + 218, + 528, + 232 + ], + "score": 1.0, + "content": "Figure 6: Inference with integrity and/or privacy on an untrusted CPU. We compare the baseline inference", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 229, + 529, + 244 + ], + "spans": [ + { + "bbox": [ + 82, + 229, + 529, + 244 + ], + "score": 1.0, + "content": "throughput (blue) to that obtained with “on-the-fly” integrity checks (red); batched integrity checks (green);", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 83, + 241, + 528, + 254 + ], + "spans": [ + { + "bbox": [ + 83, + 241, + 528, + 254 + ], + "score": 1.0, + "content": "integrity checks with precomputed secrets (yellow); privacy only (black); and privacy and integrity (purple). The", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 252, + 412, + 265 + ], + "spans": [ + { + "bbox": [ + 82, + 252, + 412, + 265 + ], + "score": 1.0, + "content": "fused MobileNet model has no intermediate activation for separable convolutions.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 82, + 276, + 528, + 299 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 83, + 277, + 528, + 300 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 84, + 315, + 202, + 328 + ], + "lines": [ + { + "bbox": [ + 82, + 315, + 203, + 330 + ], + "spans": [ + { + "bbox": [ + 82, + 315, + 203, + 330 + ], + "score": 1.0, + "content": "H PARALLELIZATION", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 82, + 340, + 529, + 374 + ], + "lines": [ + { + "bbox": [ + 82, + 339, + 528, + 353 + ], + "spans": [ + { + "bbox": [ + 82, + 339, + 528, + 353 + ], + "score": 1.0, + "content": "Our experiments on SGX in Section 4 where performed using a single execution thread, as SGX enclaves do not", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 83, + 352, + 529, + 364 + ], + "spans": [ + { + "bbox": [ + 83, + 352, + 529, + 364 + ], + "score": 1.0, + "content": "have the ability to create threads. We have also experimented with techniques for achieving parallelism in SGX,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 82, + 361, + 388, + 375 + ], + "spans": [ + { + "bbox": [ + 82, + 361, + 388, + 375 + ], + "score": 1.0, + "content": "both for standard computations and outsourced ones, but with little success.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 82, + 339, + 529, + 375 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 379, + 528, + 446 + ], + "lines": [ + { + "bbox": [ + 83, + 379, + 528, + 391 + ], + "spans": [ + { + "bbox": [ + 83, + 379, + 528, + 391 + ], + "score": 1.0, + "content": "To optimize for throughput, a simple approach is to run multiple forward passes simultaneously. On a standard", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 82, + 389, + 529, + 403 + ], + "spans": [ + { + "bbox": [ + 82, + 389, + 529, + 403 + ], + "score": 1.0, + "content": "CPU, this form of “outer-parallelism” achieves close to linear scaling as we increase the number of threads from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 82, + 401, + 529, + 414 + ], + "spans": [ + { + "bbox": [ + 82, + 401, + 529, + 414 + ], + "score": 1.0, + "content": "1 to 4 on our quad-core machine. With SGX however, we did not manage to achieve any parallel speedup for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 82, + 412, + 529, + 425 + ], + "spans": [ + { + "bbox": [ + 82, + 412, + 529, + 425 + ], + "score": 1.0, + "content": "VGG16—whether for direct computation or verifying outsourced results—presumably because each independent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 82, + 422, + 528, + 436 + ], + "spans": [ + { + "bbox": [ + 82, + 422, + 528, + 436 + ], + "score": 1.0, + "content": "thread requires extra memory that quickly exceeds the PRM limit. For the smaller MobileNet model, we get less", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 82, + 434, + 477, + 447 + ], + "spans": [ + { + "bbox": [ + 82, + 434, + 110, + 447 + ], + "score": 1.0, + "content": "than a", + "type": "text" + }, + { + "bbox": [ + 110, + 434, + 132, + 445 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 434, + 477, + 447 + ], + "score": 1.0, + "content": "speedup using up to 4 threads, for direct computation or outsourced verification alike.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 82, + 379, + 529, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 83, + 450, + 528, + 517 + ], + "lines": [ + { + "bbox": [ + 82, + 449, + 529, + 465 + ], + "spans": [ + { + "bbox": [ + 82, + 449, + 529, + 465 + ], + "score": 1.0, + "content": "DNNs typically also make use of intra-operation parallelism, i.e., computing the output of a given layer using", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 82, + 460, + 529, + 476 + ], + "spans": [ + { + "bbox": [ + 82, + 460, + 529, + 476 + ], + "score": 1.0, + "content": "multiple threads. Our DNN library currently does not support intra-operation parallelism, but implementing", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 82, + 472, + 528, + 485 + ], + "spans": [ + { + "bbox": [ + 82, + 472, + 528, + 485 + ], + "score": 1.0, + "content": "a dedicated thread pool for SGX could be an interesting extension for future work. Instead, we evaluate the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 82, + 483, + 529, + 497 + ], + "spans": [ + { + "bbox": [ + 82, + 483, + 529, + 497 + ], + "score": 1.0, + "content": "potential benefits of intra-op parallelism on a standard untrusted CPU, for our matrix-product and convolution", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 82, + 493, + 528, + 508 + ], + "spans": [ + { + "bbox": [ + 82, + 493, + 528, + 508 + ], + "score": 1.0, + "content": "benchmarks. We make use of Eigen’s internal multi-threading support to speed up these operations, and custom", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 84, + 506, + 400, + 519 + ], + "spans": [ + { + "bbox": [ + 84, + 506, + 400, + 519 + ], + "score": 1.0, + "content": "OpenMP code to parallelize dot products, as Eigen does not do this on its own.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 82, + 449, + 529, + 519 + ] + }, + { + "type": "image", + "bbox": [ + 142, + 527, + 467, + 649 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 527, + 467, + 649 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 142, + 527, + 467, + 649 + ], + "spans": [ + { + "bbox": [ + 142, + 527, + 467, + 649 + ], + "score": 0.887, + "type": "image", + "image_path": "827a1dd46e9ddda18510395cc72fb7d148bced674096122d688675387980e22d.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 142, + 527, + 467, + 567.6666666666666 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 142, + 567.6666666666666, + 467, + 608.3333333333333 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 142, + 608.3333333333333, + 467, + 648.9999999999999 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 82, + 652, + 528, + 675 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 83, + 652, + 529, + 665 + ], + "spans": [ + { + "bbox": [ + 83, + 652, + 529, + 665 + ], + "score": 1.0, + "content": "Figure 7: Multi-threaded micro benchmarks on an untrusted CPU. Reiterates benchmarks for matrix prod-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 82, + 664, + 237, + 675 + ], + "spans": [ + { + "bbox": [ + 82, + 664, + 237, + 675 + ], + "score": 1.0, + "content": "ucts and convolutions using 4 threads.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + } + ], + "index": 27.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 528, + 229 + ], + "lines": [ + { + "bbox": [ + 82, + 140, + 528, + 153 + ], + "spans": [ + { + "bbox": [ + 82, + 140, + 528, + 153 + ], + "score": 1.0, + "content": "Figure 7 shows the results using 4 threads. For convolutions, we have currently only implemented multi-threading", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 151, + 529, + 165 + ], + "spans": [ + { + "bbox": [ + 82, + 151, + 529, + 165 + ], + "score": 1.0, + "content": "for the verification with preprocessing (which requires only standard dot products). Surprisingly maybe, we find", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 81, + 162, + 528, + 176 + ], + "spans": [ + { + "bbox": [ + 81, + 162, + 528, + 176 + ], + "score": 1.0, + "content": "that multi-threading increases the gap between direct and verified computations of matrix products, probably", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 529, + 187 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 529, + 187 + ], + "score": 1.0, + "content": "because dot products are extremely easy to parallelize efficiently (compared to full convolutions). We also obtain", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 183, + 529, + 198 + ], + "spans": [ + { + "bbox": [ + 82, + 183, + 529, + 198 + ], + "score": 1.0, + "content": "close to linear speedups for verifiable separable convolutions, but omit the results as we currently do not have an", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 194, + 529, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 194, + 529, + 208 + ], + "score": 1.0, + "content": "implementation of multi-threaded direct computation for depthwise convolutions, which renders the comparison", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 205, + 529, + 219 + ], + "spans": [ + { + "bbox": [ + 82, + 205, + 529, + 219 + ], + "score": 1.0, + "content": "unfair. Due to the various memory-access overheads in SGX, it is unclear whether similar speedups could be", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 81, + 215, + 447, + 232 + ], + "spans": [ + { + "bbox": [ + 81, + 215, + 447, + 232 + ], + "score": 1.0, + "content": "obtained by using intra-op parallelism in an enclave, but this is an avenue worth exploring.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 84, + 85, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "spans": [ + { + "bbox": [ + 83, + 84, + 271, + 96 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 277, + 699, + 288, + 707 + ], + "lines": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "spans": [ + { + "bbox": [ + 276, + 698, + 289, + 712 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 140, + 528, + 229 + ], + "lines": [ + { + "bbox": [ + 82, + 140, + 528, + 153 + ], + "spans": [ + { + "bbox": [ + 82, + 140, + 528, + 153 + ], + "score": 1.0, + "content": "Figure 7 shows the results using 4 threads. For convolutions, we have currently only implemented multi-threading", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 82, + 151, + 529, + 165 + ], + "spans": [ + { + "bbox": [ + 82, + 151, + 529, + 165 + ], + "score": 1.0, + "content": "for the verification with preprocessing (which requires only standard dot products). Surprisingly maybe, we find", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 81, + 162, + 528, + 176 + ], + "spans": [ + { + "bbox": [ + 81, + 162, + 528, + 176 + ], + "score": 1.0, + "content": "that multi-threading increases the gap between direct and verified computations of matrix products, probably", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 82, + 173, + 529, + 187 + ], + "spans": [ + { + "bbox": [ + 82, + 173, + 529, + 187 + ], + "score": 1.0, + "content": "because dot products are extremely easy to parallelize efficiently (compared to full convolutions). We also obtain", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 82, + 183, + 529, + 198 + ], + "spans": [ + { + "bbox": [ + 82, + 183, + 529, + 198 + ], + "score": 1.0, + "content": "close to linear speedups for verifiable separable convolutions, but omit the results as we currently do not have an", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 82, + 194, + 529, + 208 + ], + "spans": [ + { + "bbox": [ + 82, + 194, + 529, + 208 + ], + "score": 1.0, + "content": "implementation of multi-threaded direct computation for depthwise convolutions, which renders the comparison", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 82, + 205, + 529, + 219 + ], + "spans": [ + { + "bbox": [ + 82, + 205, + 529, + 219 + ], + "score": 1.0, + "content": "unfair. Due to the various memory-access overheads in SGX, it is unclear whether similar speedups could be", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 81, + 215, + 447, + 232 + ], + "spans": [ + { + "bbox": [ + 81, + 215, + 447, + 232 + ], + "score": 1.0, + "content": "obtained by using intra-op parallelism in an enclave, but this is an avenue worth exploring.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 81, + 140, + 529, + 232 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rJVorjCcKQ/rJVorjCcKQ_model.json b/parse/train/rJVorjCcKQ/rJVorjCcKQ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..9074e3d26f82bce0764b386638a5e7a8b88efe0f --- /dev/null +++ b/parse/train/rJVorjCcKQ/rJVorjCcKQ_model.json @@ -0,0 +1,28854 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 334, + 787, + 1369, + 787, + 1369, + 1184, + 334, + 1184 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 235, + 1642, + 1469, + 1642, + 1469, + 1888, + 235, + 1888 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 237, + 1334, + 1469, + 1334, + 1469, + 1489, + 237, + 1489 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 237, + 1502, + 1468, + 1502, + 1468, + 1627, + 237, + 1627 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 237, + 380, + 1464, + 380, + 1464, + 486, + 237, + 486 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 249, + 536, + 620, + 536, + 620, + 629, + 249, + 629 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 880, + 537, + 1218, + 537, + 1218, + 629, + 880, + 629 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 239, + 1260, + 509, + 1260, + 509, + 1295, + 239, + 1295 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 234, + 236, + 752, + 236, + 752, + 265, + 234, + 265 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 773, + 711, + 927, + 711, + 927, + 744, + 773, + 744 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 776, + 1942, + 792, + 1942, + 792, + 1967, + 776, + 1967 + ], + "score": 0.755 + }, + { + "category_id": 13, + "poly": [ + 874, + 1154, + 927, + 1154, + 927, + 1182, + 874, + 1182 + ], + "score": 0.89, + "latex": "1 1 \\times" + }, + { + "category_id": 13, + "poly": [ + 803, + 1154, + 843, + 1154, + 843, + 1182, + 803, + 1182 + ], + "score": 0.87, + "latex": "4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1123, + 1259, + 1123, + 1259, + 1152, + 1206, + 1152 + ], + "score": 0.87, + "latex": "2 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1124, + 1176, + 1124, + 1176, + 1152, + 1137, + 1152 + ], + "score": 0.87, + "latex": "6 \\times" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 379.0, + 1471.0, + 379.0, + 1471.0, + 433.0, + 231.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 436.0, + 1184.0, + 436.0, + 1184.0, + 488.0, + 230.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1256.0, + 515.0, + 1256.0, + 515.0, + 1303.0, + 230.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 707.0, + 934.0, + 707.0, + 934.0, + 750.0, + 768.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1941.0, + 796.0, + 1941.0, + 796.0, + 1972.0, + 775.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 787.0, + 1372.0, + 787.0, + 1372.0, + 824.0, + 331.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 819.0, + 1369.0, + 819.0, + 1369.0, + 853.0, + 331.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 849.0, + 1369.0, + 849.0, + 1369.0, + 883.0, + 330.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 879.0, + 1369.0, + 879.0, + 1369.0, + 913.0, + 329.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 910.0, + 1369.0, + 910.0, + 1369.0, + 944.0, + 330.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 939.0, + 1372.0, + 939.0, + 1372.0, + 976.0, + 328.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 969.0, + 1372.0, + 969.0, + 1372.0, + 1006.0, + 330.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 997.0, + 1373.0, + 997.0, + 1373.0, + 1037.0, + 329.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1024.0, + 1374.0, + 1024.0, + 1374.0, + 1070.0, + 328.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1058.0, + 1372.0, + 1058.0, + 1372.0, + 1098.0, + 329.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1092.0, + 1372.0, + 1092.0, + 1372.0, + 1125.0, + 331.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1123.0, + 1136.0, + 1123.0, + 1136.0, + 1155.0, + 330.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1123.0, + 1205.0, + 1123.0, + 1205.0, + 1155.0, + 1177.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1123.0, + 1369.0, + 1123.0, + 1369.0, + 1155.0, + 1260.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1153.0, + 802.0, + 1153.0, + 802.0, + 1187.0, + 329.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1153.0, + 873.0, + 1153.0, + 873.0, + 1187.0, + 844.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1153.0, + 1327.0, + 1153.0, + 1327.0, + 1187.0, + 928.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1642.0, + 1473.0, + 1642.0, + 1473.0, + 1680.0, + 229.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1670.0, + 1472.0, + 1670.0, + 1472.0, + 1710.0, + 228.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1706.0, + 1470.0, + 1706.0, + 1470.0, + 1739.0, + 231.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1734.0, + 1473.0, + 1734.0, + 1473.0, + 1772.0, + 229.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1765.0, + 1472.0, + 1765.0, + 1472.0, + 1799.0, + 231.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1796.0, + 1469.0, + 1796.0, + 1469.0, + 1830.0, + 231.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1826.0, + 1469.0, + 1826.0, + 1469.0, + 1860.0, + 231.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1854.0, + 1475.0, + 1854.0, + 1475.0, + 1893.0, + 228.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1333.0, + 1473.0, + 1333.0, + 1473.0, + 1372.0, + 229.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1365.0, + 1470.0, + 1365.0, + 1470.0, + 1398.0, + 233.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1394.0, + 1470.0, + 1394.0, + 1470.0, + 1433.0, + 230.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1425.0, + 1470.0, + 1425.0, + 1470.0, + 1463.0, + 229.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1457.0, + 1473.0, + 1457.0, + 1473.0, + 1493.0, + 230.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1504.0, + 1472.0, + 1504.0, + 1472.0, + 1539.0, + 231.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1535.0, + 1469.0, + 1535.0, + 1469.0, + 1570.0, + 231.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1560.0, + 1469.0, + 1560.0, + 1469.0, + 1604.0, + 229.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1594.0, + 1428.0, + 1594.0, + 1428.0, + 1635.0, + 227.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 534.0, + 441.0, + 534.0, + 441.0, + 569.0, + 247.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 565.0, + 474.0, + 565.0, + 474.0, + 602.0, + 248.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 601.0, + 620.0, + 601.0, + 620.0, + 629.0, + 250.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 538.0, + 1018.0, + 538.0, + 1018.0, + 567.0, + 880.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 565.0, + 1104.0, + 565.0, + 1104.0, + 602.0, + 879.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 601.0, + 1217.0, + 601.0, + 1217.0, + 629.0, + 881.0, + 629.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1039, + 1469, + 1039, + 1469, + 1194, + 234, + 1194 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 234, + 529, + 1469, + 529, + 1469, + 714, + 234, + 714 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 235, + 728, + 1470, + 728, + 1470, + 883, + 235, + 883 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 235, + 1349, + 1468, + 1349, + 1468, + 1472, + 235, + 1472 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 236, + 901, + 1468, + 901, + 1468, + 1025, + 236, + 1025 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 235, + 390, + 1466, + 390, + 1466, + 515, + 235, + 515 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 247, + 1483, + 1468, + 1483, + 1468, + 1654, + 247, + 1654 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 751, + 236, + 751, + 265, + 235, + 265 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 235, + 1291, + 532, + 1291, + 532, + 1323, + 235, + 1323 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 235, + 1223, + 494, + 1223, + 494, + 1259, + 235, + 1259 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 232, + 1829, + 1465, + 1829, + 1465, + 1889, + 232, + 1889 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 230, + 1746, + 1465, + 1746, + 1465, + 1809, + 230, + 1809 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 776, + 1942, + 795, + 1942, + 795, + 1967, + 776, + 1967 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 234, + 1689, + 1343, + 1689, + 1343, + 1723, + 234, + 1723 + ], + "score": 0.791 + }, + { + "category_id": 13, + "poly": [ + 651, + 1517, + 763, + 1517, + 763, + 1549, + 651, + 1549 + ], + "score": 0.93, + "latex": "\\tilde { y } \\ne F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1622, + 1447, + 1622, + 1447, + 1655, + 1335, + 1655 + ], + "score": 0.92, + "latex": "y = F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1349, + 1466, + 1349, + 1466, + 1383, + 1292, + 1383 + ], + "score": 0.9, + "latex": "F ( x ) : \\mathcal { X } \\mathcal { Y }" + }, + { + "category_id": 13, + "poly": [ + 792, + 1133, + 844, + 1133, + 844, + 1161, + 792, + 1161 + ], + "score": 0.89, + "latex": "2 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 1263, + 1132, + 1316, + 1132, + 1316, + 1161, + 1263, + 1161 + ], + "score": 0.88, + "latex": "1 1 \\times" + }, + { + "category_id": 13, + "poly": [ + 720, + 1133, + 760, + 1133, + 760, + 1161, + 720, + 1161 + ], + "score": 0.87, + "latex": "6 \\times" + }, + { + "category_id": 13, + "poly": [ + 964, + 1837, + 982, + 1837, + 982, + 1856, + 964, + 1856 + ], + "score": 0.87, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1133, + 1232, + 1133, + 1232, + 1161, + 1192, + 1161 + ], + "score": 0.86, + "latex": "4 \\times" + }, + { + "category_id": 13, + "poly": [ + 508, + 1624, + 533, + 1624, + 533, + 1649, + 508, + 1649 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1623, + 1059, + 1623, + 1059, + 1649, + 1035, + 1649 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1593, + 1277, + 1593, + 1277, + 1619, + 1252, + 1619 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 607, + 1592, + 632, + 1592, + 632, + 1619, + 607, + 1619 + ], + "score": 0.81, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 505, + 1555, + 527, + 1555, + 527, + 1581, + 505, + 1581 + ], + "score": 0.81, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 906, + 1592, + 928, + 1592, + 928, + 1619, + 906, + 1619 + ], + "score": 0.8, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 505, + 1486, + 527, + 1486, + 527, + 1513, + 505, + 1513 + ], + "score": 0.8, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1486, + 1166, + 1486, + 1166, + 1512, + 1144, + 1512 + ], + "score": 0.8, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 975, + 1351, + 997, + 1351, + 997, + 1377, + 975, + 1377 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1351, + 1104, + 1351, + 1104, + 1377, + 1081, + 1377 + ], + "score": 0.78, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 814, + 1351, + 834, + 1351, + 834, + 1377, + 814, + 1377 + ], + "score": 0.78, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1623, + 795, + 1623, + 795, + 1649, + 775, + 1649 + ], + "score": 0.77, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 456, + 1381, + 475, + 1381, + 475, + 1407, + 456, + 1407 + ], + "score": 0.76, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1561, + 1039, + 1561, + 1039, + 1581, + 1021, + 1581 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 642, + 1491, + 661, + 1491, + 661, + 1512, + 642, + 1512 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 329, + 1860, + 347, + 1860, + 347, + 1884, + 329, + 1884 + ], + "score": 0.71, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 896, + 1519, + 909, + 1519, + 909, + 1543, + 896, + 1543 + ], + "score": 0.71, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 861, + 1442, + 883, + 1442, + 883, + 1468, + 861, + 1468 + ], + "score": 0.25, + "latex": "\\mathbf { B }" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1292.0, + 534.0, + 1292.0, + 534.0, + 1325.0, + 232.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1218.0, + 497.0, + 1218.0, + 497.0, + 1267.0, + 227.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 1826.0, + 963.0, + 1826.0, + 963.0, + 1863.0, + 267.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1826.0, + 1469.0, + 1826.0, + 1469.0, + 1863.0, + 983.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1860.0, + 328.0, + 1860.0, + 328.0, + 1888.0, + 232.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1860.0, + 1350.0, + 1860.0, + 1350.0, + 1888.0, + 348.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1940.0, + 799.0, + 1940.0, + 799.0, + 1974.0, + 774.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1039.0, + 1466.0, + 1039.0, + 1466.0, + 1073.0, + 233.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1069.0, + 1473.0, + 1069.0, + 1473.0, + 1106.0, + 228.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1101.0, + 1472.0, + 1101.0, + 1472.0, + 1138.0, + 230.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1132.0, + 719.0, + 1132.0, + 719.0, + 1166.0, + 231.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1132.0, + 791.0, + 1132.0, + 791.0, + 1166.0, + 761.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1132.0, + 1191.0, + 1132.0, + 1191.0, + 1166.0, + 845.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1132.0, + 1262.0, + 1132.0, + 1262.0, + 1166.0, + 1233.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1132.0, + 1468.0, + 1132.0, + 1468.0, + 1166.0, + 1317.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1162.0, + 1473.0, + 1162.0, + 1473.0, + 1199.0, + 231.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 529.0, + 1470.0, + 529.0, + 1470.0, + 567.0, + 231.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 561.0, + 1469.0, + 561.0, + 1469.0, + 598.0, + 230.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 590.0, + 1470.0, + 590.0, + 1470.0, + 627.0, + 230.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 620.0, + 1466.0, + 620.0, + 1466.0, + 657.0, + 230.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 653.0, + 1469.0, + 653.0, + 1469.0, + 685.0, + 231.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 681.0, + 1473.0, + 681.0, + 1473.0, + 718.0, + 230.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 728.0, + 1471.0, + 728.0, + 1471.0, + 762.0, + 231.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 760.0, + 1470.0, + 760.0, + 1470.0, + 794.0, + 232.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 788.0, + 1473.0, + 788.0, + 1473.0, + 827.0, + 230.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 821.0, + 1469.0, + 821.0, + 1469.0, + 855.0, + 231.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 849.0, + 1160.0, + 849.0, + 1160.0, + 889.0, + 228.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1348.0, + 813.0, + 1348.0, + 813.0, + 1387.0, + 229.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1348.0, + 974.0, + 1348.0, + 974.0, + 1387.0, + 835.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1348.0, + 1080.0, + 1348.0, + 1080.0, + 1387.0, + 998.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1348.0, + 1291.0, + 1348.0, + 1291.0, + 1387.0, + 1105.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1467.0, + 1348.0, + 1471.0, + 1348.0, + 1471.0, + 1387.0, + 1467.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1377.0, + 455.0, + 1377.0, + 455.0, + 1416.0, + 229.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1377.0, + 1471.0, + 1377.0, + 1471.0, + 1416.0, + 476.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1408.0, + 1471.0, + 1408.0, + 1471.0, + 1448.0, + 229.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1438.0, + 860.0, + 1438.0, + 860.0, + 1477.0, + 229.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1438.0, + 1149.0, + 1438.0, + 1149.0, + 1477.0, + 884.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 900.0, + 1471.0, + 900.0, + 1471.0, + 938.0, + 232.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 932.0, + 1469.0, + 932.0, + 1469.0, + 966.0, + 230.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 962.0, + 1471.0, + 962.0, + 1471.0, + 998.0, + 230.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 992.0, + 1457.0, + 992.0, + 1457.0, + 1030.0, + 229.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 388.0, + 1470.0, + 388.0, + 1470.0, + 429.0, + 228.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 419.0, + 1470.0, + 419.0, + 1470.0, + 461.0, + 228.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 452.0, + 1469.0, + 452.0, + 1469.0, + 488.0, + 232.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 482.0, + 1442.0, + 482.0, + 1442.0, + 520.0, + 228.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1484.0, + 504.0, + 1484.0, + 504.0, + 1519.0, + 245.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1484.0, + 641.0, + 1484.0, + 641.0, + 1519.0, + 528.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1484.0, + 1143.0, + 1484.0, + 1143.0, + 1519.0, + 662.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1484.0, + 1468.0, + 1484.0, + 1468.0, + 1519.0, + 1167.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 1515.0, + 650.0, + 1515.0, + 650.0, + 1550.0, + 267.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1515.0, + 895.0, + 1515.0, + 895.0, + 1550.0, + 764.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1515.0, + 921.0, + 1515.0, + 921.0, + 1550.0, + 910.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1549.0, + 504.0, + 1549.0, + 504.0, + 1590.0, + 245.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1549.0, + 1020.0, + 1549.0, + 1020.0, + 1590.0, + 528.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1549.0, + 1050.0, + 1549.0, + 1050.0, + 1590.0, + 1040.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1588.0, + 606.0, + 1588.0, + 606.0, + 1626.0, + 245.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1588.0, + 905.0, + 1588.0, + 905.0, + 1626.0, + 633.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1588.0, + 1251.0, + 1588.0, + 1251.0, + 1626.0, + 929.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1588.0, + 1467.0, + 1588.0, + 1467.0, + 1626.0, + 1278.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 1619.0, + 507.0, + 1619.0, + 507.0, + 1657.0, + 267.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1619.0, + 774.0, + 1619.0, + 774.0, + 1657.0, + 534.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1619.0, + 1034.0, + 1619.0, + 1034.0, + 1657.0, + 796.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1619.0, + 1334.0, + 1619.0, + 1334.0, + 1657.0, + 1060.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1448.0, + 1619.0, + 1467.0, + 1619.0, + 1467.0, + 1657.0, + 1448.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1748.0, + 1468.0, + 1748.0, + 1468.0, + 1780.0, + 233.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1778.0, + 1469.0, + 1778.0, + 1469.0, + 1811.0, + 230.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1685.0, + 1344.0, + 1685.0, + 1344.0, + 1724.0, + 231.0, + 1724.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1141, + 1467, + 1141, + 1467, + 1356, + 234, + 1356 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 235, + 804, + 1469, + 804, + 1469, + 926, + 235, + 926 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 233, + 942, + 1468, + 942, + 1468, + 1126, + 233, + 1126 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 235, + 1562, + 1468, + 1562, + 1468, + 1747, + 235, + 1747 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 233, + 1454, + 1468, + 1454, + 1468, + 1547, + 233, + 1547 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 233, + 1775, + 1469, + 1775, + 1469, + 1888, + 233, + 1888 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 233, + 696, + 1467, + 696, + 1467, + 789, + 233, + 789 + ], + "score": 0.96 + }, + { + "category_id": 5, + "poly": [ + 258, + 429, + 1439, + 429, + 1439, + 645, + 258, + 645 + ], + "score": 0.956, + "html": "
ModelPrivacy
ApproachTEEIntegrityPrivacyw.r.t. Serverw.r.t. ClientThroughput (relative)
SafetyNets (Ghodsi et al.,2017)1.OOO≤1/200 ×
Gazelle (Juvekar et al.,2018)1O. *O1≤1/1000 ×
Secure baseline (run DNN in TEE).
Insecure baseline (run DNN on GPU)O0≥ 50x
Slalom (Ours)..O4× - 20×
" + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 751, + 236, + 751, + 265, + 235, + 265 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 777, + 1942, + 795, + 1942, + 795, + 1966, + 777, + 1966 + ], + "score": 0.804 + }, + { + "category_id": 7, + "poly": [ + 264, + 650, + 604, + 650, + 604, + 679, + 264, + 679 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 237, + 1395, + 1104, + 1395, + 1104, + 1427, + 237, + 1427 + ], + "score": 0.704 + }, + { + "category_id": 6, + "poly": [ + 234, + 384, + 1458, + 384, + 1458, + 418, + 234, + 418 + ], + "score": 0.675 + }, + { + "category_id": 0, + "poly": [ + 237, + 1395, + 1104, + 1395, + 1104, + 1427, + 237, + 1427 + ], + "score": 0.246 + }, + { + "category_id": 1, + "poly": [ + 264, + 650, + 604, + 650, + 604, + 679, + 264, + 679 + ], + "score": 0.143 + }, + { + "category_id": 13, + "poly": [ + 1125, + 1204, + 1150, + 1204, + 1150, + 1230, + 1125, + 1230 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 640, + 836, + 665, + 836, + 665, + 862, + 640, + 862 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 578, + 1204, + 604, + 1204, + 604, + 1231, + 578, + 1231 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 821, + 1204, + 844, + 1204, + 844, + 1231, + 821, + 1231 + ], + "score": 0.81, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 670, + 1204, + 695, + 1204, + 695, + 1231, + 670, + 1231 + ], + "score": 0.8, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 702, + 836, + 723, + 836, + 723, + 862, + 702, + 862 + ], + "score": 0.72, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 365, + 836, + 385, + 836, + 385, + 862, + 365, + 862 + ], + "score": 0.72, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 848, + 973, + 941, + 973, + 941, + 1002, + 848, + 1002 + ], + "score": 0.31, + "latex": "1 2 8 \\mathrm { M B }" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 1769.0, + 1470.0, + 1769.0, + 1470.0, + 1812.0, + 265.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1804.0, + 1469.0, + 1804.0, + 1469.0, + 1833.0, + 233.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1828.0, + 1469.0, + 1828.0, + 1469.0, + 1861.0, + 230.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1858.0, + 1278.0, + 1858.0, + 1278.0, + 1891.0, + 229.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1939.0, + 798.0, + 1939.0, + 798.0, + 1972.0, + 774.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 643.0, + 608.0, + 643.0, + 608.0, + 687.0, + 260.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 381.0, + 1461.0, + 381.0, + 1461.0, + 422.0, + 228.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1393.0, + 1111.0, + 1393.0, + 1111.0, + 1432.0, + 229.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1140.0, + 1471.0, + 1140.0, + 1471.0, + 1180.0, + 228.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1171.0, + 1468.0, + 1171.0, + 1468.0, + 1206.0, + 230.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1202.0, + 577.0, + 1202.0, + 577.0, + 1237.0, + 230.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1202.0, + 669.0, + 1202.0, + 669.0, + 1237.0, + 605.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1202.0, + 820.0, + 1202.0, + 820.0, + 1237.0, + 696.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1202.0, + 1124.0, + 1202.0, + 1124.0, + 1237.0, + 845.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1202.0, + 1468.0, + 1202.0, + 1468.0, + 1237.0, + 1151.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1232.0, + 1470.0, + 1232.0, + 1470.0, + 1271.0, + 228.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1264.0, + 1468.0, + 1264.0, + 1468.0, + 1299.0, + 230.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1292.0, + 1470.0, + 1292.0, + 1470.0, + 1331.0, + 230.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1323.0, + 1455.0, + 1323.0, + 1455.0, + 1362.0, + 227.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 803.0, + 1472.0, + 803.0, + 1472.0, + 839.0, + 229.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 834.0, + 364.0, + 834.0, + 364.0, + 869.0, + 231.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 834.0, + 639.0, + 834.0, + 639.0, + 869.0, + 386.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 834.0, + 701.0, + 834.0, + 701.0, + 869.0, + 666.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 834.0, + 1470.0, + 834.0, + 1470.0, + 869.0, + 724.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 866.0, + 1469.0, + 866.0, + 1469.0, + 897.0, + 234.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 896.0, + 1320.0, + 896.0, + 1320.0, + 930.0, + 232.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 941.0, + 1469.0, + 941.0, + 1469.0, + 978.0, + 230.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 973.0, + 847.0, + 973.0, + 847.0, + 1006.0, + 232.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 973.0, + 1469.0, + 973.0, + 1469.0, + 1006.0, + 942.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1003.0, + 1472.0, + 1003.0, + 1472.0, + 1040.0, + 229.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1030.0, + 1469.0, + 1030.0, + 1469.0, + 1070.0, + 229.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1064.0, + 1471.0, + 1064.0, + 1471.0, + 1101.0, + 230.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1092.0, + 1441.0, + 1092.0, + 1441.0, + 1132.0, + 227.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1561.0, + 1469.0, + 1561.0, + 1469.0, + 1598.0, + 231.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1592.0, + 1471.0, + 1592.0, + 1471.0, + 1629.0, + 229.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1620.0, + 1472.0, + 1620.0, + 1472.0, + 1662.0, + 228.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1653.0, + 1469.0, + 1653.0, + 1469.0, + 1690.0, + 231.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1686.0, + 1468.0, + 1686.0, + 1468.0, + 1718.0, + 232.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1712.0, + 1422.0, + 1712.0, + 1422.0, + 1752.0, + 228.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1455.0, + 1469.0, + 1455.0, + 1469.0, + 1488.0, + 233.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1484.0, + 1469.0, + 1484.0, + 1469.0, + 1523.0, + 228.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1516.0, + 1453.0, + 1516.0, + 1453.0, + 1549.0, + 232.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 696.0, + 1470.0, + 696.0, + 1470.0, + 732.0, + 229.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 726.0, + 1470.0, + 726.0, + 1470.0, + 762.0, + 229.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 755.0, + 1370.0, + 755.0, + 1370.0, + 792.0, + 227.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1393.0, + 1111.0, + 1393.0, + 1111.0, + 1432.0, + 229.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 643.0, + 608.0, + 643.0, + 608.0, + 687.0, + 260.0, + 687.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 235, + 1383, + 1469, + 1383, + 1469, + 1539, + 235, + 1539 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 234, + 1157, + 1468, + 1157, + 1468, + 1345, + 234, + 1345 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 234, + 583, + 1469, + 583, + 1469, + 738, + 234, + 738 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 233, + 1049, + 1470, + 1049, + 1470, + 1143, + 233, + 1143 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 235, + 914, + 1467, + 914, + 1467, + 1009, + 235, + 1009 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 233, + 1686, + 1471, + 1686, + 1471, + 1810, + 233, + 1810 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 229, + 1825, + 1464, + 1825, + 1464, + 1889, + 229, + 1889 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 227, + 777, + 1451, + 777, + 1451, + 812, + 227, + 812 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 233, + 390, + 1353, + 390, + 1353, + 424, + 233, + 424 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 223, + 830, + 1459, + 830, + 1459, + 897, + 223, + 897 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 236, + 1604, + 411, + 1604, + 411, + 1639, + 236, + 1639 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 777, + 1943, + 794, + 1943, + 794, + 1966, + 777, + 1966 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 234, + 432, + 1468, + 432, + 1468, + 574, + 234, + 574 + ], + "score": 0.594 + }, + { + "category_id": 13, + "poly": [ + 995, + 1220, + 1101, + 1220, + 1101, + 1252, + 995, + 1252 + ], + "score": 0.93, + "latex": "u = f ( r )" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1311, + 1075, + 1311, + 1075, + 1344, + 1019, + 1344 + ], + "score": 0.92, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 977, + 1263, + 977, + 1263, + 1010, + 1205, + 1010 + ], + "score": 0.92, + "latex": "1 / | \\mathbb { S } | ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1189, + 525, + 1189, + 525, + 1221, + 366, + 1221 + ], + "score": 0.92, + "latex": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1220, + 777, + 1220, + 777, + 1248, + 690, + 1248 + ], + "score": 0.9, + "latex": "r \\in \\mathbb { F } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 889, + 1282, + 1008, + 1282, + 1008, + 1313, + 889, + 1313 + ], + "score": 0.9, + "latex": "f ( \\mathsf { E n c } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 844, + 1250, + 1026, + 1250, + 1026, + 1281, + 844, + 1281 + ], + "score": 0.9, + "latex": "\\mathtt { E n c } ( x ) = x + r" + }, + { + "category_id": 13, + "poly": [ + 345, + 862, + 418, + 862, + 418, + 893, + 345, + 893 + ], + "score": 0.88, + "latex": "\\mathbb { S } \\subseteq \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 589, + 913, + 635, + 913, + 635, + 944, + 589, + 944 + ], + "score": 0.88, + "latex": "3 n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1373, + 645, + 1435, + 645, + 1435, + 675, + 1373, + 675 + ], + "score": 0.88, + "latex": "1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1252, + 1127, + 1252, + 1127, + 1278, + 1086, + 1278 + ], + "score": 0.87, + "latex": "\\mathbb { F } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 719, + 835, + 786, + 835, + 786, + 860, + 719, + 860 + ], + "score": 0.86, + "latex": "n \\times n" + }, + { + "category_id": 13, + "poly": [ + 498, + 862, + 1370, + 862, + 1370, + 896, + 498, + 896 + ], + "score": 0.85, + "latex": "\\operatorname* { P r } [ C s = A ( B s ) \\mid C \\neq A B ] = \\operatorname* { P r } [ ( C - A B ) s = \\mathbf { 0 } \\mid ( C - A B ) \\neq \\mathbf { 0 } ] \\leq ^ { 1 } / | \\mathbb { S } |" + }, + { + "category_id": 13, + "poly": [ + 233, + 1310, + 810, + 1310, + 810, + 1345, + 233, + 1345 + ], + "score": 0.84, + "latex": "f ( \\mathsf { E n c } ( x ) ) = f ( x + r ) = f ( x ) + f ( r ) = f ( x ) \\overset { \\cdot } { + } u" + }, + { + "category_id": 13, + "poly": [ + 261, + 862, + 294, + 862, + 294, + 890, + 261, + 890 + ], + "score": 0.82, + "latex": "\\mathbb { S } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 861, + 978, + 881, + 978, + 881, + 1004, + 861, + 1004 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 660, + 833, + 684, + 833, + 684, + 859, + 660, + 859 + ], + "score": 0.77, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 598, + 1255, + 617, + 1255, + 617, + 1277, + 598, + 1277 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1446, + 1254, + 1465, + 1254, + 1465, + 1277, + 1446, + 1277 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1316, + 1366, + 1316, + 1366, + 1338, + 1348, + 1338 + ], + "score": 0.7, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 551, + 832, + 608, + 832, + 608, + 862, + 551, + 862 + ], + "score": 0.66, + "latex": "A , B" + }, + { + "category_id": 13, + "poly": [ + 1016, + 833, + 1037, + 833, + 1037, + 859, + 1016, + 859 + ], + "score": 0.66, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1190, + 912, + 1190, + 912, + 1216, + 891, + 1216 + ], + "score": 0.54, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 928, + 1719, + 948, + 1719, + 948, + 1745, + 928, + 1745 + ], + "score": 0.27, + "latex": "\\mathbb { F }" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 1597.0, + 418.0, + 1597.0, + 418.0, + 1647.0, + 226.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1940.0, + 797.0, + 1940.0, + 797.0, + 1973.0, + 774.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1384.0, + 1468.0, + 1384.0, + 1468.0, + 1417.0, + 232.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1412.0, + 1468.0, + 1412.0, + 1468.0, + 1450.0, + 231.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1444.0, + 1470.0, + 1444.0, + 1470.0, + 1480.0, + 229.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1473.0, + 1473.0, + 1473.0, + 1473.0, + 1512.0, + 227.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1504.0, + 1305.0, + 1504.0, + 1305.0, + 1544.0, + 228.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1155.0, + 1471.0, + 1155.0, + 1471.0, + 1194.0, + 228.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1182.0, + 365.0, + 1182.0, + 365.0, + 1227.0, + 228.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1182.0, + 890.0, + 1182.0, + 890.0, + 1227.0, + 526.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1182.0, + 1472.0, + 1182.0, + 1472.0, + 1227.0, + 913.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1215.0, + 689.0, + 1215.0, + 689.0, + 1257.0, + 228.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1215.0, + 994.0, + 1215.0, + 994.0, + 1257.0, + 778.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1215.0, + 1471.0, + 1215.0, + 1471.0, + 1257.0, + 1102.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1245.0, + 597.0, + 1245.0, + 597.0, + 1287.0, + 228.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1245.0, + 843.0, + 1245.0, + 843.0, + 1287.0, + 618.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1245.0, + 1085.0, + 1245.0, + 1085.0, + 1287.0, + 1027.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1245.0, + 1445.0, + 1245.0, + 1445.0, + 1287.0, + 1128.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1466.0, + 1245.0, + 1472.0, + 1245.0, + 1472.0, + 1287.0, + 1466.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1279.0, + 888.0, + 1279.0, + 888.0, + 1317.0, + 230.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1279.0, + 1471.0, + 1279.0, + 1471.0, + 1317.0, + 1009.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1309.0, + 1018.0, + 1309.0, + 1018.0, + 1347.0, + 811.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1309.0, + 1347.0, + 1309.0, + 1347.0, + 1347.0, + 1076.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1309.0, + 1378.0, + 1309.0, + 1378.0, + 1347.0, + 1367.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 585.0, + 1472.0, + 585.0, + 1472.0, + 618.0, + 231.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 615.0, + 1470.0, + 615.0, + 1470.0, + 649.0, + 231.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 646.0, + 1372.0, + 646.0, + 1372.0, + 679.0, + 230.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1436.0, + 646.0, + 1469.0, + 646.0, + 1469.0, + 679.0, + 1436.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 676.0, + 1470.0, + 676.0, + 1470.0, + 710.0, + 231.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 703.0, + 1438.0, + 703.0, + 1438.0, + 742.0, + 229.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1049.0, + 1471.0, + 1049.0, + 1471.0, + 1087.0, + 230.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1081.0, + 1467.0, + 1081.0, + 1467.0, + 1114.0, + 232.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1113.0, + 1403.0, + 1113.0, + 1403.0, + 1146.0, + 232.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 911.0, + 588.0, + 911.0, + 588.0, + 952.0, + 229.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 911.0, + 1470.0, + 911.0, + 1470.0, + 952.0, + 636.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 948.0, + 1468.0, + 948.0, + 1468.0, + 981.0, + 232.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 975.0, + 860.0, + 975.0, + 860.0, + 1013.0, + 229.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 975.0, + 1204.0, + 975.0, + 1204.0, + 1013.0, + 882.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 975.0, + 1276.0, + 975.0, + 1276.0, + 1013.0, + 1264.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1684.0, + 1472.0, + 1684.0, + 1472.0, + 1723.0, + 229.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1714.0, + 927.0, + 1714.0, + 927.0, + 1752.0, + 228.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1714.0, + 1471.0, + 1714.0, + 1471.0, + 1752.0, + 949.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1747.0, + 1471.0, + 1747.0, + 1471.0, + 1786.0, + 230.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 1776.0, + 1475.0, + 1776.0, + 1475.0, + 1818.0, + 226.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1822.0, + 1468.0, + 1822.0, + 1468.0, + 1861.0, + 229.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1856.0, + 1463.0, + 1856.0, + 1463.0, + 1892.0, + 230.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 775.0, + 1454.0, + 775.0, + 1454.0, + 814.0, + 231.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 385.0, + 1356.0, + 385.0, + 1356.0, + 431.0, + 230.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 828.0, + 550.0, + 828.0, + 550.0, + 867.0, + 229.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 828.0, + 659.0, + 828.0, + 659.0, + 867.0, + 609.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 828.0, + 718.0, + 828.0, + 718.0, + 867.0, + 685.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 828.0, + 1015.0, + 828.0, + 1015.0, + 867.0, + 787.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 828.0, + 1464.0, + 828.0, + 1464.0, + 867.0, + 1038.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 857.0, + 260.0, + 857.0, + 260.0, + 900.0, + 227.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 344.0, + 857.0, + 344.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 857.0, + 497.0, + 857.0, + 497.0, + 900.0, + 419.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 857.0, + 1384.0, + 857.0, + 1384.0, + 900.0, + 1371.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 429.0, + 1468.0, + 429.0, + 1468.0, + 471.0, + 235.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 461.0, + 1266.0, + 461.0, + 1266.0, + 503.0, + 267.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 509.0, + 1469.0, + 509.0, + 1469.0, + 548.0, + 233.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 542.0, + 913.0, + 542.0, + 913.0, + 577.0, + 267.0, + 577.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1655, + 1469, + 1655, + 1469, + 1811, + 234, + 1811 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 233, + 1205, + 1468, + 1205, + 1468, + 1360, + 233, + 1360 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 235, + 984, + 1471, + 984, + 1471, + 1078, + 235, + 1078 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 235, + 1092, + 1470, + 1092, + 1470, + 1191, + 235, + 1191 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 228, + 1548, + 1468, + 1548, + 1468, + 1643, + 228, + 1643 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 228, + 1460, + 1467, + 1460, + 1467, + 1524, + 228, + 1524 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 230, + 1824, + 1468, + 1824, + 1468, + 1890, + 230, + 1890 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 235, + 237, + 752, + 237, + 752, + 265, + 235, + 265 + ], + "score": 0.905 + }, + { + "category_id": 4, + "poly": [ + 233, + 733, + 1468, + 733, + 1468, + 887, + 233, + 887 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 235, + 1401, + 811, + 1401, + 811, + 1433, + 235, + 1433 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 235, + 925, + 487, + 925, + 487, + 957, + 235, + 957 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 777, + 1942, + 794, + 1942, + 794, + 1966, + 777, + 1966 + ], + "score": 0.794 + }, + { + "category_id": 5, + "poly": [ + 843, + 385, + 1454, + 385, + 1454, + 720, + 843, + 720 + ], + "score": 0.481, + "html": "
Slalom with integrity& privacy TEE(F,x1) S(F)
Preproc: for i∈[1,n] dori ← Fmi,ui =riWi
for i∈[1,n] do 主 xi=xi+ri
起 yi=xW
yi=yi-ui
assert Freivalds(yi,xi,Wi)
xi+1=σ(yi) return yn
" + }, + { + "category_id": 5, + "poly": [ + 235, + 385, + 813, + 385, + 813, + 718, + 235, + 718 + ], + "score": 0.422, + "html": "
Slalomwith integrity TEE(F,x1) S(F)
for i∈ [1,n] do
yi=xiWi
xi+1=σ(yi)
1...yn
fori∈[1,n] do assert Freivalds(yi,x,W)
xi+1=σ(yi)
return yn
" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1653, + 1398, + 1653, + 1398, + 1690, + 1210, + 1690 + ], + "score": 0.93, + "latex": "f ( s ^ { \\top } X ) = s ^ { \\top } Y" + }, + { + "category_id": 13, + "poly": [ + 721, + 1657, + 787, + 1657, + 787, + 1691, + 721, + 1691 + ], + "score": 0.92, + "latex": "f ( X )" + }, + { + "category_id": 13, + "poly": [ + 752, + 1608, + 909, + 1608, + 909, + 1643, + 752, + 1643 + ], + "score": 0.92, + "latex": "f ( x ) = x ^ { \\top } W" + }, + { + "category_id": 13, + "poly": [ + 552, + 1856, + 782, + 1856, + 782, + 1890, + 552, + 1890 + ], + "score": 0.91, + "latex": "f ( x ) = \\mathbf { C o n v } ( x , W )" + }, + { + "category_id": 13, + "poly": [ + 897, + 1580, + 953, + 1580, + 953, + 1612, + 897, + 1612 + ], + "score": 0.91, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 317, + 797, + 415, + 797, + 415, + 825, + 317, + 825 + ], + "score": 0.91, + "latex": "m _ { i } \\times n _ { i }" + }, + { + "category_id": 13, + "poly": [ + 233, + 1235, + 324, + 1235, + 324, + 1269, + 233, + 1269 + ], + "score": 0.91, + "latex": "p < 2 ^ { 2 4 }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1718, + 1289, + 1718, + 1289, + 1751, + 1082, + 1751 + ], + "score": 0.91, + "latex": "| X | + | Y | + \\mathsf { c o s t } _ { f }" + }, + { + "category_id": 13, + "poly": [ + 233, + 1160, + 337, + 1160, + 337, + 1193, + 233, + 1193 + ], + "score": 0.91, + "latex": "\\mathrm { E P } ( b , 2 l )" + }, + { + "category_id": 13, + "poly": [ + 695, + 1235, + 838, + 1235, + 838, + 1268, + 695, + 1268 + ], + "score": 0.9, + "latex": "p = 2 ^ { 2 4 } - 3 )" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1017, + 1343, + 1017, + 1343, + 1050, + 1309, + 1050 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1125, + 1472, + 1125, + 1472, + 1162, + 1240, + 1162 + ], + "score": 0.89, + "latex": "\\tilde { W } = \\mathrm { F P } ( W , l ) , \\tilde { b } =" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1237, + 1303, + 1237, + 1303, + 1265, + 1239, + 1265 + ], + "score": 0.89, + "latex": "l = 8" + }, + { + "category_id": 13, + "poly": [ + 1345, + 794, + 1467, + 794, + 1467, + 826, + 1345, + 826 + ], + "score": 0.88, + "latex": "( y _ { i } , x _ { i } , w _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1612, + 1346, + 1612, + 1346, + 1639, + 1269, + 1639 + ], + "score": 0.88, + "latex": "m \\times n" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1158, + 1171, + 1158, + 1171, + 1187, + 1129, + 1187 + ], + "score": 0.88, + "latex": "2 ^ { - l }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1688, + 1216, + 1688, + 1216, + 1716, + 1097, + 1716 + ], + "score": 0.87, + "latex": "X W = Y" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1092, + 1468, + 1092, + 1468, + 1125, + 1282, + 1125 + ], + "score": 0.87, + "latex": "\\tilde { x } = \\mathtt { F P } ( x ; l ) : =" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1267, + 1129, + 1267, + 1129, + 1298, + 1066, + 1298 + ], + "score": 0.87, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1206, + 860, + 1234, + 860, + 1234, + 886, + 1206, + 886 + ], + "score": 0.85, + "latex": "u _ { i }" + }, + { + "category_id": 13, + "poly": [ + 559, + 1719, + 578, + 1719, + 578, + 1750, + 559, + 1750 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1426, + 764, + 1464, + 764, + 1464, + 793, + 1426, + 793 + ], + "score": 0.85, + "latex": "W _ { i }" + }, + { + "category_id": 13, + "poly": [ + 508, + 859, + 533, + 859, + 533, + 886, + 508, + 886 + ], + "score": 0.84, + "latex": "r _ { i }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1266, + 879, + 1266, + 879, + 1296, + 840, + 1296 + ], + "score": 0.84, + "latex": "2 ^ { 2 4 }" + }, + { + "category_id": 13, + "poly": [ + 393, + 623, + 502, + 623, + 502, + 649, + 393, + 649 + ], + "score": 0.83, + "latex": "( y _ { i } , x _ { i } , W _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 572, + 765, + 598, + 765, + 598, + 791, + 572, + 791 + ], + "score": 0.82, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 460, + 826, + 479, + 826, + 479, + 852, + 460, + 852 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 367, + 1659, + 396, + 1659, + 396, + 1685, + 367, + 1685 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 641, + 1302, + 660, + 1302, + 660, + 1330, + 641, + 1330 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 846, + 1162, + 865, + 1162, + 865, + 1187, + 846, + 1187 + ], + "score": 0.81, + "latex": "\\tilde { x }" + }, + { + "category_id": 13, + "poly": [ + 517, + 1052, + 536, + 1052, + 536, + 1079, + 517, + 1079 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 481, + 1659, + 507, + 1659, + 507, + 1685, + 481, + 1685 + ], + "score": 0.79, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 414, + 1051, + 432, + 1051, + 432, + 1079, + 414, + 1079 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 898, + 1100, + 918, + 1100, + 918, + 1121, + 898, + 1121 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1439, + 1689, + 1465, + 1689, + 1465, + 1715, + 1439, + 1715 + ], + "score": 0.78, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 279, + 592, + 364, + 592, + 364, + 618, + 279, + 618 + ], + "score": 0.78, + "latex": "i \\in [ 1 , n ]" + }, + { + "category_id": 13, + "poly": [ + 1399, + 1585, + 1420, + 1585, + 1420, + 1607, + 1399, + 1607 + ], + "score": 0.77, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1172, + 1585, + 1200, + 1585, + 1200, + 1607, + 1172, + 1607 + ], + "score": 0.76, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1658, + 1108, + 1658, + 1108, + 1685, + 1082, + 1685 + ], + "score": 0.75, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 883, + 1130, + 898, + 1130, + 898, + 1157, + 883, + 1157 + ], + "score": 0.75, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 1418, + 1863, + 1434, + 1863, + 1434, + 1884, + 1418, + 1884 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1865, + 1046, + 1865, + 1046, + 1889, + 1030, + 1889 + ], + "score": 0.74, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 266, + 769, + 286, + 769, + 286, + 791, + 266, + 791 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1430, + 1610, + 1462, + 1610, + 1462, + 1637, + 1430, + 1637 + ], + "score": 0.74, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 766, + 799, + 786, + 799, + 786, + 822, + 766, + 822 + ], + "score": 0.72, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 404, + 1693, + 421, + 1693, + 421, + 1715, + 404, + 1715 + ], + "score": 0.7, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 923, + 765, + 945, + 765, + 945, + 792, + 923, + 792 + ], + "score": 0.69, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 746, + 1129, + 779, + 1129, + 779, + 1157, + 746, + 1157 + ], + "score": 0.64, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 671, + 480, + 755, + 480, + 755, + 505, + 671, + 505 + ], + "score": 0.63, + "latex": "i \\in [ 1 , n ]" + }, + { + "category_id": 13, + "poly": [ + 1000, + 630, + 1109, + 630, + 1109, + 656, + 1000, + 656 + ], + "score": 0.6, + "latex": "( y _ { i } , x _ { i } , W _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1442, + 986, + 1462, + 986, + 1462, + 1013, + 1442, + 1013 + ], + "score": 0.59, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 234, + 1126, + 401, + 1126, + 401, + 1160, + 234, + 1160 + ], + "score": 0.54, + "latex": "\\mathtt { r o u n d } ( 2 ^ { l } \\cdot x ) ." + }, + { + "category_id": 13, + "poly": [ + 1343, + 420, + 1395, + 420, + 1395, + 447, + 1343, + 447 + ], + "score": 0.51, + "latex": " { \\boldsymbol { S } } ( { \\boldsymbol { F } } )" + }, + { + "category_id": 13, + "poly": [ + 697, + 420, + 749, + 420, + 749, + 446, + 697, + 446 + ], + "score": 0.48, + "latex": " { \\boldsymbol { S } } ( { \\boldsymbol { F } } )" + }, + { + "category_id": 13, + "poly": [ + 1151, + 794, + 1173, + 794, + 1173, + 821, + 1151, + 821 + ], + "score": 0.4, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 925, + 696, + 952, + 696, + 952, + 716, + 925, + 716 + ], + "score": 0.4, + "latex": "y _ { n }" + }, + { + "category_id": 14, + "poly": [ + 262, + 652, + 391, + 652, + 391, + 680, + 262, + 680 + ], + "score": 0.4, + "latex": "x _ { i + 1 } = \\sigma ( y _ { i } )" + }, + { + "category_id": 14, + "poly": [ + 868, + 659, + 998, + 659, + 998, + 687, + 868, + 687 + ], + "score": 0.35, + "latex": "x _ { i + 1 } = \\sigma ( y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 654, + 538, + 782, + 538, + 782, + 564, + 654, + 564 + ], + "score": 0.35, + "latex": "x _ { i + 1 } = \\sigma ( y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 262, + 652, + 391, + 652, + 391, + 680, + 262, + 680 + ], + "score": 0.34, + "latex": "x _ { i + 1 } = \\sigma ( y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 318, + 688, + 344, + 688, + 344, + 709, + 318, + 709 + ], + "score": 0.34, + "latex": "y _ { n }" + }, + { + "category_id": 14, + "poly": [ + 1318, + 574, + 1421, + 574, + 1421, + 601, + 1318, + 601 + ], + "score": 0.34, + "latex": "\\tilde { y } _ { i } = \\tilde { x } _ { i } W _ { i }" + }, + { + "category_id": 13, + "poly": [ + 869, + 659, + 999, + 659, + 999, + 687, + 869, + 687 + ], + "score": 0.29, + "latex": "x _ { i + 1 } = \\sigma ( y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1136, + 529, + 1173, + 529, + 1173, + 559, + 1136, + 559 + ], + "score": 0.29, + "latex": "\\xrightarrow { \\tilde { x } _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 574, + 1421, + 574, + 1421, + 601, + 1319, + 601 + ], + "score": 0.26, + "latex": "\\tilde { y } _ { i } = \\tilde { x } _ { i } W _ { i }" + }, + { + "category_id": 13, + "poly": [ + 654, + 508, + 756, + 508, + 756, + 531, + 654, + 531 + ], + "score": 0.25, + "latex": "y _ { i } = x _ { i } W _ { i }" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 733.0, + 1468.0, + 733.0, + 1468.0, + 766.0, + 232.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 764.0, + 265.0, + 764.0, + 265.0, + 797.0, + 230.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 764.0, + 571.0, + 764.0, + 571.0, + 797.0, + 287.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 764.0, + 922.0, + 764.0, + 922.0, + 797.0, + 599.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 764.0, + 1425.0, + 764.0, + 1425.0, + 797.0, + 946.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 787.0, + 316.0, + 787.0, + 316.0, + 833.0, + 226.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 787.0, + 765.0, + 787.0, + 765.0, + 833.0, + 416.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 787.0, + 1150.0, + 787.0, + 1150.0, + 833.0, + 787.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 787.0, + 1344.0, + 787.0, + 1344.0, + 833.0, + 1174.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1468.0, + 787.0, + 1471.0, + 787.0, + 1471.0, + 833.0, + 1468.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 823.0, + 459.0, + 823.0, + 459.0, + 860.0, + 230.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 823.0, + 1471.0, + 823.0, + 1471.0, + 860.0, + 480.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 854.0, + 507.0, + 854.0, + 507.0, + 891.0, + 227.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 854.0, + 1205.0, + 854.0, + 1205.0, + 891.0, + 534.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 854.0, + 1460.0, + 854.0, + 1460.0, + 891.0, + 1235.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1401.0, + 813.0, + 1401.0, + 813.0, + 1437.0, + 230.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 922.0, + 493.0, + 922.0, + 493.0, + 965.0, + 228.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1939.0, + 797.0, + 1939.0, + 797.0, + 1974.0, + 775.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1654.0, + 366.0, + 1654.0, + 366.0, + 1690.0, + 228.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1654.0, + 480.0, + 1654.0, + 480.0, + 1690.0, + 397.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1654.0, + 720.0, + 1654.0, + 720.0, + 1690.0, + 508.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1654.0, + 1081.0, + 1654.0, + 1081.0, + 1690.0, + 788.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1654.0, + 1209.0, + 1654.0, + 1209.0, + 1690.0, + 1109.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1654.0, + 1472.0, + 1654.0, + 1472.0, + 1690.0, + 1399.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1685.0, + 403.0, + 1685.0, + 403.0, + 1721.0, + 228.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1685.0, + 1096.0, + 1685.0, + 1096.0, + 1721.0, + 422.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1685.0, + 1438.0, + 1685.0, + 1438.0, + 1721.0, + 1217.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1466.0, + 1685.0, + 1469.0, + 1685.0, + 1469.0, + 1721.0, + 1466.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1716.0, + 558.0, + 1716.0, + 558.0, + 1754.0, + 227.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1716.0, + 1081.0, + 1716.0, + 1081.0, + 1754.0, + 579.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1716.0, + 1470.0, + 1716.0, + 1470.0, + 1754.0, + 1290.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1748.0, + 1469.0, + 1748.0, + 1469.0, + 1782.0, + 228.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1777.0, + 1427.0, + 1777.0, + 1427.0, + 1813.0, + 227.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1205.0, + 1471.0, + 1205.0, + 1471.0, + 1243.0, + 230.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 225.0, + 1229.0, + 232.0, + 1229.0, + 232.0, + 1275.0, + 225.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1229.0, + 694.0, + 1229.0, + 694.0, + 1275.0, + 325.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1229.0, + 1238.0, + 1229.0, + 1238.0, + 1275.0, + 839.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1229.0, + 1472.0, + 1229.0, + 1472.0, + 1275.0, + 1304.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 225.0, + 1261.0, + 839.0, + 1261.0, + 839.0, + 1305.0, + 225.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1261.0, + 1065.0, + 1261.0, + 1065.0, + 1305.0, + 880.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1261.0, + 1474.0, + 1261.0, + 1474.0, + 1305.0, + 1130.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1294.0, + 640.0, + 1294.0, + 640.0, + 1334.0, + 228.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1294.0, + 1471.0, + 1294.0, + 1471.0, + 1334.0, + 661.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1328.0, + 1446.0, + 1328.0, + 1446.0, + 1361.0, + 232.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 982.0, + 1441.0, + 982.0, + 1441.0, + 1020.0, + 231.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1463.0, + 982.0, + 1472.0, + 982.0, + 1472.0, + 1020.0, + 1463.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1011.0, + 1308.0, + 1011.0, + 1308.0, + 1055.0, + 230.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1011.0, + 1472.0, + 1011.0, + 1472.0, + 1055.0, + 1344.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1045.0, + 413.0, + 1045.0, + 413.0, + 1083.0, + 231.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1045.0, + 516.0, + 1045.0, + 516.0, + 1083.0, + 433.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1045.0, + 1474.0, + 1045.0, + 1474.0, + 1083.0, + 537.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1093.0, + 897.0, + 1093.0, + 897.0, + 1128.0, + 232.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1093.0, + 1281.0, + 1093.0, + 1281.0, + 1128.0, + 919.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1123.0, + 233.0, + 1123.0, + 233.0, + 1166.0, + 230.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1123.0, + 745.0, + 1123.0, + 745.0, + 1166.0, + 402.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1123.0, + 882.0, + 1123.0, + 882.0, + 1166.0, + 780.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1123.0, + 1239.0, + 1123.0, + 1239.0, + 1166.0, + 899.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1155.0, + 845.0, + 1155.0, + 845.0, + 1197.0, + 338.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1155.0, + 1128.0, + 1155.0, + 1128.0, + 1197.0, + 866.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1155.0, + 1473.0, + 1155.0, + 1473.0, + 1197.0, + 1172.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1545.0, + 1469.0, + 1545.0, + 1469.0, + 1586.0, + 230.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1576.0, + 896.0, + 1576.0, + 896.0, + 1617.0, + 230.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1576.0, + 1171.0, + 1576.0, + 1171.0, + 1617.0, + 954.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1576.0, + 1398.0, + 1576.0, + 1398.0, + 1617.0, + 1201.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1421.0, + 1576.0, + 1469.0, + 1576.0, + 1469.0, + 1617.0, + 1421.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1606.0, + 751.0, + 1606.0, + 751.0, + 1649.0, + 228.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1606.0, + 1268.0, + 1606.0, + 1268.0, + 1649.0, + 910.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1606.0, + 1429.0, + 1606.0, + 1429.0, + 1649.0, + 1347.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1463.0, + 1606.0, + 1476.0, + 1606.0, + 1476.0, + 1649.0, + 1463.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1456.0, + 1471.0, + 1456.0, + 1471.0, + 1498.0, + 228.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1492.0, + 1104.0, + 1492.0, + 1104.0, + 1525.0, + 228.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1826.0, + 1468.0, + 1826.0, + 1468.0, + 1858.0, + 232.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1856.0, + 551.0, + 1856.0, + 551.0, + 1892.0, + 232.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1856.0, + 1029.0, + 1856.0, + 1029.0, + 1892.0, + 783.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1856.0, + 1417.0, + 1856.0, + 1417.0, + 1892.0, + 1047.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 1856.0, + 1471.0, + 1856.0, + 1471.0, + 1892.0, + 1435.0, + 1892.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 235, + 1276, + 1470, + 1276, + 1470, + 1431, + 235, + 1431 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 240, + 488, + 1455, + 488, + 1455, + 641, + 240, + 641 + ], + "score": 0.976, + "html": "
Layer|x|,|yl|W|costf (B=1)Batched verificationWith preproc.
FChin,houthin·hout|a|·lyB·(lx|+lyl)+cost fB·(lx|+lyl)
Convh·w·Cin,h·w·Coutk² · Cin ·Coutal·k2 · CoutB·(lx|+lyl)+Cin·Cout+ |x| · k²B·(|xl+lyl)
Depth.Convh·w·Cin,h·w·Cink2.Cinlac|.k²B·(lx|+lyl)+cost fB·(|x|+ lyl)
Point. Convh·w ·Cin,h · w· CoutCin·Cout|c| · CoutB·(x|+lyl)+Cin·CoutB·(lx|+|yl)
" + }, + { + "category_id": 1, + "poly": [ + 232, + 765, + 1468, + 765, + 1468, + 859, + 232, + 859 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 235, + 1444, + 1468, + 1444, + 1468, + 1570, + 235, + 1570 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 232, + 873, + 1469, + 873, + 1469, + 998, + 232, + 998 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 232, + 1100, + 1471, + 1100, + 1471, + 1196, + 232, + 1196 + ], + "score": 0.971 + }, + { + "category_id": 6, + "poly": [ + 232, + 385, + 1467, + 385, + 1467, + 479, + 232, + 479 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 235, + 1789, + 1469, + 1789, + 1469, + 1883, + 235, + 1883 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 232, + 683, + 1464, + 683, + 1464, + 747, + 232, + 747 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 234, + 1655, + 1472, + 1655, + 1472, + 1780, + 234, + 1780 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 230, + 1004, + 1460, + 1004, + 1460, + 1076, + 230, + 1076 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 232, + 1582, + 1465, + 1582, + 1465, + 1647, + 232, + 1647 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 235, + 1218, + 490, + 1218, + 490, + 1250, + 235, + 1250 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 776, + 1943, + 795, + 1943, + 795, + 1967, + 776, + 1967 + ], + "score": 0.814 + }, + { + "category_id": 13, + "poly": [ + 1269, + 1614, + 1459, + 1614, + 1459, + 1649, + 1269, + 1649 + ], + "score": 0.93, + "latex": "| \\mathrm { n e g l } ( x ) | < \\bar { 1 } / { x ^ { c } } )" + }, + { + "category_id": 13, + "poly": [ + 450, + 1102, + 548, + 1102, + 548, + 1136, + 450, + 1136 + ], + "score": 0.92, + "latex": "| x | + | y |" + }, + { + "category_id": 13, + "poly": [ + 850, + 1004, + 1019, + 1004, + 1019, + 1040, + 850, + 1040 + ], + "score": 0.92, + "latex": "f ( x ) : = x ^ { \\top } W" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1748, + 1358, + 1748, + 1358, + 1781, + 1129, + 1781 + ], + "score": 0.92, + "latex": "t = n / \\vert \\mathbb { S } \\vert ^ { k } - \\mathrm { n e g l } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 419, + 797, + 516, + 797, + 516, + 831, + 419, + 831 + ], + "score": 0.92, + "latex": "| x | + | y |" + }, + { + "category_id": 13, + "poly": [ + 400, + 1041, + 628, + 1041, + 628, + 1075, + 400, + 1075 + ], + "score": 0.92, + "latex": "\\tilde { s } : = \\nabla F _ { x } ( s ) = W s" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1821, + 1461, + 1821, + 1461, + 1854, + 1233, + 1854 + ], + "score": 0.92, + "latex": "t = { \\boldsymbol { \\mathscr { n } } } / { \\boldsymbol { | \\mathbb { S } } } { \\boldsymbol { \\vert \\sp k - \\mathrm { n e g l } } } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 927, + 683, + 1145, + 683, + 1145, + 717, + 927, + 717 + ], + "score": 0.91, + "latex": "\\operatorname { C o n v } ( x , W s ) = y s" + }, + { + "category_id": 13, + "poly": [ + 435, + 1007, + 599, + 1007, + 599, + 1039, + 435, + 1039 + ], + "score": 0.91, + "latex": "f : \\mathbb { F } ^ { m } \\mathbb { F } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 1038, + 1422, + 1038, + 1422, + 1077, + 1024, + 1077 + ], + "score": 0.9, + "latex": "\\operatorname* { P r } \\left[ y ^ { \\top } s = x ^ { \\top } { \\tilde { s } } \\mid y \\neq f ( x ) \\right] \\leq { \\boldsymbol { \\mathrm { 1 } } } / { \\boldsymbol { \\mathrm { | \\mathbb { S } } } } { \\boldsymbol { \\mathrm { | \\nabla } } }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1043, + 916, + 1043, + 916, + 1073, + 833, + 1073 + ], + "score": 0.9, + "latex": "y \\in \\mathbb { F } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 972, + 1103, + 1074, + 1103, + 1074, + 1131, + 972, + 1131 + ], + "score": 0.89, + "latex": "{ \\tilde { s } } : = W s" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1615, + 1257, + 1615, + 1257, + 1646, + 1168, + 1646 + ], + "score": 0.89, + "latex": "x > N _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 447, + 1342, + 447, + 1342, + 477, + 1266, + 477 + ], + "score": 0.89, + "latex": "B \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 639, + 1616, + 705, + 1616, + 705, + 1644, + 639, + 1644 + ], + "score": 0.89, + "latex": "c > 0" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1102, + 1201, + 1102, + 1201, + 1135, + 1167, + 1135 + ], + "score": 0.89, + "latex": "| x |" + }, + { + "category_id": 13, + "poly": [ + 287, + 1478, + 321, + 1478, + 321, + 1510, + 287, + 1510 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 354, + 687, + 396, + 687, + 396, + 714, + 354, + 714 + ], + "score": 0.89, + "latex": "c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 952, + 1616, + 989, + 1616, + 989, + 1645, + 952, + 1645 + ], + "score": 0.89, + "latex": "N _ { c }" + }, + { + "category_id": 13, + "poly": [ + 733, + 1042, + 822, + 1042, + 822, + 1071, + 733, + 1071 + ], + "score": 0.88, + "latex": "\\boldsymbol { x } \\in \\mathbb { F } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1042, + 1687, + 1114, + 1687, + 1114, + 1717, + 1042, + 1717 + ], + "score": 0.87, + "latex": "\\mathbb { S } \\subseteq \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 232, + 1041, + 306, + 1041, + 306, + 1073, + 232, + 1073 + ], + "score": 0.86, + "latex": "\\mathbb { S } \\subseteq \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 507, + 448, + 527, + 448, + 527, + 479, + 507, + 479 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1261, + 716, + 1289, + 716, + 1289, + 742, + 1261, + 742 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 865, + 1826, + 885, + 1826, + 885, + 1848, + 865, + 1848 + ], + "score": 0.82, + "latex": "\\boldsymbol { S }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1008, + 1414, + 1008, + 1414, + 1036, + 1381, + 1036 + ], + "score": 0.82, + "latex": "\\mathbb { S } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 469, + 716, + 497, + 716, + 497, + 742, + 469, + 742 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1102, + 1287, + 1102, + 1287, + 1135, + 1251, + 1135 + ], + "score": 0.81, + "latex": "| y | ," + }, + { + "category_id": 13, + "poly": [ + 721, + 1826, + 737, + 1826, + 737, + 1847, + 721, + 1847 + ], + "score": 0.8, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1658, + 1068, + 1658, + 1068, + 1684, + 1043, + 1684 + ], + "score": 0.8, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1440, + 1719, + 1465, + 1719, + 1465, + 1745, + 1440, + 1745 + ], + "score": 0.79, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 778, + 452, + 797, + 452, + 797, + 479, + 778, + 479 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 754, + 1751, + 774, + 1751, + 774, + 1775, + 754, + 1775 + ], + "score": 0.78, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 905, + 1109, + 921, + 1109, + 921, + 1130, + 905, + 1130 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 832, + 907, + 855, + 907, + 855, + 933, + 832, + 933 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1791, + 1243, + 1791, + 1243, + 1818, + 1220, + 1818 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 671, + 453, + 690, + 453, + 690, + 474, + 671, + 474 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 597, + 1856, + 617, + 1856, + 617, + 1878, + 597, + 1878 + ], + "score": 0.73, + "latex": "\\boldsymbol { S }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1721, + 885, + 1721, + 885, + 1744, + 866, + 1744 + ], + "score": 0.72, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 610, + 941, + 631, + 941, + 631, + 963, + 610, + 963 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 359, + 974, + 378, + 974, + 378, + 995, + 359, + 995 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 573, + 1140, + 589, + 1140, + 589, + 1160, + 573, + 1160 + ], + "score": 0.69, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1105, + 912, + 1121, + 912, + 1121, + 933, + 1105, + 933 + ], + "score": 0.68, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1312, + 607, + 1447, + 607, + 1447, + 632, + 1312, + 632 + ], + "score": 0.67, + "latex": "B \\cdot ( | x | + | y | )" + }, + { + "category_id": 13, + "poly": [ + 973, + 1752, + 984, + 1752, + 984, + 1775, + 973, + 1775 + ], + "score": 0.66, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 835, + 494, + 909, + 494, + 909, + 519, + 835, + 519 + ], + "score": 0.66, + "latex": "( \\mathbf { B } = \\mathbf { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 396, + 529, + 473, + 529, + 473, + 554, + 396, + 554 + ], + "score": 0.65, + "latex": "h _ { \\mathrm { i n } } , h _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 715, + 1211, + 715, + 1211, + 742, + 1177, + 742 + ], + "score": 0.64, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1662, + 1155, + 1662, + 1155, + 1684, + 1135, + 1684 + ], + "score": 0.63, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 373, + 1853, + 397, + 1853, + 397, + 1878, + 373, + 1878 + ], + "score": 0.62, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1312, + 583, + 1448, + 583, + 1448, + 607, + 1312, + 607 + ], + "score": 0.6, + "latex": "B \\cdot ( | x | + | y | )" + }, + { + "category_id": 13, + "poly": [ + 396, + 493, + 465, + 493, + 465, + 522, + 396, + 522 + ], + "score": 0.6, + "latex": "\\mathbf { \\left| x \\right| } , \\mathbf { \\left| y \\right| }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1824, + 1092, + 1824, + 1092, + 1848, + 1079, + 1848 + ], + "score": 0.59, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 776, + 530, + 847, + 530, + 847, + 555, + 776, + 555 + ], + "score": 0.57, + "latex": "| x | \\cdot | y |" + }, + { + "category_id": 13, + "poly": [ + 923, + 447, + 955, + 447, + 955, + 475, + 923, + 475 + ], + "score": 0.54, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 776, + 556, + 896, + 556, + 896, + 581, + 776, + 581 + ], + "score": 0.48, + "latex": "| x | \\cdot k ^ { 2 } \\cdot c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 1311, + 557, + 1447, + 557, + 1447, + 581, + 1311, + 581 + ], + "score": 0.46, + "latex": "B \\cdot ( | x | + | y | )" + }, + { + "category_id": 13, + "poly": [ + 1312, + 531, + 1447, + 531, + 1447, + 555, + 1312, + 555 + ], + "score": 0.45, + "latex": "B \\cdot ( | x | + | y | )" + }, + { + "category_id": 13, + "poly": [ + 944, + 530, + 1162, + 530, + 1162, + 556, + 944, + 556 + ], + "score": 0.39, + "latex": "B \\cdot ( | x | + | y | ) + \\mathsf { c o s t } _ { f }" + }, + { + "category_id": 13, + "poly": [ + 943, + 555, + 1281, + 555, + 1281, + 582, + 943, + 582 + ], + "score": 0.37, + "latex": "B \\cdot ( \\vert x \\vert + \\vert y \\vert ) + c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u t } } + \\vert x \\vert \\cdot k ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 776, + 582, + 845, + 582, + 845, + 606, + 776, + 606 + ], + "score": 0.37, + "latex": "| x | \\cdot k ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 627, + 530, + 711, + 530, + 711, + 554, + 627, + 554 + ], + "score": 0.37, + "latex": "h _ { \\mathrm { i n } } \\cdot h _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 943, + 607, + 1173, + 607, + 1173, + 633, + 943, + 633 + ], + "score": 0.36, + "latex": "B \\cdot ( | x | + | y | ) + c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u } }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 525, + 1451, + 525, + 1451, + 635, + 1305, + 635 + ], + "score": 0.25, + "latex": "\\begin{array} { l } { B \\cdot ( | x | + | y | ) } \\\\ { B \\cdot ( | x | + | y | ) } \\\\ { B \\cdot ( | x | + | y | ) } \\\\ { B \\cdot ( | x | + | y | ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 379.0, + 1470.0, + 379.0, + 1470.0, + 424.0, + 228.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 414.0, + 1470.0, + 414.0, + 1470.0, + 452.0, + 231.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 446.0, + 506.0, + 446.0, + 506.0, + 484.0, + 231.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 446.0, + 670.0, + 446.0, + 670.0, + 484.0, + 528.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 446.0, + 777.0, + 446.0, + 777.0, + 484.0, + 691.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 446.0, + 922.0, + 446.0, + 922.0, + 484.0, + 798.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 446.0, + 1265.0, + 446.0, + 1265.0, + 484.0, + 956.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 446.0, + 1354.0, + 446.0, + 1354.0, + 484.0, + 1343.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1215.0, + 495.0, + 1215.0, + 495.0, + 1255.0, + 229.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1940.0, + 798.0, + 1940.0, + 798.0, + 1971.0, + 776.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1276.0, + 1473.0, + 1276.0, + 1473.0, + 1314.0, + 230.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1306.0, + 1470.0, + 1306.0, + 1470.0, + 1343.0, + 230.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1335.0, + 1470.0, + 1335.0, + 1470.0, + 1375.0, + 227.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1367.0, + 1469.0, + 1367.0, + 1469.0, + 1404.0, + 230.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1399.0, + 1168.0, + 1399.0, + 1168.0, + 1436.0, + 230.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 763.0, + 1469.0, + 763.0, + 1469.0, + 803.0, + 229.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 797.0, + 418.0, + 797.0, + 418.0, + 835.0, + 231.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 797.0, + 1471.0, + 797.0, + 1471.0, + 835.0, + 517.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 827.0, + 1298.0, + 827.0, + 1298.0, + 865.0, + 231.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1443.0, + 1469.0, + 1443.0, + 1469.0, + 1483.0, + 229.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1476.0, + 286.0, + 1476.0, + 286.0, + 1511.0, + 231.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1476.0, + 1469.0, + 1476.0, + 1469.0, + 1511.0, + 322.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1506.0, + 1468.0, + 1506.0, + 1468.0, + 1541.0, + 232.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1537.0, + 1439.0, + 1537.0, + 1439.0, + 1572.0, + 232.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 874.0, + 1472.0, + 874.0, + 1472.0, + 909.0, + 231.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 903.0, + 831.0, + 903.0, + 831.0, + 938.0, + 229.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 903.0, + 1104.0, + 903.0, + 1104.0, + 938.0, + 856.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 903.0, + 1469.0, + 903.0, + 1469.0, + 938.0, + 1122.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 935.0, + 609.0, + 935.0, + 609.0, + 966.0, + 234.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 935.0, + 1469.0, + 935.0, + 1469.0, + 966.0, + 632.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 966.0, + 358.0, + 966.0, + 358.0, + 1002.0, + 231.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 966.0, + 1406.0, + 966.0, + 1406.0, + 1002.0, + 379.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1096.0, + 449.0, + 1096.0, + 449.0, + 1142.0, + 228.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1096.0, + 904.0, + 1096.0, + 904.0, + 1142.0, + 549.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1096.0, + 971.0, + 1096.0, + 971.0, + 1142.0, + 922.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1096.0, + 1166.0, + 1096.0, + 1166.0, + 1142.0, + 1075.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1096.0, + 1250.0, + 1096.0, + 1250.0, + 1142.0, + 1202.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1096.0, + 1474.0, + 1096.0, + 1474.0, + 1142.0, + 1288.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1133.0, + 572.0, + 1133.0, + 572.0, + 1166.0, + 231.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1133.0, + 1468.0, + 1133.0, + 1468.0, + 1166.0, + 590.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1162.0, + 1422.0, + 1162.0, + 1422.0, + 1200.0, + 231.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1787.0, + 1219.0, + 1787.0, + 1219.0, + 1825.0, + 232.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1787.0, + 1469.0, + 1787.0, + 1469.0, + 1825.0, + 1244.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1819.0, + 720.0, + 1819.0, + 720.0, + 1857.0, + 228.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1819.0, + 864.0, + 1819.0, + 864.0, + 1857.0, + 738.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1819.0, + 1078.0, + 1819.0, + 1078.0, + 1857.0, + 886.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1819.0, + 1232.0, + 1819.0, + 1232.0, + 1857.0, + 1093.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1462.0, + 1819.0, + 1470.0, + 1819.0, + 1470.0, + 1857.0, + 1462.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1848.0, + 372.0, + 1848.0, + 372.0, + 1889.0, + 230.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1848.0, + 596.0, + 1848.0, + 596.0, + 1889.0, + 398.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1848.0, + 1104.0, + 1848.0, + 1104.0, + 1889.0, + 618.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 679.0, + 353.0, + 679.0, + 353.0, + 721.0, + 231.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 679.0, + 926.0, + 679.0, + 926.0, + 721.0, + 397.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 679.0, + 1468.0, + 679.0, + 1468.0, + 721.0, + 1146.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 712.0, + 468.0, + 712.0, + 468.0, + 748.0, + 229.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 712.0, + 1176.0, + 712.0, + 1176.0, + 748.0, + 498.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 712.0, + 1260.0, + 712.0, + 1260.0, + 748.0, + 1212.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 712.0, + 1300.0, + 712.0, + 1300.0, + 748.0, + 1290.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1654.0, + 1042.0, + 1654.0, + 1042.0, + 1694.0, + 230.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1654.0, + 1134.0, + 1654.0, + 1134.0, + 1694.0, + 1069.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1654.0, + 1472.0, + 1654.0, + 1472.0, + 1694.0, + 1156.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1687.0, + 1041.0, + 1687.0, + 1041.0, + 1722.0, + 231.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1687.0, + 1469.0, + 1687.0, + 1469.0, + 1722.0, + 1115.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1716.0, + 865.0, + 1716.0, + 865.0, + 1754.0, + 227.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1716.0, + 1439.0, + 1716.0, + 1439.0, + 1754.0, + 886.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1466.0, + 1716.0, + 1470.0, + 1716.0, + 1470.0, + 1754.0, + 1466.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1743.0, + 753.0, + 1743.0, + 753.0, + 1785.0, + 229.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1743.0, + 972.0, + 1743.0, + 972.0, + 1785.0, + 775.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1743.0, + 1128.0, + 1743.0, + 1128.0, + 1785.0, + 985.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1743.0, + 1369.0, + 1743.0, + 1369.0, + 1785.0, + 1359.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1002.0, + 434.0, + 1002.0, + 434.0, + 1044.0, + 228.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1002.0, + 849.0, + 1002.0, + 849.0, + 1044.0, + 600.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1002.0, + 1380.0, + 1002.0, + 1380.0, + 1044.0, + 1020.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1415.0, + 1002.0, + 1467.0, + 1002.0, + 1467.0, + 1044.0, + 1415.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 224.0, + 1033.0, + 231.0, + 1033.0, + 231.0, + 1080.0, + 224.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1033.0, + 399.0, + 1033.0, + 399.0, + 1080.0, + 307.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1033.0, + 732.0, + 1033.0, + 732.0, + 1080.0, + 629.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1033.0, + 832.0, + 1033.0, + 832.0, + 1080.0, + 823.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1033.0, + 1023.0, + 1033.0, + 1023.0, + 1080.0, + 917.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1423.0, + 1033.0, + 1439.0, + 1033.0, + 1439.0, + 1080.0, + 1423.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1585.0, + 1466.0, + 1585.0, + 1466.0, + 1617.0, + 233.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1613.0, + 638.0, + 1613.0, + 638.0, + 1649.0, + 228.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1613.0, + 951.0, + 1613.0, + 951.0, + 1649.0, + 706.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1613.0, + 1167.0, + 1613.0, + 1167.0, + 1649.0, + 990.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1613.0, + 1268.0, + 1613.0, + 1268.0, + 1649.0, + 1258.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1460.0, + 1613.0, + 1471.0, + 1613.0, + 1471.0, + 1649.0, + 1460.0, + 1649.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 235, + 650, + 1468, + 650, + 1468, + 835, + 235, + 835 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 235, + 848, + 1468, + 848, + 1468, + 1007, + 235, + 1007 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 233, + 1387, + 1468, + 1387, + 1468, + 1542, + 233, + 1542 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 235, + 1103, + 1467, + 1103, + 1467, + 1228, + 235, + 1228 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 235, + 458, + 1467, + 458, + 1467, + 552, + 235, + 552 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 235, + 1704, + 1467, + 1704, + 1467, + 1888, + 235, + 1888 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 239, + 1241, + 1467, + 1241, + 1467, + 1374, + 239, + 1374 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 233, + 1555, + 1466, + 1555, + 1466, + 1619, + 233, + 1619 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 236, + 592, + 517, + 592, + 517, + 623, + 236, + 623 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 234, + 236, + 752, + 236, + 752, + 266, + 234, + 266 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 235, + 1046, + 381, + 1046, + 381, + 1077, + 235, + 1077 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 235, + 1659, + 411, + 1659, + 411, + 1690, + 235, + 1690 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 238, + 387, + 644, + 387, + 644, + 423, + 238, + 423 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 777, + 1942, + 794, + 1942, + 794, + 1965, + 777, + 1965 + ], + "score": 0.782 + }, + { + "category_id": 13, + "poly": [ + 696, + 848, + 839, + 848, + 839, + 882, + 696, + 882 + ], + "score": 0.9, + "latex": "p = 2 ^ { 2 4 } - 3" + }, + { + "category_id": 13, + "poly": [ + 609, + 851, + 643, + 851, + 643, + 884, + 609, + 884 + ], + "score": 0.9, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 670, + 883, + 850, + 883, + 850, + 917, + 670, + 917 + ], + "score": 0.89, + "latex": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]" + }, + { + "category_id": 13, + "poly": [ + 302, + 884, + 375, + 884, + 375, + 913, + 302, + 913 + ], + "score": 0.86, + "latex": "k = 2 ," + }, + { + "category_id": 13, + "poly": [ + 1289, + 683, + 1345, + 683, + 1345, + 711, + 1289, + 711 + ], + "score": 0.84, + "latex": "\\mathrm { C } { + + }" + }, + { + "category_id": 13, + "poly": [ + 1145, + 915, + 1168, + 915, + 1168, + 942, + 1145, + 942 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1588, + 1457, + 1588, + 1457, + 1619, + 1309, + 1619 + ], + "score": 0.52, + "latex": "\\mathrm { ( T E E + G P U ) }" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 592.0, + 520.0, + 592.0, + 520.0, + 625.0, + 232.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1042.0, + 386.0, + 1042.0, + 386.0, + 1082.0, + 229.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1654.0, + 414.0, + 1654.0, + 414.0, + 1695.0, + 228.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 383.0, + 649.0, + 383.0, + 649.0, + 430.0, + 229.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1939.0, + 797.0, + 1939.0, + 797.0, + 1974.0, + 775.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 650.0, + 1469.0, + 650.0, + 1469.0, + 688.0, + 229.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 680.0, + 1288.0, + 680.0, + 1288.0, + 717.0, + 229.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 680.0, + 1469.0, + 680.0, + 1469.0, + 717.0, + 1346.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 710.0, + 1469.0, + 710.0, + 1469.0, + 747.0, + 229.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 737.0, + 1474.0, + 737.0, + 1474.0, + 781.0, + 228.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 772.0, + 1471.0, + 772.0, + 1471.0, + 808.0, + 229.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 805.0, + 1410.0, + 805.0, + 1410.0, + 837.0, + 231.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 845.0, + 608.0, + 845.0, + 608.0, + 887.0, + 229.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 845.0, + 695.0, + 845.0, + 695.0, + 887.0, + 644.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 845.0, + 1471.0, + 845.0, + 1471.0, + 887.0, + 840.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 874.0, + 301.0, + 874.0, + 301.0, + 919.0, + 227.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 874.0, + 669.0, + 874.0, + 669.0, + 919.0, + 376.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 874.0, + 1472.0, + 874.0, + 1472.0, + 919.0, + 851.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 914.0, + 1144.0, + 914.0, + 1144.0, + 948.0, + 231.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 914.0, + 1472.0, + 914.0, + 1472.0, + 948.0, + 1169.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 942.0, + 1474.0, + 942.0, + 1474.0, + 980.0, + 229.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 975.0, + 1356.0, + 975.0, + 1356.0, + 1008.0, + 231.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1387.0, + 1468.0, + 1387.0, + 1468.0, + 1421.0, + 232.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1417.0, + 1472.0, + 1417.0, + 1472.0, + 1454.0, + 230.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1445.0, + 1469.0, + 1445.0, + 1469.0, + 1486.0, + 228.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1478.0, + 1471.0, + 1478.0, + 1471.0, + 1515.0, + 230.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1511.0, + 1387.0, + 1511.0, + 1387.0, + 1544.0, + 230.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1104.0, + 1471.0, + 1104.0, + 1471.0, + 1143.0, + 229.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1133.0, + 1471.0, + 1133.0, + 1471.0, + 1172.0, + 228.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1163.0, + 1471.0, + 1163.0, + 1471.0, + 1203.0, + 228.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1196.0, + 1217.0, + 1196.0, + 1217.0, + 1232.0, + 231.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 460.0, + 1467.0, + 460.0, + 1467.0, + 493.0, + 232.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 490.0, + 1467.0, + 490.0, + 1467.0, + 523.0, + 232.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 519.0, + 1441.0, + 519.0, + 1441.0, + 558.0, + 228.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1701.0, + 1473.0, + 1701.0, + 1473.0, + 1741.0, + 229.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1734.0, + 1470.0, + 1734.0, + 1470.0, + 1769.0, + 228.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1763.0, + 1470.0, + 1763.0, + 1470.0, + 1800.0, + 229.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1795.0, + 1468.0, + 1795.0, + 1468.0, + 1831.0, + 231.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1823.0, + 1468.0, + 1823.0, + 1468.0, + 1863.0, + 228.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1855.0, + 1091.0, + 1855.0, + 1091.0, + 1892.0, + 231.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1241.0, + 1469.0, + 1241.0, + 1469.0, + 1277.0, + 247.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 269.0, + 1274.0, + 1297.0, + 1274.0, + 1297.0, + 1306.0, + 269.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1309.0, + 1467.0, + 1309.0, + 1467.0, + 1345.0, + 246.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 1338.0, + 1470.0, + 1338.0, + 1470.0, + 1380.0, + 265.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1552.0, + 1469.0, + 1552.0, + 1469.0, + 1593.0, + 232.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1587.0, + 1308.0, + 1587.0, + 1308.0, + 1623.0, + 230.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1458.0, + 1587.0, + 1472.0, + 1587.0, + 1472.0, + 1623.0, + 1458.0, + 1623.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 235, + 1595, + 1468, + 1595, + 1468, + 1781, + 235, + 1781 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 234, + 1246, + 1467, + 1246, + 1467, + 1432, + 234, + 1432 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 234, + 930, + 1468, + 930, + 1468, + 1084, + 234, + 1084 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 236, + 1447, + 1467, + 1447, + 1467, + 1570, + 236, + 1570 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 237, + 1795, + 1466, + 1795, + 1466, + 1888, + 237, + 1888 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 234, + 1108, + 1468, + 1108, + 1468, + 1233, + 234, + 1233 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 237, + 385, + 1458, + 385, + 1458, + 693, + 237, + 693 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 234, + 703, + 1469, + 703, + 1469, + 797, + 234, + 797 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 234, + 821, + 1468, + 821, + 1468, + 914, + 234, + 914 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 235, + 237, + 752, + 237, + 752, + 265, + 235, + 265 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 777, + 1942, + 794, + 1942, + 794, + 1966, + 777, + 1966 + ], + "score": 0.799 + }, + { + "category_id": 13, + "poly": [ + 1035, + 1719, + 1096, + 1719, + 1096, + 1747, + 1035, + 1747 + ], + "score": 0.88, + "latex": "4 . 1 \\times" + }, + { + "category_id": 13, + "poly": [ + 909, + 1718, + 982, + 1718, + 982, + 1748, + 909, + 1748 + ], + "score": 0.88, + "latex": "1 0 . 7 \\times" + }, + { + "category_id": 13, + "poly": [ + 633, + 1449, + 693, + 1449, + 693, + 1477, + 633, + 1477 + ], + "score": 0.88, + "latex": "3 . 6 \\times" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1688, + 1309, + 1688, + 1309, + 1718, + 1235, + 1718 + ], + "score": 0.87, + "latex": "1 3 . 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 742, + 1448, + 803, + 1448, + 803, + 1477, + 742, + 1477 + ], + "score": 0.87, + "latex": "6 . 4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1310, + 1332, + 1310, + 1332, + 1338, + 1258, + 1338 + ], + "score": 0.87, + "latex": "2 0 . 3 \\times" + }, + { + "category_id": 13, + "poly": [ + 1109, + 824, + 1148, + 824, + 1148, + 852, + 1109, + 852 + ], + "score": 0.87, + "latex": "4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1363, + 1688, + 1424, + 1688, + 1424, + 1717, + 1363, + 1717 + ], + "score": 0.87, + "latex": "5 . 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 1179, + 824, + 1219, + 824, + 1219, + 852, + 1179, + 852 + ], + "score": 0.86, + "latex": "8 \\times" + }, + { + "category_id": 13, + "poly": [ + 747, + 995, + 789, + 995, + 789, + 1022, + 747, + 1022 + ], + "score": 0.86, + "latex": "c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 1418, + 1279, + 1465, + 1279, + 1465, + 1307, + 1418, + 1307 + ], + "score": 0.79, + "latex": "W r" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 404.0, + 294.0, + 404.0, + 294.0, + 471.0, + 250.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 386.0, + 508.0, + 386.0, + 508.0, + 471.0, + 340.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 403.0, + 612.0, + 403.0, + 612.0, + 474.0, + 574.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 394.0, + 709.0, + 394.0, + 709.0, + 487.0, + 664.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 383.0, + 919.0, + 383.0, + 919.0, + 491.0, + 752.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 440.0, + 982.0, + 440.0, + 982.0, + 463.0, + 955.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 413.0, + 1028.0, + 413.0, + 1028.0, + 444.0, + 988.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 407.0, + 1123.0, + 407.0, + 1123.0, + 472.0, + 1077.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 386.0, + 1398.0, + 386.0, + 1398.0, + 487.0, + 1135.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 489.0, + 261.0, + 489.0, + 261.0, + 573.0, + 234.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 263.0, + 487.0, + 292.0, + 487.0, + 292.0, + 509.0, + 263.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 492.0, + 333.0, + 492.0, + 333.0, + 502.0, + 322.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 474.0, + 366.0, + 474.0, + 366.0, + 498.0, + 345.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 489.0, + 494.0, + 489.0, + 494.0, + 509.0, + 479.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 488.0, + 629.0, + 488.0, + 629.0, + 539.0, + 574.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 471.0, + 725.0, + 471.0, + 725.0, + 594.0, + 630.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 479.0, + 1025.0, + 479.0, + 1025.0, + 506.0, + 989.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 474.0, + 1123.0, + 474.0, + 1123.0, + 573.0, + 1062.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 478.0, + 1469.0, + 478.0, + 1469.0, + 586.0, + 1386.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 261.0, + 523.0, + 293.0, + 523.0, + 293.0, + 590.0, + 261.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 535.0, + 347.0, + 535.0, + 347.0, + 559.0, + 326.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 521.0, + 399.0, + 521.0, + 399.0, + 530.0, + 388.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 560.0, + 431.0, + 560.0, + 431.0, + 579.0, + 411.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 536.0, + 477.0, + 536.0, + 477.0, + 560.0, + 457.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 529.0, + 631.0, + 529.0, + 631.0, + 576.0, + 603.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 514.0, + 709.0, + 514.0, + 709.0, + 548.0, + 664.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 545.0, + 918.0, + 545.0, + 918.0, + 567.0, + 889.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 530.0, + 938.0, + 530.0, + 938.0, + 543.0, + 927.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 509.0, + 1121.0, + 509.0, + 1121.0, + 567.0, + 1080.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 565.0, + 1260.0, + 565.0, + 1260.0, + 584.0, + 1242.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 501.0, + 1332.0, + 501.0, + 1332.0, + 577.0, + 1292.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 533.0, + 1354.0, + 533.0, + 1354.0, + 546.0, + 1340.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 515.0, + 1377.0, + 515.0, + 1377.0, + 539.0, + 1357.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 584.0, + 413.0, + 584.0, + 413.0, + 610.0, + 392.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 589.0, + 563.0, + 589.0, + 563.0, + 611.0, + 541.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 578.0, + 614.0, + 578.0, + 614.0, + 605.0, + 570.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 579.0, + 709.0, + 579.0, + 709.0, + 608.0, + 664.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 582.0, + 852.0, + 582.0, + 852.0, + 604.0, + 824.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 574.0, + 1121.0, + 574.0, + 1121.0, + 603.0, + 1090.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 580.0, + 1247.0, + 580.0, + 1247.0, + 600.0, + 1229.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 261.0, + 601.0, + 293.0, + 601.0, + 293.0, + 668.0, + 261.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 615.0, + 322.0, + 615.0, + 322.0, + 631.0, + 311.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 614.0, + 389.0, + 614.0, + 389.0, + 634.0, + 373.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 614.0, + 455.0, + 614.0, + 455.0, + 633.0, + 439.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 604.0, + 545.0, + 604.0, + 545.0, + 634.0, + 503.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 620.0, + 615.0, + 620.0, + 615.0, + 651.0, + 572.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 611.0, + 709.0, + 611.0, + 709.0, + 668.0, + 666.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 606.0, + 783.0, + 606.0, + 783.0, + 657.0, + 717.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 624.0, + 820.0, + 624.0, + 820.0, + 651.0, + 787.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 632.0, + 865.0, + 632.0, + 865.0, + 650.0, + 848.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 613.0, + 962.0, + 613.0, + 962.0, + 651.0, + 916.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 606.0, + 1028.0, + 606.0, + 1028.0, + 633.0, + 989.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 608.0, + 1120.0, + 608.0, + 1120.0, + 665.0, + 1090.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 623.0, + 1165.0, + 623.0, + 1165.0, + 654.0, + 1136.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 623.0, + 1231.0, + 623.0, + 1231.0, + 654.0, + 1203.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 615.0, + 1296.0, + 615.0, + 1296.0, + 638.0, + 1269.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 601.0, + 1361.0, + 601.0, + 1361.0, + 638.0, + 1335.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 638.0, + 1439.0, + 638.0, + 1439.0, + 664.0, + 1402.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 655.0, + 367.0, + 655.0, + 367.0, + 682.0, + 327.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 657.0, + 439.0, + 657.0, + 439.0, + 681.0, + 388.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 657.0, + 503.0, + 657.0, + 503.0, + 681.0, + 453.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 657.0, + 570.0, + 657.0, + 570.0, + 681.0, + 519.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 657.0, + 986.0, + 657.0, + 986.0, + 675.0, + 725.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 655.0, + 1401.0, + 655.0, + 1401.0, + 678.0, + 1139.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 671.0, + 509.0, + 671.0, + 509.0, + 701.0, + 362.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 668.0, + 918.0, + 668.0, + 918.0, + 695.0, + 783.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 668.0, + 1333.0, + 668.0, + 1333.0, + 695.0, + 1196.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.25, + 444.5, + 1443.25, + 444.5, + 1443.25, + 470.5, + 1399.25, + 470.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.25, + 499.5, + 359.25, + 499.5, + 359.25, + 515.0, + 346.25, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 531.5, + 619.0, + 531.5, + 619.0, + 563.5, + 569.0, + 563.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 585.0, + 527.0, + 585.0, + 527.0, + 602.0, + 515.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.25, + 573.0, + 1443.25, + 573.0, + 1443.25, + 599.5, + 1399.25, + 599.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 590.5, + 1206.0, + 590.5, + 1206.0, + 621.0, + 1151.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 619.5, + 894.0, + 619.5, + 894.0, + 646.5, + 864.0, + 646.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 700.0, + 1469.0, + 700.0, + 1469.0, + 741.0, + 230.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 733.0, + 1470.0, + 733.0, + 1470.0, + 770.0, + 230.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 764.0, + 1205.0, + 764.0, + 1205.0, + 802.0, + 231.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1939.0, + 796.0, + 1939.0, + 796.0, + 1970.0, + 775.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1594.0, + 1469.0, + 1594.0, + 1469.0, + 1631.0, + 231.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1621.0, + 1472.0, + 1621.0, + 1472.0, + 1666.0, + 228.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1655.0, + 1469.0, + 1655.0, + 1469.0, + 1692.0, + 229.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1687.0, + 1234.0, + 1687.0, + 1234.0, + 1724.0, + 231.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1687.0, + 1362.0, + 1687.0, + 1362.0, + 1724.0, + 1310.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1425.0, + 1687.0, + 1471.0, + 1687.0, + 1471.0, + 1724.0, + 1425.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1715.0, + 908.0, + 1715.0, + 908.0, + 1755.0, + 228.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1715.0, + 1034.0, + 1715.0, + 1034.0, + 1755.0, + 983.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1715.0, + 1471.0, + 1715.0, + 1471.0, + 1755.0, + 1097.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1746.0, + 1307.0, + 1746.0, + 1307.0, + 1788.0, + 229.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1245.0, + 1470.0, + 1245.0, + 1470.0, + 1284.0, + 230.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1278.0, + 1417.0, + 1278.0, + 1417.0, + 1315.0, + 230.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1308.0, + 1257.0, + 1308.0, + 1257.0, + 1345.0, + 230.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1308.0, + 1470.0, + 1308.0, + 1470.0, + 1345.0, + 1333.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1338.0, + 1470.0, + 1338.0, + 1470.0, + 1375.0, + 230.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1369.0, + 1470.0, + 1369.0, + 1470.0, + 1405.0, + 228.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1397.0, + 1375.0, + 1397.0, + 1375.0, + 1436.0, + 228.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 929.0, + 1471.0, + 929.0, + 1471.0, + 966.0, + 230.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 957.0, + 1472.0, + 957.0, + 1472.0, + 998.0, + 230.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 990.0, + 746.0, + 990.0, + 746.0, + 1027.0, + 228.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 990.0, + 1471.0, + 990.0, + 1471.0, + 1027.0, + 790.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1023.0, + 1469.0, + 1023.0, + 1469.0, + 1056.0, + 231.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1053.0, + 1365.0, + 1053.0, + 1365.0, + 1086.0, + 231.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1447.0, + 632.0, + 1447.0, + 632.0, + 1482.0, + 230.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1447.0, + 741.0, + 1447.0, + 741.0, + 1482.0, + 694.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1447.0, + 1468.0, + 1447.0, + 1468.0, + 1482.0, + 804.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1475.0, + 1467.0, + 1475.0, + 1467.0, + 1510.0, + 230.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1508.0, + 1468.0, + 1508.0, + 1468.0, + 1543.0, + 232.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1536.0, + 1444.0, + 1536.0, + 1444.0, + 1577.0, + 229.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1790.0, + 1470.0, + 1790.0, + 1470.0, + 1834.0, + 229.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1823.0, + 1470.0, + 1823.0, + 1470.0, + 1861.0, + 229.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1858.0, + 1311.0, + 1858.0, + 1311.0, + 1891.0, + 231.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1107.0, + 1471.0, + 1107.0, + 1471.0, + 1145.0, + 230.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1135.0, + 1471.0, + 1135.0, + 1471.0, + 1178.0, + 229.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1168.0, + 1468.0, + 1168.0, + 1468.0, + 1203.0, + 231.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1200.0, + 1467.0, + 1200.0, + 1467.0, + 1239.0, + 230.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 816.0, + 1108.0, + 816.0, + 1108.0, + 862.0, + 229.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 816.0, + 1178.0, + 816.0, + 1178.0, + 862.0, + 1149.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 816.0, + 1469.0, + 816.0, + 1469.0, + 862.0, + 1220.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 849.0, + 1469.0, + 849.0, + 1469.0, + 889.0, + 230.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 881.0, + 1021.0, + 881.0, + 1021.0, + 920.0, + 230.0, + 920.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 233, + 1412, + 1469, + 1412, + 1469, + 1598, + 233, + 1598 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 233, + 1611, + 1467, + 1611, + 1467, + 1889, + 233, + 1889 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 234, + 1151, + 1468, + 1151, + 1468, + 1399, + 234, + 1399 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 235, + 818, + 1467, + 818, + 1467, + 1007, + 235, + 1007 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 237, + 384, + 1466, + 384, + 1466, + 602, + 237, + 602 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 232, + 622, + 1468, + 622, + 1468, + 780, + 232, + 780 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 230, + 1020, + 1468, + 1020, + 1468, + 1086, + 230, + 1086 + ], + "score": 0.934 + }, + { + "category_id": 2, + "poly": [ + 235, + 237, + 751, + 237, + 751, + 265, + 235, + 265 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 776, + 1942, + 795, + 1942, + 795, + 1965, + 776, + 1965 + ], + "score": 0.812 + }, + { + "category_id": 13, + "poly": [ + 1127, + 1214, + 1416, + 1214, + 1416, + 1247, + 1127, + 1247 + ], + "score": 0.91, + "latex": "f ( x ) = \\sigma ( f _ { 1 } ( x ) + f _ { 2 } ( x ) )" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1247, + 1277, + 1247, + 1277, + 1277, + 1222, + 1277 + ], + "score": 0.91, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 741, + 1567, + 802, + 1567, + 802, + 1596, + 741, + 1596 + ], + "score": 0.9, + "latex": "9 . 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 233, + 1703, + 323, + 1703, + 323, + 1735, + 233, + 1735 + ], + "score": 0.9, + "latex": "k ^ { 2 } \\cdot c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 739, + 1306, + 768, + 1306, + 768, + 1338, + 739, + 1338 + ], + "score": 0.89, + "latex": "f _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1644, + 1227, + 1644, + 1227, + 1673, + 1160, + 1673 + ], + "score": 0.89, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 678, + 1246, + 707, + 1246, + 707, + 1276, + 678, + 1276 + ], + "score": 0.88, + "latex": "f _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 658, + 1307, + 687, + 1307, + 687, + 1338, + 658, + 1338 + ], + "score": 0.88, + "latex": "f _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1277, + 550, + 1277, + 550, + 1307, + 521, + 1307 + ], + "score": 0.88, + "latex": "f _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1443, + 1185, + 1443, + 1185, + 1474, + 1122, + 1474 + ], + "score": 0.88, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 600, + 1278, + 629, + 1278, + 629, + 1307, + 600, + 1307 + ], + "score": 0.87, + "latex": "f _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1536, + 1357, + 1536, + 1357, + 1566, + 1296, + 1566 + ], + "score": 0.87, + "latex": "6 . 6 \\times" + }, + { + "category_id": 13, + "poly": [ + 598, + 1246, + 627, + 1246, + 627, + 1276, + 598, + 1276 + ], + "score": 0.87, + "latex": "f _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 649, + 1567, + 709, + 1567, + 709, + 1596, + 649, + 1596 + ], + "score": 0.85, + "latex": "4 . 4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1391, + 1536, + 1465, + 1536, + 1465, + 1566, + 1391, + 1566 + ], + "score": 0.85, + "latex": "1 4 . 4 \\times" + }, + { + "category_id": 13, + "poly": [ + 788, + 1281, + 810, + 1281, + 810, + 1303, + 788, + 1303 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 999, + 1311, + 1019, + 1311, + 1019, + 1333, + 999, + 1333 + ], + "score": 0.74, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 950, + 1250, + 970, + 1250, + 970, + 1272, + 950, + 1272 + ], + "score": 0.73, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1175, + 981, + 1195, + 981, + 1195, + 1002, + 1175, + 1002 + ], + "score": 0.54, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1305, + 574, + 1327, + 574, + 1327, + 595, + 1305, + 595 + ], + "score": 0.51, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 832.0, + 304.0, + 832.0, + 304.0, + 940.0, + 234.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 818.0, + 479.0, + 818.0, + 479.0, + 923.0, + 328.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 815.0, + 651.0, + 815.0, + 651.0, + 911.0, + 503.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 818.0, + 698.0, + 818.0, + 698.0, + 953.0, + 666.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 831.0, + 837.0, + 831.0, + 837.0, + 942.0, + 765.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 822.0, + 1027.0, + 822.0, + 1027.0, + 914.0, + 867.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 836.0, + 1104.0, + 836.0, + 1104.0, + 873.0, + 1066.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 820.0, + 1217.0, + 820.0, + 1217.0, + 910.0, + 1109.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 837.0, + 1292.0, + 837.0, + 1292.0, + 875.0, + 1255.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 830.0, + 1349.0, + 830.0, + 1349.0, + 887.0, + 1301.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 831.0, + 1407.0, + 831.0, + 1407.0, + 914.0, + 1356.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 818.0, + 1467.0, + 818.0, + 1467.0, + 952.0, + 1435.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 908.0, + 371.0, + 908.0, + 371.0, + 946.0, + 321.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 908.0, + 549.0, + 908.0, + 549.0, + 946.0, + 497.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 906.0, + 915.0, + 906.0, + 915.0, + 940.0, + 866.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 906.0, + 1104.0, + 906.0, + 1104.0, + 940.0, + 1055.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 906.0, + 1292.0, + 906.0, + 1292.0, + 940.0, + 1244.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 929.0, + 304.0, + 929.0, + 304.0, + 959.0, + 270.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 941.0, + 456.0, + 941.0, + 456.0, + 971.0, + 342.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 941.0, + 630.0, + 941.0, + 630.0, + 971.0, + 518.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 925.0, + 837.0, + 925.0, + 837.0, + 961.0, + 800.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 938.0, + 1005.0, + 938.0, + 1005.0, + 973.0, + 890.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 936.0, + 1200.0, + 936.0, + 1200.0, + 975.0, + 1071.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 938.0, + 1388.0, + 938.0, + 1388.0, + 973.0, + 1262.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 976.0, + 815.0, + 976.0, + 815.0, + 1009.0, + 537.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 971.0, + 1040.0, + 971.0, + 1040.0, + 1009.0, + 854.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 974.0, + 1174.0, + 974.0, + 1174.0, + 1012.0, + 1077.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 974.0, + 1278.0, + 974.0, + 1278.0, + 1012.0, + 1196.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 382.0, + 492.0, + 382.0, + 492.0, + 422.0, + 390.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 381.0, + 832.0, + 381.0, + 832.0, + 424.0, + 589.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 387.0, + 1048.0, + 387.0, + 1048.0, + 419.0, + 914.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 385.0, + 1415.0, + 385.0, + 1415.0, + 421.0, + 1190.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 422.0, + 312.0, + 422.0, + 312.0, + 541.0, + 233.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 407.0, + 557.0, + 407.0, + 557.0, + 555.0, + 315.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 419.0, + 640.0, + 419.0, + 640.0, + 537.0, + 577.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 425.0, + 687.0, + 425.0, + 687.0, + 466.0, + 643.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 428.0, + 724.0, + 428.0, + 724.0, + 455.0, + 701.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 415.0, + 791.0, + 415.0, + 791.0, + 516.0, + 728.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 422.0, + 854.0, + 422.0, + 854.0, + 519.0, + 798.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 432.0, + 1102.0, + 432.0, + 1102.0, + 548.0, + 860.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 422.0, + 1177.0, + 422.0, + 1177.0, + 519.0, + 1120.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 415.0, + 1375.0, + 415.0, + 1375.0, + 548.0, + 1180.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 426.0, + 1423.0, + 426.0, + 1423.0, + 513.0, + 1376.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 413.0, + 1466.0, + 413.0, + 1466.0, + 556.0, + 1435.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 271.0, + 541.0, + 312.0, + 541.0, + 312.0, + 574.0, + 271.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 541.0, + 633.0, + 541.0, + 633.0, + 574.0, + 594.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 541.0, + 850.0, + 541.0, + 850.0, + 574.0, + 813.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 540.0, + 1174.0, + 540.0, + 1174.0, + 574.0, + 1134.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 568.0, + 678.0, + 568.0, + 678.0, + 599.0, + 388.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 567.0, + 803.0, + 567.0, + 803.0, + 605.0, + 730.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 567.0, + 1037.0, + 567.0, + 1037.0, + 602.0, + 845.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 565.0, + 1173.0, + 565.0, + 1173.0, + 603.0, + 1063.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 564.0, + 1304.0, + 564.0, + 1304.0, + 604.0, + 1217.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 564.0, + 1422.0, + 564.0, + 1422.0, + 604.0, + 1328.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 477.5, + 568.0, + 477.5, + 568.0, + 518.5, + 458.0, + 518.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 515.5, + 740.0, + 515.5, + 740.0, + 557.5, + 632.0, + 557.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 623.0, + 1469.0, + 623.0, + 1469.0, + 657.0, + 231.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 653.0, + 1471.0, + 653.0, + 1471.0, + 689.0, + 229.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 685.0, + 1469.0, + 685.0, + 1469.0, + 718.0, + 231.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 714.0, + 1471.0, + 714.0, + 1471.0, + 752.0, + 229.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 745.0, + 810.0, + 745.0, + 810.0, + 783.0, + 228.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1019.0, + 1468.0, + 1019.0, + 1468.0, + 1058.0, + 230.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1050.0, + 1461.0, + 1050.0, + 1461.0, + 1089.0, + 229.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 753.0, + 234.0, + 753.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1941.0, + 797.0, + 1941.0, + 797.0, + 1971.0, + 775.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1410.0, + 1470.0, + 1410.0, + 1470.0, + 1448.0, + 229.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1441.0, + 1121.0, + 1441.0, + 1121.0, + 1480.0, + 228.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1441.0, + 1470.0, + 1441.0, + 1470.0, + 1480.0, + 1186.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1471.0, + 1473.0, + 1471.0, + 1473.0, + 1509.0, + 229.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1502.0, + 1470.0, + 1502.0, + 1470.0, + 1539.0, + 230.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1532.0, + 1295.0, + 1532.0, + 1295.0, + 1571.0, + 229.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1532.0, + 1390.0, + 1532.0, + 1390.0, + 1571.0, + 1358.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1560.0, + 648.0, + 1560.0, + 648.0, + 1605.0, + 228.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1560.0, + 740.0, + 1560.0, + 740.0, + 1605.0, + 710.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1560.0, + 1157.0, + 1560.0, + 1157.0, + 1605.0, + 803.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1611.0, + 1470.0, + 1611.0, + 1470.0, + 1647.0, + 230.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1642.0, + 1159.0, + 1642.0, + 1159.0, + 1679.0, + 230.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1642.0, + 1470.0, + 1642.0, + 1470.0, + 1679.0, + 1228.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1673.0, + 1467.0, + 1673.0, + 1467.0, + 1706.0, + 232.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1700.0, + 232.0, + 1700.0, + 232.0, + 1743.0, + 227.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1700.0, + 1471.0, + 1700.0, + 1471.0, + 1743.0, + 324.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1734.0, + 1470.0, + 1734.0, + 1470.0, + 1771.0, + 229.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1763.0, + 1471.0, + 1763.0, + 1471.0, + 1800.0, + 227.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1793.0, + 1471.0, + 1793.0, + 1471.0, + 1834.0, + 227.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1825.0, + 1468.0, + 1825.0, + 1468.0, + 1862.0, + 230.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1853.0, + 1110.0, + 1853.0, + 1110.0, + 1893.0, + 229.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1155.0, + 1468.0, + 1155.0, + 1468.0, + 1185.0, + 233.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1181.0, + 1471.0, + 1181.0, + 1471.0, + 1221.0, + 228.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1214.0, + 1126.0, + 1214.0, + 1126.0, + 1252.0, + 228.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1417.0, + 1214.0, + 1471.0, + 1214.0, + 1471.0, + 1252.0, + 1417.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1244.0, + 597.0, + 1244.0, + 597.0, + 1282.0, + 230.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1244.0, + 677.0, + 1244.0, + 677.0, + 1282.0, + 628.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1244.0, + 949.0, + 1244.0, + 949.0, + 1282.0, + 708.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1244.0, + 1221.0, + 1244.0, + 1221.0, + 1282.0, + 971.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1244.0, + 1468.0, + 1244.0, + 1468.0, + 1282.0, + 1278.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1275.0, + 520.0, + 1275.0, + 520.0, + 1309.0, + 231.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1275.0, + 599.0, + 1275.0, + 599.0, + 1309.0, + 551.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1275.0, + 787.0, + 1275.0, + 787.0, + 1309.0, + 630.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1275.0, + 1468.0, + 1275.0, + 1468.0, + 1309.0, + 811.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 1301.0, + 657.0, + 1301.0, + 657.0, + 1347.0, + 226.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1301.0, + 738.0, + 1301.0, + 738.0, + 1347.0, + 688.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1301.0, + 998.0, + 1301.0, + 998.0, + 1347.0, + 769.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1301.0, + 1471.0, + 1301.0, + 1471.0, + 1347.0, + 1020.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1335.0, + 1471.0, + 1335.0, + 1471.0, + 1373.0, + 230.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1366.0, + 1322.0, + 1366.0, + 1322.0, + 1404.0, + 230.0, + 1404.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 236, + 938, + 1467, + 938, + 1467, + 1031, + 236, + 1031 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 235, + 1046, + 1466, + 1046, + 1466, + 1200, + 235, + 1200 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 236, + 1215, + 1467, + 1215, + 1467, + 1370, + 236, + 1370 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 235, + 456, + 1470, + 456, + 1470, + 550, + 235, + 550 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 246, + 561, + 1469, + 561, + 1469, + 825, + 246, + 825 + ], + "score": 0.952 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 265, + 235, + 265 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 235, + 1414, + 425, + 1414, + 425, + 1447, + 235, + 1447 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 235, + 868, + 481, + 868, + 481, + 905, + 235, + 905 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 801, + 1942, + 801, + 1967, + 772, + 1967 + ], + "score": 0.841 + }, + { + "category_id": 0, + "poly": [ + 236, + 386, + 1086, + 386, + 1086, + 423, + 236, + 423 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 228, + 1462, + 1469, + 1462, + 1469, + 1888, + 228, + 1888 + ], + "score": 0.541 + }, + { + "category_id": 15, + "poly": [ + 231.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1414.0, + 426.0, + 1414.0, + 426.0, + 1451.0, + 233.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 865.0, + 486.0, + 865.0, + 486.0, + 913.0, + 229.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1939.0, + 806.0, + 1939.0, + 806.0, + 1977.0, + 767.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 383.0, + 1089.0, + 383.0, + 1089.0, + 428.0, + 228.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 938.0, + 1468.0, + 938.0, + 1468.0, + 975.0, + 232.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 969.0, + 1470.0, + 969.0, + 1470.0, + 1007.0, + 230.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1000.0, + 1327.0, + 1000.0, + 1327.0, + 1037.0, + 230.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1048.0, + 1469.0, + 1048.0, + 1469.0, + 1081.0, + 232.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1075.0, + 1469.0, + 1075.0, + 1469.0, + 1114.0, + 228.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1108.0, + 1472.0, + 1108.0, + 1472.0, + 1144.0, + 228.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1138.0, + 1470.0, + 1138.0, + 1470.0, + 1175.0, + 231.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1167.0, + 1415.0, + 1167.0, + 1415.0, + 1206.0, + 228.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1214.0, + 1470.0, + 1214.0, + 1470.0, + 1253.0, + 229.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1247.0, + 1468.0, + 1247.0, + 1468.0, + 1281.0, + 232.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1275.0, + 1471.0, + 1275.0, + 1471.0, + 1315.0, + 229.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1306.0, + 1471.0, + 1306.0, + 1471.0, + 1343.0, + 229.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1338.0, + 1378.0, + 1338.0, + 1378.0, + 1375.0, + 230.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 458.0, + 1467.0, + 458.0, + 1467.0, + 491.0, + 232.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 486.0, + 1474.0, + 486.0, + 1474.0, + 526.0, + 228.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 518.0, + 1366.0, + 518.0, + 1366.0, + 556.0, + 232.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 562.0, + 1472.0, + 562.0, + 1472.0, + 598.0, + 247.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 588.0, + 1474.0, + 588.0, + 1474.0, + 633.0, + 265.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 628.0, + 1472.0, + 628.0, + 1472.0, + 670.0, + 243.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 657.0, + 1468.0, + 657.0, + 1468.0, + 702.0, + 266.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 690.0, + 882.0, + 690.0, + 882.0, + 733.0, + 265.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 730.0, + 1469.0, + 730.0, + 1469.0, + 770.0, + 254.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 269.0, + 763.0, + 1467.0, + 763.0, + 1467.0, + 798.0, + 269.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 787.0, + 1164.0, + 787.0, + 1164.0, + 835.0, + 266.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1460.0, + 1469.0, + 1460.0, + 1469.0, + 1498.0, + 230.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1493.0, + 663.0, + 1493.0, + 663.0, + 1524.0, + 258.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 1537.0, + 1469.0, + 1537.0, + 1469.0, + 1578.0, + 226.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1570.0, + 1323.0, + 1570.0, + 1323.0, + 1604.0, + 256.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1616.0, + 1470.0, + 1616.0, + 1470.0, + 1657.0, + 227.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1646.0, + 1473.0, + 1646.0, + 1473.0, + 1685.0, + 256.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1672.0, + 327.0, + 1672.0, + 327.0, + 1709.0, + 256.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1723.0, + 1469.0, + 1723.0, + 1469.0, + 1763.0, + 228.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1753.0, + 1090.0, + 1753.0, + 1090.0, + 1789.0, + 256.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1800.0, + 1470.0, + 1800.0, + 1470.0, + 1839.0, + 228.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 1824.0, + 1474.0, + 1824.0, + 1474.0, + 1872.0, + 254.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1859.0, + 456.0, + 1859.0, + 456.0, + 1893.0, + 258.0, + 1893.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 771, + 1942, + 798, + 1942, + 798, + 1968, + 771, + 1968 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 234, + 497, + 847, + 497, + 847, + 528, + 234, + 528 + ], + "score": 0.65 + }, + { + "category_id": 1, + "poly": [ + 229, + 392, + 1466, + 392, + 1466, + 479, + 229, + 479 + ], + "score": 0.621 + }, + { + "category_id": 1, + "poly": [ + 227, + 546, + 1468, + 546, + 1468, + 605, + 227, + 605 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 231, + 1417, + 1465, + 1417, + 1465, + 1478, + 231, + 1478 + ], + "score": 0.561 + }, + { + "category_id": 1, + "poly": [ + 232, + 929, + 1467, + 929, + 1467, + 1015, + 232, + 1015 + ], + "score": 0.546 + }, + { + "category_id": 1, + "poly": [ + 227, + 1340, + 1464, + 1340, + 1464, + 1401, + 227, + 1401 + ], + "score": 0.541 + }, + { + "category_id": 1, + "poly": [ + 233, + 1571, + 1469, + 1571, + 1469, + 1631, + 233, + 1631 + ], + "score": 0.541 + }, + { + "category_id": 1, + "poly": [ + 231, + 1494, + 1463, + 1494, + 1463, + 1555, + 231, + 1555 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 233, + 623, + 1378, + 623, + 1378, + 656, + 233, + 656 + ], + "score": 0.524 + }, + { + "category_id": 1, + "poly": [ + 230, + 852, + 1469, + 852, + 1469, + 913, + 230, + 913 + ], + "score": 0.52 + }, + { + "category_id": 1, + "poly": [ + 228, + 1237, + 1466, + 1237, + 1466, + 1323, + 228, + 1323 + ], + "score": 0.514 + }, + { + "category_id": 1, + "poly": [ + 234, + 1110, + 1385, + 1110, + 1385, + 1144, + 234, + 1144 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 230, + 1160, + 1466, + 1160, + 1466, + 1219, + 230, + 1219 + ], + "score": 0.49 + }, + { + "category_id": 1, + "poly": [ + 230, + 1033, + 1474, + 1033, + 1474, + 1094, + 230, + 1094 + ], + "score": 0.488 + }, + { + "category_id": 1, + "poly": [ + 229, + 748, + 1466, + 748, + 1466, + 836, + 229, + 836 + ], + "score": 0.483 + }, + { + "category_id": 1, + "poly": [ + 229, + 1648, + 1467, + 1648, + 1467, + 1708, + 229, + 1708 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 229, + 672, + 1461, + 672, + 1461, + 730, + 229, + 730 + ], + "score": 0.453 + }, + { + "category_id": 1, + "poly": [ + 231, + 1725, + 1464, + 1725, + 1464, + 1811, + 231, + 1811 + ], + "score": 0.418 + }, + { + "category_id": 1, + "poly": [ + 231, + 1829, + 1461, + 1829, + 1461, + 1889, + 231, + 1889 + ], + "score": 0.386 + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1939.0, + 803.0, + 1939.0, + 803.0, + 1978.0, + 767.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 496.0, + 849.0, + 496.0, + 849.0, + 531.0, + 231.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 393.0, + 1469.0, + 393.0, + 1469.0, + 425.0, + 231.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 421.0, + 1469.0, + 421.0, + 1469.0, + 453.0, + 260.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 449.0, + 606.0, + 449.0, + 606.0, + 481.0, + 255.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 546.0, + 1471.0, + 546.0, + 1471.0, + 580.0, + 230.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 574.0, + 620.0, + 574.0, + 620.0, + 605.0, + 258.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1420.0, + 1468.0, + 1420.0, + 1468.0, + 1451.0, + 232.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1445.0, + 1190.0, + 1445.0, + 1190.0, + 1479.0, + 256.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 931.0, + 1468.0, + 931.0, + 1468.0, + 963.0, + 232.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 957.0, + 1471.0, + 957.0, + 1471.0, + 991.0, + 257.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 980.0, + 326.0, + 980.0, + 326.0, + 1019.0, + 258.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1338.0, + 1468.0, + 1338.0, + 1468.0, + 1377.0, + 229.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1371.0, + 673.0, + 1371.0, + 673.0, + 1401.0, + 258.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1572.0, + 1469.0, + 1572.0, + 1469.0, + 1603.0, + 232.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1600.0, + 1363.0, + 1600.0, + 1363.0, + 1632.0, + 258.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1496.0, + 1466.0, + 1496.0, + 1466.0, + 1527.0, + 231.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 1523.0, + 1288.0, + 1523.0, + 1288.0, + 1555.0, + 260.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 621.0, + 1379.0, + 621.0, + 1379.0, + 656.0, + 234.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 854.0, + 1472.0, + 854.0, + 1472.0, + 886.0, + 229.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 881.0, + 1219.0, + 881.0, + 1219.0, + 913.0, + 258.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1232.0, + 1469.0, + 1232.0, + 1469.0, + 1276.0, + 228.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 1260.0, + 1470.0, + 1260.0, + 1470.0, + 1303.0, + 255.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1293.0, + 547.0, + 1293.0, + 547.0, + 1325.0, + 257.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1110.0, + 1374.0, + 1110.0, + 1374.0, + 1145.0, + 231.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1161.0, + 1469.0, + 1161.0, + 1469.0, + 1192.0, + 230.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 1188.0, + 1196.0, + 1188.0, + 1196.0, + 1219.0, + 259.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1036.0, + 1467.0, + 1036.0, + 1467.0, + 1067.0, + 230.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1063.0, + 1472.0, + 1063.0, + 1472.0, + 1095.0, + 258.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 748.0, + 1470.0, + 748.0, + 1470.0, + 780.0, + 232.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 777.0, + 1469.0, + 777.0, + 1469.0, + 810.0, + 260.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 807.0, + 859.0, + 807.0, + 859.0, + 835.0, + 260.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1644.0, + 1472.0, + 1644.0, + 1472.0, + 1686.0, + 228.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 1678.0, + 1118.0, + 1678.0, + 1118.0, + 1709.0, + 260.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 669.0, + 1469.0, + 669.0, + 1469.0, + 706.0, + 230.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 700.0, + 630.0, + 700.0, + 630.0, + 731.0, + 258.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1721.0, + 1471.0, + 1721.0, + 1471.0, + 1761.0, + 230.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1751.0, + 1470.0, + 1751.0, + 1470.0, + 1788.0, + 256.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 1781.0, + 518.0, + 1781.0, + 518.0, + 1813.0, + 259.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1828.0, + 1467.0, + 1828.0, + 1467.0, + 1864.0, + 230.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1858.0, + 885.0, + 1858.0, + 885.0, + 1889.0, + 257.0, + 1889.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 771, + 1942, + 800, + 1942, + 800, + 1968, + 771, + 1968 + ], + "score": 0.838 + }, + { + "category_id": 1, + "poly": [ + 226, + 340, + 1474, + 340, + 1474, + 1897, + 226, + 1897 + ], + "score": 0.575 + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1938.0, + 805.0, + 1938.0, + 805.0, + 1978.0, + 767.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 225.0, + 390.0, + 1475.0, + 390.0, + 1475.0, + 430.0, + 225.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 421.0, + 327.0, + 421.0, + 327.0, + 456.0, + 257.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 225.0, + 470.0, + 1473.0, + 470.0, + 1473.0, + 506.0, + 225.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 497.0, + 1471.0, + 497.0, + 1471.0, + 539.0, + 257.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 530.0, + 799.0, + 530.0, + 799.0, + 563.0, + 258.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 578.0, + 1468.0, + 578.0, + 1468.0, + 611.0, + 232.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 608.0, + 862.0, + 608.0, + 862.0, + 640.0, + 258.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 652.0, + 1473.0, + 652.0, + 1473.0, + 692.0, + 227.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 680.0, + 1473.0, + 680.0, + 1473.0, + 720.0, + 255.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 707.0, + 329.0, + 707.0, + 329.0, + 748.0, + 257.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 759.0, + 1468.0, + 759.0, + 1468.0, + 796.0, + 230.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 787.0, + 1278.0, + 787.0, + 1278.0, + 825.0, + 255.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 835.0, + 1471.0, + 835.0, + 1471.0, + 875.0, + 229.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 868.0, + 1389.0, + 868.0, + 1389.0, + 901.0, + 258.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 915.0, + 1473.0, + 915.0, + 1473.0, + 955.0, + 227.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 946.0, + 471.0, + 946.0, + 471.0, + 979.0, + 258.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 994.0, + 1473.0, + 994.0, + 1473.0, + 1032.0, + 229.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1022.0, + 1470.0, + 1022.0, + 1470.0, + 1060.0, + 258.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1053.0, + 750.0, + 1053.0, + 750.0, + 1086.0, + 257.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1100.0, + 1470.0, + 1100.0, + 1470.0, + 1137.0, + 229.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 1125.0, + 1470.0, + 1125.0, + 1470.0, + 1167.0, + 255.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1158.0, + 573.0, + 1158.0, + 573.0, + 1191.0, + 257.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1205.0, + 1470.0, + 1205.0, + 1470.0, + 1241.0, + 230.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 1234.0, + 1331.0, + 1234.0, + 1331.0, + 1272.0, + 255.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1286.0, + 1470.0, + 1286.0, + 1470.0, + 1319.0, + 230.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 253.0, + 1312.0, + 876.0, + 1312.0, + 876.0, + 1348.0, + 253.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1360.0, + 1473.0, + 1360.0, + 1473.0, + 1400.0, + 229.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1389.0, + 1284.0, + 1389.0, + 1284.0, + 1427.0, + 257.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1440.0, + 1471.0, + 1440.0, + 1471.0, + 1478.0, + 229.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1469.0, + 1248.0, + 1469.0, + 1248.0, + 1502.0, + 257.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1515.0, + 1473.0, + 1515.0, + 1473.0, + 1555.0, + 227.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1547.0, + 327.0, + 1547.0, + 327.0, + 1581.0, + 257.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1593.0, + 1470.0, + 1593.0, + 1470.0, + 1633.0, + 229.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1624.0, + 954.0, + 1624.0, + 954.0, + 1662.0, + 257.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1673.0, + 1470.0, + 1673.0, + 1470.0, + 1711.0, + 229.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1702.0, + 1169.0, + 1702.0, + 1169.0, + 1740.0, + 257.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1748.0, + 1471.0, + 1748.0, + 1471.0, + 1790.0, + 229.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1778.0, + 1440.0, + 1778.0, + 1440.0, + 1819.0, + 251.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1828.0, + 1471.0, + 1828.0, + 1471.0, + 1869.0, + 227.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1859.0, + 508.0, + 1859.0, + 508.0, + 1892.0, + 258.0, + 1892.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1473, + 1468, + 1473, + 1468, + 1720, + 234, + 1720 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 235, + 1733, + 1469, + 1733, + 1469, + 1888, + 235, + 1888 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 236, + 1365, + 1469, + 1365, + 1469, + 1459, + 236, + 1459 + ], + "score": 0.968 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 799, + 1942, + 799, + 1967, + 772, + 1967 + ], + "score": 0.84 + }, + { + "category_id": 0, + "poly": [ + 236, + 1296, + 800, + 1296, + 800, + 1333, + 236, + 1333 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 227, + 392, + 1473, + 392, + 1473, + 1249, + 227, + 1249 + ], + "score": 0.672 + }, + { + "category_id": 13, + "poly": [ + 1425, + 1536, + 1467, + 1536, + 1467, + 1565, + 1425, + 1565 + ], + "score": 0.29, + "latex": "\\mathrm { { X u } }" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1939.0, + 804.0, + 1939.0, + 804.0, + 1977.0, + 768.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1292.0, + 803.0, + 1292.0, + 803.0, + 1339.0, + 230.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1475.0, + 1471.0, + 1475.0, + 1471.0, + 1508.0, + 231.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1502.0, + 1472.0, + 1502.0, + 1472.0, + 1541.0, + 228.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 1536.0, + 1424.0, + 1536.0, + 1424.0, + 1571.0, + 226.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1468.0, + 1536.0, + 1471.0, + 1536.0, + 1471.0, + 1571.0, + 1468.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1565.0, + 1471.0, + 1565.0, + 1471.0, + 1599.0, + 228.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1594.0, + 1471.0, + 1594.0, + 1471.0, + 1634.0, + 229.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1624.0, + 1471.0, + 1624.0, + 1471.0, + 1662.0, + 228.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1656.0, + 1471.0, + 1656.0, + 1471.0, + 1694.0, + 228.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1689.0, + 1412.0, + 1689.0, + 1412.0, + 1723.0, + 231.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1735.0, + 1469.0, + 1735.0, + 1469.0, + 1768.0, + 231.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1763.0, + 1473.0, + 1763.0, + 1473.0, + 1799.0, + 227.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1792.0, + 1473.0, + 1792.0, + 1473.0, + 1830.0, + 228.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1822.0, + 1469.0, + 1822.0, + 1469.0, + 1861.0, + 228.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1857.0, + 796.0, + 1857.0, + 796.0, + 1891.0, + 229.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1365.0, + 1468.0, + 1365.0, + 1468.0, + 1403.0, + 232.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1397.0, + 1469.0, + 1397.0, + 1469.0, + 1430.0, + 233.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1426.0, + 1473.0, + 1426.0, + 1473.0, + 1464.0, + 230.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 392.0, + 1470.0, + 392.0, + 1470.0, + 429.0, + 229.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 422.0, + 1470.0, + 422.0, + 1470.0, + 457.0, + 257.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 449.0, + 517.0, + 449.0, + 517.0, + 481.0, + 257.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 496.0, + 1470.0, + 496.0, + 1470.0, + 534.0, + 229.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 521.0, + 1470.0, + 521.0, + 1470.0, + 563.0, + 256.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 553.0, + 649.0, + 553.0, + 649.0, + 587.0, + 257.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 603.0, + 1470.0, + 603.0, + 1470.0, + 634.0, + 232.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 631.0, + 422.0, + 631.0, + 422.0, + 661.0, + 258.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 672.0, + 1471.0, + 672.0, + 1471.0, + 714.0, + 228.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 704.0, + 1273.0, + 704.0, + 1273.0, + 739.0, + 257.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 746.0, + 1470.0, + 746.0, + 1470.0, + 792.0, + 226.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 781.0, + 1301.0, + 781.0, + 1301.0, + 816.0, + 257.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 828.0, + 1474.0, + 828.0, + 1474.0, + 863.0, + 229.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 855.0, + 1471.0, + 855.0, + 1471.0, + 890.0, + 258.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 883.0, + 1139.0, + 883.0, + 1139.0, + 919.0, + 258.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 926.0, + 1471.0, + 926.0, + 1471.0, + 969.0, + 228.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 959.0, + 749.0, + 959.0, + 749.0, + 994.0, + 254.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1003.0, + 1470.0, + 1003.0, + 1470.0, + 1046.0, + 228.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1034.0, + 1470.0, + 1034.0, + 1470.0, + 1070.0, + 258.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1060.0, + 648.0, + 1060.0, + 648.0, + 1095.0, + 257.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1110.0, + 1468.0, + 1110.0, + 1468.0, + 1145.0, + 232.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 1137.0, + 844.0, + 1137.0, + 844.0, + 1174.0, + 255.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1185.0, + 1468.0, + 1185.0, + 1468.0, + 1221.0, + 232.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 256.0, + 1211.0, + 1471.0, + 1211.0, + 1471.0, + 1246.0, + 256.0, + 1246.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1703, + 1469, + 1703, + 1469, + 1889, + 234, + 1889 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 233, + 390, + 1470, + 390, + 1470, + 484, + 233, + 484 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 235, + 1563, + 1468, + 1563, + 1468, + 1689, + 235, + 1689 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 234, + 1417, + 1469, + 1417, + 1469, + 1542, + 234, + 1542 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 232, + 603, + 1468, + 603, + 1468, + 667, + 232, + 667 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 235, + 1262, + 1467, + 1262, + 1467, + 1326, + 235, + 1326 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 232, + 1340, + 1467, + 1340, + 1467, + 1405, + 232, + 1405 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 231, + 677, + 1463, + 677, + 1463, + 741, + 231, + 741 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 240, + 909, + 1059, + 909, + 1059, + 942, + 240, + 942 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 800, + 1942, + 800, + 1967, + 772, + 1967 + ], + "score": 0.852 + }, + { + "category_id": 0, + "poly": [ + 235, + 531, + 959, + 531, + 959, + 568, + 235, + 568 + ], + "score": 0.812 + }, + { + "category_id": 1, + "poly": [ + 237, + 752, + 1469, + 752, + 1469, + 898, + 237, + 898 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 244, + 1194, + 1469, + 1194, + 1469, + 1228, + 244, + 1228 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 249, + 1033, + 1461, + 1033, + 1461, + 1101, + 249, + 1101 + ], + "score": 0.425 + }, + { + "category_id": 1, + "poly": [ + 250, + 1114, + 1459, + 1114, + 1459, + 1180, + 250, + 1180 + ], + "score": 0.385 + }, + { + "category_id": 1, + "poly": [ + 247, + 952, + 1456, + 952, + 1456, + 1020, + 247, + 1020 + ], + "score": 0.279 + }, + { + "category_id": 1, + "poly": [ + 235, + 531, + 959, + 531, + 959, + 568, + 235, + 568 + ], + "score": 0.114 + }, + { + "category_id": 13, + "poly": [ + 783, + 1065, + 954, + 1065, + 954, + 1099, + 783, + 1099 + ], + "score": 0.93, + "latex": "\\tilde { y } \\notin \\{ F ( x ) , \\bot \\}" + }, + { + "category_id": 13, + "poly": [ + 696, + 986, + 809, + 986, + 809, + 1019, + 696, + 1019 + ], + "score": 0.92, + "latex": "y = F ( x )" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1371, + 1387, + 1371, + 1387, + 1403, + 1268, + 1403 + ], + "score": 0.92, + "latex": "F , F ^ { \\prime } \\in \\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 965, + 866, + 1038, + 866, + 1038, + 896, + 965, + 896 + ], + "score": 0.91, + "latex": "y \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 666, + 1036, + 743, + 1036, + 743, + 1063, + 666, + 1063 + ], + "score": 0.91, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1796, + 1128, + 1796, + 1128, + 1827, + 1006, + 1827 + ], + "score": 0.91, + "latex": "y _ { i } \\neq x _ { i } W _ { i }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1145, + 632, + 1145, + 632, + 1179, + 394, + 1179 + ], + "score": 0.91, + "latex": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } ( F ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1403, + 1796, + 1461, + 1796, + 1461, + 1829, + 1403, + 1829 + ], + "score": 0.91, + "latex": "1 / | \\mathbb { S } | ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 741, + 1826, + 1148, + 1826, + 1148, + 1859, + 741, + 1859 + ], + "score": 0.91, + "latex": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) ] \\leq { n } / { | \\mathbb { S } | ^ { k } } - \\operatorname { n e g l } ( \\lambda ) ." + }, + { + "category_id": 13, + "poly": [ + 310, + 1734, + 605, + 1734, + 605, + 1768, + 310, + 1768 + ], + "score": 0.91, + "latex": "\\operatorname* { P r } [ y _ { n } \\neq F ( x _ { 1 } ) \\ | \\ { \\dot { y } } _ { n } \\neq \\bot ]" + }, + { + "category_id": 13, + "poly": [ + 701, + 1115, + 813, + 1115, + 813, + 1146, + 701, + 1146 + ], + "score": 0.91, + "latex": "x , x ^ { \\prime } \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 709, + 1085, + 709, + 1085, + 741, + 1017, + 741 + ], + "score": 0.91, + "latex": "\\langle \\mathcal { C } , \\mathcal { S } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1169, + 605, + 1342, + 605, + 1342, + 637, + 1169, + 637 + ], + "score": 0.91, + "latex": "F ( x ) : \\mathcal { X } \\mathcal { Y }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1627, + 1276, + 1627, + 1276, + 1657, + 1203, + 1657 + ], + "score": 0.9, + "latex": "\\mathbb { S } \\subseteq \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 972, + 1372, + 1177, + 1372, + 1177, + 1405, + 972, + 1405 + ], + "score": 0.9, + "latex": "\\langle \\mathcal { C } ( F ^ { \\prime } , x , \\mathrm { s t } ) , S ^ { * } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 801, + 1145, + 1047, + 1145, + 1047, + 1179, + 801, + 1179 + ], + "score": 0.9, + "latex": "\\langle \\mathcal { C } ( F , \\overline { { x ^ { \\prime } } } , \\mathrm { { s t } } ) , S ^ { \\ast } ( \\mathrm { { \\bar { F } } } ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1196, + 1462, + 1196, + 1462, + 1224, + 1381, + 1224 + ], + "score": 0.9, + "latex": "F \\in { \\mathcal { F } }" + }, + { + "category_id": 13, + "poly": [ + 766, + 1765, + 839, + 1765, + 839, + 1795, + 766, + 1795 + ], + "score": 0.9, + "latex": "\\mathbb { S } \\subseteq \\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 393, + 985, + 618, + 985, + 618, + 1019, + 393, + 1019 + ], + "score": 0.9, + "latex": "\\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 605, + 1371, + 800, + 1371, + 800, + 1405, + 605, + 1405 + ], + "score": 0.9, + "latex": "\\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { * } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 510, + 1035, + 591, + 1035, + 591, + 1063, + 510, + 1063 + ], + "score": 0.89, + "latex": "F \\in { \\mathcal { F } }" + }, + { + "category_id": 13, + "poly": [ + 538, + 1116, + 619, + 1116, + 619, + 1144, + 538, + 1144 + ], + "score": 0.89, + "latex": "F \\in { \\mathcal { F } }" + }, + { + "category_id": 13, + "poly": [ + 387, + 1797, + 424, + 1797, + 424, + 1826, + 387, + 1826 + ], + "score": 0.88, + "latex": "W _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1403, + 1116, + 1437, + 1116, + 1437, + 1143, + 1403, + 1143 + ], + "score": 0.87, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1036, + 1286, + 1036, + 1286, + 1063, + 1252, + 1063 + ], + "score": 0.87, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 718, + 1343, + 752, + 1343, + 752, + 1369, + 718, + 1369 + ], + "score": 0.87, + "latex": "{ \\boldsymbol { S } } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1117, + 1257, + 1117, + 1257, + 1144, + 1223, + 1144 + ], + "score": 0.86, + "latex": "{ \\boldsymbol { S } } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 499, + 1800, + 528, + 1800, + 528, + 1826, + 499, + 1826 + ], + "score": 0.86, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1709, + 1039, + 1709, + 1039, + 1735, + 1008, + 1735 + ], + "score": 0.86, + "latex": "x _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 329, + 1373, + 363, + 1373, + 363, + 1400, + 329, + 1400 + ], + "score": 0.85, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 273, + 750, + 524, + 750, + 524, + 787, + 273, + 787 + ], + "score": 0.85, + "latex": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } )" + }, + { + "category_id": 13, + "poly": [ + 272, + 866, + 386, + 866, + 386, + 898, + 272, + 898 + ], + "score": 0.85, + "latex": "( F , x , s \\ t )" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1265, + 1404, + 1265, + 1404, + 1291, + 1380, + 1291 + ], + "score": 0.84, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1709, + 1360, + 1709, + 1360, + 1736, + 1329, + 1736 + ], + "score": 0.84, + "latex": "y _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1048, + 637, + 1073, + 637, + 1073, + 663, + 1048, + 663 + ], + "score": 0.84, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 571, + 954, + 698, + 954, + 698, + 983, + 571, + 983 + ], + "score": 0.84, + "latex": "\\begin{array} { r l r l } { F } & { { } \\in } & { { \\mathcal { F } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 769, + 955, + 889, + 955, + 889, + 983, + 769, + 983 + ], + "score": 0.83, + "latex": "\\begin{array} { r l r l } { x } & { { } \\in } & { { \\mathcal { X } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1339, + 637, + 1360, + 637, + 1360, + 663, + 1339, + 663 + ], + "score": 0.83, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1389, + 956, + 1467, + 956, + 1467, + 988, + 1389, + 988 + ], + "score": 0.82, + "latex": "y " + }, + { + "category_id": 13, + "poly": [ + 708, + 1197, + 728, + 1197, + 728, + 1223, + 708, + 1223 + ], + "score": 0.82, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 638, + 1288, + 638, + 1288, + 663, + 1268, + 663 + ], + "score": 0.82, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 948, + 1296, + 973, + 1296, + 973, + 1322, + 948, + 1322 + ], + "score": 0.81, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 928, + 1565, + 1148, + 1565, + 1148, + 1599, + 928, + 1599 + ], + "score": 0.81, + "latex": "\\langle \\mathrm { T E E } ( F , x , \\mathrm { s t } ) , S \\rangle" + }, + { + "category_id": 13, + "poly": [ + 770, + 1802, + 794, + 1802, + 794, + 1827, + 770, + 1827 + ], + "score": 0.81, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 313, + 636, + 339, + 636, + 339, + 664, + 313, + 664 + ], + "score": 0.81, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 606, + 1035, + 606, + 1035, + 633, + 1014, + 633 + ], + "score": 0.81, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1197, + 1252, + 1197, + 1252, + 1223, + 1232, + 1223 + ], + "score": 0.81, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 268, + 833, + 768, + 833, + 768, + 868, + 268, + 868 + ], + "score": 0.8, + "latex": "\\mathcal { V } \\cup \\{ \\bot \\} \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathrm { s t } ) , \\mathcal { S } ( F ) \\rangle \\mathrm { : }" + }, + { + "category_id": 13, + "poly": [ + 303, + 1296, + 326, + 1296, + 326, + 1322, + 303, + 1322 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1420, + 1321, + 1420, + 1321, + 1447, + 1298, + 1447 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1663, + 1126, + 1663, + 1126, + 1688, + 1101, + 1688 + ], + "score": 0.79, + "latex": "r _ { i }" + }, + { + "category_id": 13, + "poly": [ + 447, + 1451, + 471, + 1451, + 471, + 1477, + 447, + 1477 + ], + "score": 0.79, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 359, + 1296, + 379, + 1296, + 379, + 1322, + 359, + 1322 + ], + "score": 0.79, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1311, + 836, + 1331, + 836, + 1331, + 862, + 1311, + 862 + ], + "score": 0.78, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 854, + 606, + 873, + 606, + 873, + 632, + 854, + 632 + ], + "score": 0.78, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 811, + 1658, + 833, + 1658, + 833, + 1685, + 811, + 1685 + ], + "score": 0.77, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1451, + 728, + 1451, + 728, + 1477, + 708, + 1477 + ], + "score": 0.77, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 698, + 868, + 718, + 868, + 718, + 892, + 698, + 892 + ], + "score": 0.77, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1420, + 1147, + 1420, + 1147, + 1447, + 1127, + 1447 + ], + "score": 0.76, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 679, + 1864, + 694, + 1864, + 694, + 1884, + 679, + 1884 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 965, + 755, + 985, + 755, + 985, + 781, + 965, + 781 + ], + "score": 0.76, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1202, + 866, + 1222, + 866, + 1222, + 893, + 1202, + 893 + ], + "score": 0.76, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 322, + 1066, + 732, + 1066, + 732, + 1100, + 322, + 1100 + ], + "score": 0.74, + "latex": "\\tilde { y } = \\mathsf { O u t s o u r c e } \\langle \\mathcal { C } ( F , x , \\mathsf { s t } ) , \\mathcal { S } ^ { \\ast } ( F ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1767, + 1296, + 1767, + 1296, + 1792, + 1283, + 1792 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1741, + 1265, + 1741, + 1265, + 1762, + 1249, + 1762 + ], + "score": 0.73, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1069, + 1100, + 1069, + 1100, + 1093, + 1087, + 1093 + ], + "score": 0.69, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1314, + 867, + 1338, + 867, + 1338, + 893, + 1314, + 893 + ], + "score": 0.64, + "latex": "\\perp" + }, + { + "category_id": 13, + "poly": [ + 1233, + 952, + 1314, + 952, + 1314, + 988, + 1233, + 988 + ], + "score": 0.56, + "latex": "( F , 1 ^ { \\lambda } )" + }, + { + "category_id": 13, + "poly": [ + 392, + 1664, + 408, + 1664, + 408, + 1685, + 392, + 1685 + ], + "score": 0.53, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 273, + 788, + 309, + 788, + 309, + 814, + 273, + 814 + ], + "score": 0.34, + "latex": "\\mathtt { s t }" + }, + { + "category_id": 13, + "poly": [ + 573, + 1567, + 661, + 1567, + 661, + 1595, + 573, + 1595 + ], + "score": 0.32, + "latex": "\\mathrm { s t ~ ~ }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 952, + 1316, + 952, + 1316, + 988, + 1022, + 988 + ], + "score": 0.29, + "latex": "\\begin{array} { r l r } { \\mathsf { s t } } & { { } \\gets } & { \\mathsf { P r e p r o c } ( F , 1 ^ { \\lambda } ) } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1939.0, + 805.0, + 1939.0, + 805.0, + 1977.0, + 767.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 529.0, + 963.0, + 529.0, + 963.0, + 574.0, + 229.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1701.0, + 1007.0, + 1701.0, + 1007.0, + 1742.0, + 230.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1701.0, + 1328.0, + 1701.0, + 1328.0, + 1742.0, + 1040.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1701.0, + 1470.0, + 1701.0, + 1470.0, + 1742.0, + 1361.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1733.0, + 309.0, + 1733.0, + 309.0, + 1771.0, + 231.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1733.0, + 1248.0, + 1733.0, + 1248.0, + 1771.0, + 606.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1733.0, + 1470.0, + 1733.0, + 1470.0, + 1771.0, + 1266.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1762.0, + 765.0, + 1762.0, + 765.0, + 1800.0, + 229.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1762.0, + 1282.0, + 1762.0, + 1282.0, + 1800.0, + 840.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1762.0, + 1472.0, + 1762.0, + 1472.0, + 1800.0, + 1297.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1795.0, + 386.0, + 1795.0, + 386.0, + 1832.0, + 230.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1795.0, + 498.0, + 1795.0, + 498.0, + 1832.0, + 425.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1795.0, + 769.0, + 1795.0, + 769.0, + 1832.0, + 529.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1795.0, + 1005.0, + 1795.0, + 1005.0, + 1832.0, + 795.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1795.0, + 1402.0, + 1795.0, + 1402.0, + 1832.0, + 1129.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1462.0, + 1795.0, + 1472.0, + 1795.0, + 1472.0, + 1832.0, + 1462.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1824.0, + 740.0, + 1824.0, + 740.0, + 1862.0, + 231.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1824.0, + 1470.0, + 1824.0, + 1470.0, + 1862.0, + 1149.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1854.0, + 678.0, + 1854.0, + 678.0, + 1893.0, + 229.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1854.0, + 984.0, + 1854.0, + 984.0, + 1893.0, + 695.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 390.0, + 1466.0, + 390.0, + 1466.0, + 423.0, + 233.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 423.0, + 1470.0, + 423.0, + 1470.0, + 457.0, + 232.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 454.0, + 1198.0, + 454.0, + 1198.0, + 487.0, + 232.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1560.0, + 572.0, + 1560.0, + 572.0, + 1606.0, + 227.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1560.0, + 927.0, + 1560.0, + 927.0, + 1606.0, + 662.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1560.0, + 1469.0, + 1560.0, + 1469.0, + 1606.0, + 1149.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1593.0, + 1469.0, + 1593.0, + 1469.0, + 1632.0, + 229.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1625.0, + 1202.0, + 1625.0, + 1202.0, + 1664.0, + 229.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1625.0, + 1471.0, + 1625.0, + 1471.0, + 1664.0, + 1277.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1653.0, + 391.0, + 1653.0, + 391.0, + 1695.0, + 228.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1653.0, + 810.0, + 1653.0, + 810.0, + 1695.0, + 409.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1653.0, + 1100.0, + 1653.0, + 1100.0, + 1695.0, + 834.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1653.0, + 1147.0, + 1653.0, + 1147.0, + 1695.0, + 1127.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1416.0, + 1126.0, + 1416.0, + 1126.0, + 1456.0, + 229.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1416.0, + 1297.0, + 1416.0, + 1297.0, + 1456.0, + 1148.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1416.0, + 1470.0, + 1416.0, + 1470.0, + 1456.0, + 1322.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1447.0, + 446.0, + 1447.0, + 446.0, + 1482.0, + 230.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1447.0, + 707.0, + 1447.0, + 707.0, + 1482.0, + 472.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1447.0, + 1469.0, + 1447.0, + 1469.0, + 1482.0, + 729.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1475.0, + 1473.0, + 1475.0, + 1473.0, + 1518.0, + 229.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1510.0, + 1166.0, + 1510.0, + 1166.0, + 1546.0, + 230.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 603.0, + 853.0, + 603.0, + 853.0, + 639.0, + 231.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 603.0, + 1013.0, + 603.0, + 1013.0, + 639.0, + 874.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 603.0, + 1168.0, + 603.0, + 1168.0, + 639.0, + 1036.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 603.0, + 1469.0, + 603.0, + 1469.0, + 639.0, + 1343.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 636.0, + 312.0, + 636.0, + 312.0, + 668.0, + 232.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 636.0, + 1047.0, + 636.0, + 1047.0, + 668.0, + 340.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 636.0, + 1267.0, + 636.0, + 1267.0, + 668.0, + 1074.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 636.0, + 1338.0, + 636.0, + 1338.0, + 668.0, + 1289.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 636.0, + 1370.0, + 636.0, + 1370.0, + 668.0, + 1361.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1262.0, + 1379.0, + 1262.0, + 1379.0, + 1298.0, + 231.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1262.0, + 1468.0, + 1262.0, + 1468.0, + 1298.0, + 1405.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1295.0, + 302.0, + 1295.0, + 302.0, + 1327.0, + 232.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1295.0, + 358.0, + 1295.0, + 358.0, + 1327.0, + 327.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1295.0, + 947.0, + 1295.0, + 947.0, + 1327.0, + 380.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1295.0, + 1316.0, + 1295.0, + 1316.0, + 1327.0, + 974.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1340.0, + 717.0, + 1340.0, + 717.0, + 1376.0, + 231.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1340.0, + 1471.0, + 1340.0, + 1471.0, + 1376.0, + 753.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1370.0, + 328.0, + 1370.0, + 328.0, + 1406.0, + 231.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1370.0, + 604.0, + 1370.0, + 604.0, + 1406.0, + 364.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1370.0, + 971.0, + 1370.0, + 971.0, + 1406.0, + 801.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1370.0, + 1267.0, + 1370.0, + 1267.0, + 1406.0, + 1178.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 1370.0, + 1400.0, + 1370.0, + 1400.0, + 1406.0, + 1388.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 674.0, + 1469.0, + 674.0, + 1469.0, + 715.0, + 230.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 708.0, + 1016.0, + 708.0, + 1016.0, + 742.0, + 232.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 708.0, + 1312.0, + 708.0, + 1312.0, + 742.0, + 1086.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 907.0, + 1062.0, + 907.0, + 1062.0, + 949.0, + 234.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 751.0, + 272.0, + 751.0, + 272.0, + 789.0, + 244.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 751.0, + 964.0, + 751.0, + 964.0, + 789.0, + 525.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 751.0, + 1469.0, + 751.0, + 1469.0, + 789.0, + 986.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 784.0, + 1368.0, + 784.0, + 1368.0, + 820.0, + 310.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 829.0, + 267.0, + 829.0, + 267.0, + 872.0, + 243.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 829.0, + 1310.0, + 829.0, + 1310.0, + 872.0, + 769.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 829.0, + 1469.0, + 829.0, + 1469.0, + 872.0, + 1332.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 865.0, + 271.0, + 865.0, + 271.0, + 901.0, + 267.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 865.0, + 697.0, + 865.0, + 697.0, + 901.0, + 387.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 865.0, + 964.0, + 865.0, + 964.0, + 901.0, + 719.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 865.0, + 1201.0, + 865.0, + 1201.0, + 901.0, + 1039.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 865.0, + 1313.0, + 865.0, + 1313.0, + 901.0, + 1223.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 865.0, + 1358.0, + 865.0, + 1358.0, + 901.0, + 1339.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 1190.0, + 707.0, + 1190.0, + 707.0, + 1229.0, + 245.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1190.0, + 1231.0, + 1190.0, + 1231.0, + 1229.0, + 729.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1190.0, + 1380.0, + 1190.0, + 1380.0, + 1229.0, + 1253.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1463.0, + 1190.0, + 1472.0, + 1190.0, + 1472.0, + 1229.0, + 1463.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1029.0, + 509.0, + 1029.0, + 509.0, + 1072.0, + 243.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1029.0, + 665.0, + 1029.0, + 665.0, + 1072.0, + 592.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1029.0, + 1251.0, + 1029.0, + 1251.0, + 1072.0, + 744.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1029.0, + 1467.0, + 1029.0, + 1467.0, + 1072.0, + 1287.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 270.0, + 1064.0, + 321.0, + 1064.0, + 321.0, + 1101.0, + 270.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1064.0, + 782.0, + 1064.0, + 782.0, + 1101.0, + 733.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1064.0, + 1086.0, + 1064.0, + 1086.0, + 1101.0, + 955.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1064.0, + 1112.0, + 1064.0, + 1112.0, + 1101.0, + 1101.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1113.0, + 537.0, + 1113.0, + 537.0, + 1150.0, + 248.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1113.0, + 700.0, + 1113.0, + 700.0, + 1150.0, + 620.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1113.0, + 1222.0, + 1113.0, + 1222.0, + 1150.0, + 814.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1113.0, + 1402.0, + 1113.0, + 1402.0, + 1150.0, + 1258.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1438.0, + 1113.0, + 1465.0, + 1113.0, + 1465.0, + 1150.0, + 1438.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 271.0, + 1142.0, + 393.0, + 1142.0, + 393.0, + 1181.0, + 271.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1142.0, + 800.0, + 1142.0, + 800.0, + 1181.0, + 633.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1142.0, + 1465.0, + 1142.0, + 1465.0, + 1181.0, + 1048.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 245.0, + 945.0, + 570.0, + 945.0, + 570.0, + 993.0, + 245.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 945.0, + 768.0, + 945.0, + 768.0, + 993.0, + 699.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 945.0, + 1021.0, + 945.0, + 1021.0, + 993.0, + 890.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 945.0, + 1388.0, + 945.0, + 1388.0, + 993.0, + 1317.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 268.0, + 979.0, + 392.0, + 979.0, + 392.0, + 1023.0, + 268.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 979.0, + 695.0, + 979.0, + 695.0, + 1023.0, + 619.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 979.0, + 824.0, + 979.0, + 824.0, + 1023.0, + 810.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 529.0, + 963.0, + 529.0, + 963.0, + 574.0, + 229.0, + 574.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 1182, + 1466, + 1182, + 1466, + 1428, + 234, + 1428 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 235, + 1703, + 1466, + 1703, + 1466, + 1889, + 235, + 1889 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 234, + 390, + 1468, + 390, + 1468, + 545, + 234, + 545 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 234, + 1043, + 1469, + 1043, + 1469, + 1166, + 234, + 1166 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 236, + 1594, + 1467, + 1594, + 1467, + 1689, + 236, + 1689 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 236, + 1456, + 1467, + 1456, + 1467, + 1581, + 236, + 1581 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 235, + 575, + 1463, + 575, + 1463, + 637, + 235, + 637 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 751, + 236, + 751, + 265, + 235, + 265 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 239, + 968, + 1210, + 968, + 1210, + 1005, + 239, + 1005 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 232, + 883, + 1261, + 883, + 1261, + 916, + 232, + 916 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 799, + 1942, + 799, + 1967, + 772, + 1967 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 241, + 651, + 1462, + 651, + 1462, + 715, + 241, + 715 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 248, + 725, + 1337, + 725, + 1337, + 869, + 248, + 869 + ], + "score": 0.809 + }, + { + "category_id": 2, + "poly": [ + 1438, + 884, + 1466, + 884, + 1466, + 913, + 1438, + 913 + ], + "score": 0.762 + }, + { + "category_id": 13, + "poly": [ + 632, + 798, + 745, + 798, + 745, + 832, + 632, + 832 + ], + "score": 0.93, + "latex": "y = F ( x )" + }, + { + "category_id": 13, + "poly": [ + 894, + 454, + 1038, + 454, + 1038, + 484, + 894, + 484 + ], + "score": 0.92, + "latex": "\\tilde { x } _ { i } = x _ { i } + r _ { i }" + }, + { + "category_id": 13, + "poly": [ + 393, + 723, + 588, + 723, + 588, + 759, + 393, + 759 + ], + "score": 0.92, + "latex": "\\langle { \\mathcal { C } } ( x , { \\mathrm { s t } } ) , S ( F ) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1826, + 1386, + 1826, + 1386, + 1856, + 1288, + 1856 + ], + "score": 0.9, + "latex": "4 \\times - 2 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 461, + 1794, + 863, + 1794, + 863, + 1826, + 461, + 1826 + ], + "score": 0.89, + "latex": "1 0 \\% \\cdot 8 5 \\mathrm { W } + 9 0 \\% \\cdot 3 0 \\mathrm { W } = 3 5 . 5 \\mathrm { W } ." + }, + { + "category_id": 13, + "poly": [ + 744, + 1734, + 798, + 1734, + 798, + 1764, + 744, + 1764 + ], + "score": 0.89, + "latex": "1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1261, + 392, + 1292, + 392, + 1292, + 424, + 1261, + 424 + ], + "score": 0.89, + "latex": "x _ { 1 } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 776, + 393, + 810, + 393, + 810, + 420, + 776, + 420 + ], + "score": 0.87, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1857, + 1152, + 1857, + 1152, + 1887, + 1012, + 1887 + ], + "score": 0.87, + "latex": "3 . 4 \\times - 1 7 . 1 \\times" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1107, + 1081, + 1107, + 1081, + 1135, + 1028, + 1135 + ], + "score": 0.87, + "latex": "5 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 302, + 514, + 336, + 514, + 336, + 542, + 302, + 542 + ], + "score": 0.87, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 990, + 1628, + 1042, + 1628, + 1042, + 1656, + 990, + 1656 + ], + "score": 0.87, + "latex": "5 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 499, + 484, + 534, + 484, + 534, + 512, + 499, + 512 + ], + "score": 0.86, + "latex": "S ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 232, + 1658, + 285, + 1658, + 285, + 1688, + 232, + 1688 + ], + "score": 0.86, + "latex": "1 8 \\times" + }, + { + "category_id": 13, + "poly": [ + 1177, + 396, + 1209, + 396, + 1209, + 422, + 1177, + 422 + ], + "score": 0.85, + "latex": "x _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1137, + 1350, + 1137, + 1350, + 1166, + 1298, + 1166 + ], + "score": 0.85, + "latex": "5 6 \\times" + }, + { + "category_id": 13, + "poly": [ + 262, + 487, + 290, + 487, + 290, + 514, + 262, + 514 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1405, + 427, + 1431, + 427, + 1431, + 453, + 1405, + 453 + ], + "score": 0.84, + "latex": "r _ { i }" + }, + { + "category_id": 13, + "poly": [ + 906, + 684, + 931, + 684, + 931, + 710, + 906, + 710 + ], + "score": 0.83, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 995, + 684, + 1017, + 684, + 1017, + 710, + 995, + 710 + ], + "score": 0.8, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 404, + 766, + 423, + 766, + 423, + 788, + 404, + 788 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 969, + 839, + 994, + 839, + 994, + 864, + 969, + 864 + ], + "score": 0.78, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1035, + 838, + 1055, + 838, + 1055, + 864, + 1035, + 864 + ], + "score": 0.78, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 488, + 841, + 507, + 841, + 507, + 869, + 488, + 869 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 958, + 886, + 980, + 886, + 980, + 911, + 958, + 911 + ], + "score": 0.78, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1093, + 578, + 1113, + 578, + 1113, + 603, + 1093, + 603 + ], + "score": 0.78, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 1234, + 577, + 1257, + 577, + 1257, + 603, + 1234, + 603 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1339, + 1550, + 1360, + 1550, + 1360, + 1577, + 1339, + 1577 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 898, + 607, + 921, + 607, + 921, + 634, + 898, + 634 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 484, + 653, + 505, + 653, + 505, + 681, + 484, + 681 + ], + "score": 0.69, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 439, + 484, + 460, + 484, + 460, + 512, + 439, + 512 + ], + "score": 0.63, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 272, + 652, + 465, + 652, + 465, + 685, + 272, + 685 + ], + "score": 0.56, + "latex": "\\mathsf { s t } \\gets \\mathsf { P r e p r o c ( ) }" + }, + { + "category_id": 13, + "poly": [ + 602, + 453, + 623, + 453, + 623, + 480, + 602, + 480 + ], + "score": 0.41, + "latex": "\\mathbb { F }" + }, + { + "category_id": 13, + "poly": [ + 311, + 761, + 332, + 761, + 332, + 789, + 311, + 789 + ], + "score": 0.4, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1396, + 954, + 1396, + 954, + 1426, + 866, + 1426 + ], + "score": 0.29, + "latex": "3 0 0 \\mathrm { M B }" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 965.0, + 1215.0, + 965.0, + 1215.0, + 1010.0, + 229.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1939.0, + 804.0, + 1939.0, + 804.0, + 1977.0, + 768.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1442.0, + 888.0, + 1466.0, + 888.0, + 1466.0, + 914.0, + 1442.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1182.0, + 1469.0, + 1182.0, + 1469.0, + 1216.0, + 231.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1213.0, + 1470.0, + 1213.0, + 1470.0, + 1251.0, + 230.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1244.0, + 1469.0, + 1244.0, + 1469.0, + 1278.0, + 230.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1275.0, + 1470.0, + 1275.0, + 1470.0, + 1309.0, + 230.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1302.0, + 1472.0, + 1302.0, + 1472.0, + 1340.0, + 228.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1336.0, + 1469.0, + 1336.0, + 1469.0, + 1370.0, + 230.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1364.0, + 1470.0, + 1364.0, + 1470.0, + 1401.0, + 228.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1397.0, + 865.0, + 1397.0, + 865.0, + 1431.0, + 231.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1397.0, + 1460.0, + 1397.0, + 1460.0, + 1431.0, + 955.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1704.0, + 1467.0, + 1704.0, + 1467.0, + 1736.0, + 232.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1733.0, + 743.0, + 1733.0, + 743.0, + 1769.0, + 228.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1733.0, + 1469.0, + 1733.0, + 1469.0, + 1769.0, + 799.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1763.0, + 1470.0, + 1763.0, + 1470.0, + 1800.0, + 229.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1796.0, + 460.0, + 1796.0, + 460.0, + 1829.0, + 231.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1796.0, + 1469.0, + 1796.0, + 1469.0, + 1829.0, + 864.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1824.0, + 1287.0, + 1824.0, + 1287.0, + 1862.0, + 231.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 1824.0, + 1469.0, + 1824.0, + 1469.0, + 1862.0, + 1387.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1857.0, + 1011.0, + 1857.0, + 1011.0, + 1890.0, + 232.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1890.0, + 1153.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 390.0, + 775.0, + 390.0, + 775.0, + 428.0, + 230.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 390.0, + 1176.0, + 390.0, + 1176.0, + 428.0, + 811.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 390.0, + 1260.0, + 390.0, + 1260.0, + 428.0, + 1210.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 390.0, + 1471.0, + 390.0, + 1471.0, + 428.0, + 1293.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 420.0, + 1404.0, + 420.0, + 1404.0, + 457.0, + 230.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1432.0, + 420.0, + 1468.0, + 420.0, + 1468.0, + 457.0, + 1432.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 452.0, + 601.0, + 452.0, + 601.0, + 489.0, + 230.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 452.0, + 893.0, + 452.0, + 893.0, + 489.0, + 624.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 452.0, + 1471.0, + 452.0, + 1471.0, + 489.0, + 1039.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 482.0, + 261.0, + 482.0, + 261.0, + 519.0, + 230.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 482.0, + 438.0, + 482.0, + 438.0, + 519.0, + 291.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 482.0, + 498.0, + 482.0, + 498.0, + 519.0, + 461.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 482.0, + 1472.0, + 482.0, + 1472.0, + 519.0, + 535.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 510.0, + 301.0, + 510.0, + 301.0, + 549.0, + 227.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 510.0, + 1332.0, + 510.0, + 1332.0, + 549.0, + 337.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1439.0, + 515.0, + 1469.0, + 515.0, + 1469.0, + 545.0, + 1439.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1045.0, + 1470.0, + 1045.0, + 1470.0, + 1079.0, + 231.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1071.0, + 1468.0, + 1071.0, + 1468.0, + 1112.0, + 230.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1103.0, + 1027.0, + 1103.0, + 1027.0, + 1141.0, + 230.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1103.0, + 1472.0, + 1103.0, + 1472.0, + 1141.0, + 1082.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1132.0, + 1297.0, + 1132.0, + 1297.0, + 1173.0, + 227.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1132.0, + 1448.0, + 1132.0, + 1448.0, + 1173.0, + 1351.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1594.0, + 1470.0, + 1594.0, + 1470.0, + 1632.0, + 230.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1623.0, + 989.0, + 1623.0, + 989.0, + 1663.0, + 230.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1623.0, + 1470.0, + 1623.0, + 1470.0, + 1663.0, + 1043.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1658.0, + 1129.0, + 1658.0, + 1129.0, + 1692.0, + 286.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1455.0, + 1468.0, + 1455.0, + 1468.0, + 1495.0, + 230.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1488.0, + 1470.0, + 1488.0, + 1470.0, + 1523.0, + 230.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1517.0, + 1470.0, + 1517.0, + 1470.0, + 1552.0, + 232.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1551.0, + 1338.0, + 1551.0, + 1338.0, + 1582.0, + 230.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1551.0, + 1370.0, + 1551.0, + 1370.0, + 1582.0, + 1361.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 574.0, + 1092.0, + 574.0, + 1092.0, + 610.0, + 231.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 574.0, + 1233.0, + 574.0, + 1233.0, + 610.0, + 1114.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 574.0, + 1469.0, + 574.0, + 1469.0, + 610.0, + 1258.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 603.0, + 897.0, + 603.0, + 897.0, + 641.0, + 228.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 603.0, + 943.0, + 603.0, + 943.0, + 641.0, + 922.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 881.0, + 957.0, + 881.0, + 957.0, + 919.0, + 229.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 881.0, + 1262.0, + 881.0, + 1262.0, + 919.0, + 981.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 654.0, + 271.0, + 654.0, + 271.0, + 686.0, + 247.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 654.0, + 483.0, + 654.0, + 483.0, + 686.0, + 466.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 654.0, + 1468.0, + 654.0, + 1468.0, + 686.0, + 506.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 682.0, + 905.0, + 682.0, + 905.0, + 716.0, + 267.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 682.0, + 994.0, + 682.0, + 994.0, + 716.0, + 932.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 682.0, + 1414.0, + 682.0, + 1414.0, + 716.0, + 1018.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 719.0, + 392.0, + 719.0, + 392.0, + 763.0, + 247.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 719.0, + 599.0, + 719.0, + 599.0, + 763.0, + 589.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 760.0, + 310.0, + 760.0, + 310.0, + 792.0, + 282.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 760.0, + 403.0, + 760.0, + 403.0, + 792.0, + 333.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 760.0, + 825.0, + 760.0, + 825.0, + 792.0, + 424.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 796.0, + 631.0, + 796.0, + 631.0, + 834.0, + 279.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 796.0, + 906.0, + 796.0, + 906.0, + 834.0, + 746.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 833.0, + 487.0, + 833.0, + 487.0, + 872.0, + 281.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 833.0, + 968.0, + 833.0, + 968.0, + 872.0, + 508.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 833.0, + 1034.0, + 833.0, + 1034.0, + 872.0, + 995.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 833.0, + 1333.0, + 833.0, + 1333.0, + 872.0, + 1056.0, + 872.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 258, + 1636, + 1436, + 1636, + 1436, + 1860, + 258, + 1860 + ], + "score": 0.98, + "html": "
AccuracyQuantized
ModelTop 1Top5Top1Top 5LayersParameters (M)Size of layer inputs/outputs (M)
VGG1671.090.070.689.516138.49.1 / 13.6
VGG16 (no top)=-1314.79.1/13.5
MobileNet70.789.670.589.5284.25.5/ 5.0
MobileNet (fused)=1154.23.6/3.1
ResNet 5076.992.476.492.25025.510.0 /10.4
" + }, + { + "category_id": 1, + "poly": [ + 233, + 833, + 1468, + 833, + 1468, + 1021, + 233, + 1021 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 234, + 664, + 1468, + 664, + 1468, + 820, + 234, + 820 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 234, + 1196, + 1467, + 1196, + 1467, + 1350, + 234, + 1350 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 234, + 1365, + 1467, + 1365, + 1467, + 1490, + 234, + 1490 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 233, + 480, + 1468, + 480, + 1468, + 574, + 233, + 574 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 233, + 587, + 1465, + 587, + 1465, + 652, + 233, + 652 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 266, + 235, + 266 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 233, + 386, + 976, + 386, + 976, + 424, + 233, + 424 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 236, + 1103, + 703, + 1103, + 703, + 1139, + 236, + 1139 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 771, + 1942, + 801, + 1942, + 801, + 1968, + 771, + 1968 + ], + "score": 0.87 + }, + { + "category_id": 6, + "poly": [ + 235, + 1553, + 1465, + 1553, + 1465, + 1617, + 235, + 1617 + ], + "score": 0.718 + }, + { + "category_id": 13, + "poly": [ + 411, + 988, + 553, + 988, + 553, + 1021, + 411, + 1021 + ], + "score": 0.93, + "latex": "( h \\cdot w ) \\times c _ { \\mathrm { i n } }" + }, + { + "category_id": 13, + "poly": [ + 292, + 618, + 472, + 618, + 472, + 653, + 292, + 653 + ], + "score": 0.93, + "latex": "f _ { \\mathrm { F C } } ( \\dot { \\boldsymbol { x } } ) = \\boldsymbol { x } ^ { \\top } \\boldsymbol { W }" + }, + { + "category_id": 13, + "poly": [ + 676, + 759, + 746, + 759, + 746, + 788, + 676, + 788 + ], + "score": 0.92, + "latex": "k \\times k" + }, + { + "category_id": 13, + "poly": [ + 761, + 989, + 927, + 989, + 927, + 1020, + 761, + 1020 + ], + "score": 0.92, + "latex": "h \\cdot w \\cdot c _ { \\mathrm { i n } } \\cdot c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 928, + 1186, + 928, + 1186, + 956, + 1024, + 956 + ], + "score": 0.91, + "latex": "k \\times k \\times 1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 233, + 697, + 382, + 697, + 382, + 731, + 233, + 731 + ], + "score": 0.91, + "latex": "\\mathsf { C o n v } ( x ; W )" + }, + { + "category_id": 13, + "poly": [ + 745, + 620, + 842, + 620, + 842, + 650, + 745, + 650 + ], + "score": 0.91, + "latex": "h _ { \\mathrm { i n } } \\cdot h _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 502, + 957, + 657, + 957, + 657, + 988, + 502, + 988 + ], + "score": 0.91, + "latex": "k ^ { 2 } \\cdot h \\cdot w \\cdot c _ { \\mathrm { i n } }" + }, + { + "category_id": 13, + "poly": [ + 234, + 897, + 351, + 897, + 351, + 930, + 234, + 930 + ], + "score": 0.91, + "latex": "f _ { \\mathrm { d p - c o n v } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 355, + 757, + 522, + 757, + 522, + 790, + 355, + 790 + ], + "score": 0.91, + "latex": "( \\bar { h } \\cdot w , k ^ { 2 } \\cdot c _ { \\mathrm { i n } } ) " + }, + { + "category_id": 13, + "poly": [ + 922, + 589, + 1049, + 589, + 1049, + 622, + 922, + 622 + ], + "score": 0.9, + "latex": "\\left( h _ { \\mathrm { i n } } \\times h _ { \\mathrm { o u t } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 974, + 898, + 1087, + 898, + 1087, + 930, + 974, + 930 + ], + "score": 0.9, + "latex": "f _ { \\mathrm { p t - c o n v } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 422, + 791, + 636, + 791, + 636, + 819, + 422, + 819 + ], + "score": 0.89, + "latex": "\\boldsymbol { k } ^ { 2 } \\cdot \\boldsymbol { h } \\cdot \\boldsymbol { w } \\cdot \\boldsymbol { c } _ { \\mathrm { i n } } \\cdot \\boldsymbol { c } _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 496, + 899, + 538, + 899, + 538, + 927, + 496, + 927 + ], + "score": 0.89, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 730, + 666, + 948, + 666, + 948, + 697, + 730, + 697 + ], + "score": 0.89, + "latex": "( k \\times k \\times c _ { \\mathrm { i n } } \\times c _ { \\mathrm { o u t } } )" + }, + { + "category_id": 13, + "poly": [ + 1232, + 897, + 1274, + 897, + 1274, + 927, + 1232, + 927 + ], + "score": 0.89, + "latex": "W _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 836, + 1081, + 836, + 1081, + 866, + 1039, + 866 + ], + "score": 0.89, + "latex": "W _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 591, + 1417, + 591, + 1417, + 620, + 1382, + 620 + ], + "score": 0.89, + "latex": "h _ { \\mathrm { i n } }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 836, + 1291, + 836, + 1291, + 868, + 1171, + 868 + ], + "score": 0.88, + "latex": "\\left( { c _ { \\mathrm { i n } } } \\times { c _ { \\mathrm { o u t } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 839, + 835, + 984, + 835, + 984, + 867, + 839, + 867 + ], + "score": 0.88, + "latex": "( k \\times k \\times c _ { \\mathrm { i n } } )" + }, + { + "category_id": 13, + "poly": [ + 881, + 868, + 1042, + 868, + 1042, + 898, + 881, + 898 + ], + "score": 0.88, + "latex": "( h \\times w \\times c _ { \\mathrm { o u t } } )" + }, + { + "category_id": 13, + "poly": [ + 543, + 591, + 584, + 591, + 584, + 621, + 543, + 621 + ], + "score": 0.88, + "latex": "f _ { \\mathrm { F C } }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1258, + 1214, + 1258, + 1214, + 1288, + 1151, + 1288 + ], + "score": 0.88, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 705, + 836, + 747, + 836, + 747, + 867, + 705, + 867 + ], + "score": 0.88, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 452, + 866, + 575, + 866, + 575, + 899, + 452, + 899 + ], + "score": 0.88, + "latex": "f _ { \\mathrm { s e p - c o n v } } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1343, + 666, + 1468, + 666, + 1468, + 700, + 1343, + 700 + ], + "score": 0.87, + "latex": "f _ { \\mathrm { c o n v } } ( x ) =" + }, + { + "category_id": 13, + "poly": [ + 1407, + 727, + 1434, + 727, + 1434, + 755, + 1407, + 755 + ], + "score": 0.86, + "latex": "x ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 494, + 931, + 526, + 931, + 526, + 957, + 494, + 957 + ], + "score": 0.86, + "latex": "c _ { \\mathrm { i n } }" + }, + { + "category_id": 13, + "poly": [ + 711, + 699, + 874, + 699, + 874, + 730, + 711, + 730 + ], + "score": 0.86, + "latex": "( h \\times w \\times c _ { \\mathrm { o u t } } )" + }, + { + "category_id": 13, + "poly": [ + 1177, + 666, + 1329, + 666, + 1329, + 700, + 1177, + 700 + ], + "score": 0.82, + "latex": "( h \\times w \\times c _ { \\mathrm { i n } } )" + }, + { + "category_id": 13, + "poly": [ + 286, + 866, + 440, + 866, + 440, + 899, + 286, + 899 + ], + "score": 0.79, + "latex": "( h \\times w \\times c _ { \\mathrm { i n } } )" + }, + { + "category_id": 13, + "poly": [ + 1086, + 733, + 1106, + 733, + 1106, + 755, + 1086, + 755 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1069, + 673, + 1088, + 673, + 1088, + 694, + 1069, + 694 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1206, + 596, + 1225, + 596, + 1225, + 617, + 1206, + 617 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1415, + 842, + 1434, + 842, + 1434, + 863, + 1415, + 863 + ], + "score": 0.71, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 607, + 667, + 640, + 667, + 640, + 695, + 607, + 695 + ], + "score": 0.69, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1293, + 759, + 1326, + 759, + 1326, + 786, + 1293, + 786 + ], + "score": 0.64, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 714, + 590, + 746, + 590, + 746, + 618, + 714, + 618 + ], + "score": 0.61, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 382.0, + 979.0, + 382.0, + 979.0, + 429.0, + 229.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1099.0, + 708.0, + 1099.0, + 708.0, + 1144.0, + 229.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1938.0, + 805.0, + 1938.0, + 805.0, + 1977.0, + 767.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1550.0, + 1471.0, + 1550.0, + 1471.0, + 1589.0, + 228.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1585.0, + 858.0, + 1585.0, + 858.0, + 1617.0, + 232.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 834.0, + 704.0, + 834.0, + 704.0, + 871.0, + 230.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 834.0, + 838.0, + 834.0, + 838.0, + 871.0, + 748.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 834.0, + 1038.0, + 834.0, + 1038.0, + 871.0, + 985.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 834.0, + 1170.0, + 834.0, + 1170.0, + 871.0, + 1082.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 834.0, + 1414.0, + 834.0, + 1414.0, + 871.0, + 1292.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 834.0, + 1471.0, + 834.0, + 1471.0, + 871.0, + 1435.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 864.0, + 285.0, + 864.0, + 285.0, + 906.0, + 229.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 864.0, + 451.0, + 864.0, + 451.0, + 906.0, + 441.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 864.0, + 880.0, + 864.0, + 880.0, + 906.0, + 576.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 864.0, + 1471.0, + 864.0, + 1471.0, + 906.0, + 1043.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 891.0, + 233.0, + 891.0, + 233.0, + 937.0, + 229.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 891.0, + 495.0, + 891.0, + 495.0, + 937.0, + 352.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 891.0, + 973.0, + 891.0, + 973.0, + 937.0, + 539.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 891.0, + 1231.0, + 891.0, + 1231.0, + 937.0, + 1088.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 891.0, + 1473.0, + 891.0, + 1473.0, + 937.0, + 1275.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 925.0, + 493.0, + 925.0, + 493.0, + 963.0, + 229.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 925.0, + 1023.0, + 925.0, + 1023.0, + 963.0, + 527.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 925.0, + 1469.0, + 925.0, + 1469.0, + 963.0, + 1187.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 954.0, + 501.0, + 954.0, + 501.0, + 993.0, + 229.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 954.0, + 1469.0, + 954.0, + 1469.0, + 993.0, + 658.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 987.0, + 410.0, + 987.0, + 410.0, + 1025.0, + 230.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 987.0, + 760.0, + 987.0, + 760.0, + 1025.0, + 554.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 987.0, + 1111.0, + 987.0, + 1111.0, + 1025.0, + 928.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 665.0, + 606.0, + 665.0, + 606.0, + 702.0, + 230.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 665.0, + 729.0, + 665.0, + 729.0, + 702.0, + 641.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 665.0, + 1068.0, + 665.0, + 1068.0, + 702.0, + 949.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 665.0, + 1176.0, + 665.0, + 1176.0, + 702.0, + 1089.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 665.0, + 1342.0, + 665.0, + 1342.0, + 702.0, + 1330.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 695.0, + 710.0, + 695.0, + 710.0, + 731.0, + 383.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 695.0, + 1471.0, + 695.0, + 1471.0, + 731.0, + 875.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 725.0, + 1085.0, + 725.0, + 1085.0, + 761.0, + 228.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 725.0, + 1406.0, + 725.0, + 1406.0, + 761.0, + 1107.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 725.0, + 1472.0, + 725.0, + 1472.0, + 761.0, + 1435.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 753.0, + 354.0, + 753.0, + 354.0, + 795.0, + 227.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 753.0, + 675.0, + 753.0, + 675.0, + 795.0, + 523.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 753.0, + 1292.0, + 753.0, + 1292.0, + 795.0, + 747.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 753.0, + 1474.0, + 753.0, + 1474.0, + 795.0, + 1327.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 785.0, + 421.0, + 785.0, + 421.0, + 826.0, + 229.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 785.0, + 819.0, + 785.0, + 819.0, + 826.0, + 637.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1196.0, + 1467.0, + 1196.0, + 1467.0, + 1229.0, + 231.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1225.0, + 1470.0, + 1225.0, + 1470.0, + 1264.0, + 228.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 1254.0, + 1150.0, + 1254.0, + 1150.0, + 1298.0, + 227.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 1254.0, + 1471.0, + 1254.0, + 1471.0, + 1298.0, + 1215.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1288.0, + 1471.0, + 1288.0, + 1471.0, + 1325.0, + 230.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1319.0, + 592.0, + 1319.0, + 592.0, + 1354.0, + 228.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1366.0, + 1468.0, + 1366.0, + 1468.0, + 1401.0, + 231.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1394.0, + 1470.0, + 1394.0, + 1470.0, + 1430.0, + 230.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1425.0, + 1468.0, + 1425.0, + 1468.0, + 1460.0, + 231.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1453.0, + 920.0, + 1453.0, + 920.0, + 1496.0, + 230.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 482.0, + 1468.0, + 482.0, + 1468.0, + 515.0, + 232.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 510.0, + 1469.0, + 510.0, + 1469.0, + 548.0, + 230.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 541.0, + 1255.0, + 541.0, + 1255.0, + 580.0, + 229.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 586.0, + 542.0, + 586.0, + 542.0, + 626.0, + 229.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 586.0, + 713.0, + 586.0, + 713.0, + 626.0, + 585.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 586.0, + 921.0, + 586.0, + 921.0, + 626.0, + 747.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 586.0, + 1205.0, + 586.0, + 1205.0, + 626.0, + 1050.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 586.0, + 1381.0, + 586.0, + 1381.0, + 626.0, + 1226.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1418.0, + 586.0, + 1471.0, + 586.0, + 1471.0, + 626.0, + 1418.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 618.0, + 291.0, + 618.0, + 291.0, + 654.0, + 230.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 618.0, + 744.0, + 618.0, + 744.0, + 654.0, + 473.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 618.0, + 1025.0, + 618.0, + 1025.0, + 654.0, + 843.0, + 654.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 739, + 1469, + 739, + 1469, + 960, + 234, + 960 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 234, + 572, + 1468, + 572, + 1468, + 726, + 234, + 726 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 233, + 1625, + 1468, + 1625, + 1468, + 1781, + 233, + 1781 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 234, + 461, + 1466, + 461, + 1466, + 555, + 234, + 555 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 235, + 1794, + 1466, + 1794, + 1466, + 1889, + 235, + 1889 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 234, + 1183, + 1463, + 1183, + 1463, + 1494, + 234, + 1494 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 234, + 1502, + 1466, + 1502, + 1466, + 1596, + 234, + 1596 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 238, + 1010, + 746, + 1010, + 746, + 1046, + 238, + 1046 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 235, + 236, + 752, + 236, + 752, + 265, + 235, + 265 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 230, + 1085, + 1469, + 1085, + 1469, + 1149, + 230, + 1149 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 231, + 386, + 1163, + 386, + 1163, + 423, + 231, + 423 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 799, + 1942, + 799, + 1966, + 772, + 1966 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 993, + 834, + 1175, + 834, + 1175, + 870, + 993, + 870 + ], + "score": 0.93, + "latex": "\\mathbb { S } = [ - 2 ^ { 1 9 } , 2 ^ { 1 9 } ]" + }, + { + "category_id": 13, + "poly": [ + 292, + 801, + 402, + 801, + 402, + 836, + 292, + 836 + ], + "score": 0.92, + "latex": "| \\mathbb { S } | = 2 ^ { 4 0 }" + }, + { + "category_id": 13, + "poly": [ + 375, + 865, + 532, + 865, + 532, + 895, + 375, + 895 + ], + "score": 0.91, + "latex": "2 ^ { 2 4 + 1 9 } = 2 ^ { 4 3 }" + }, + { + "category_id": 13, + "poly": [ + 1369, + 570, + 1460, + 570, + 1460, + 608, + 1369, + 608 + ], + "score": 0.91, + "latex": "p \\lessapprox 2 ^ { 2 4 }" + }, + { + "category_id": 13, + "poly": [ + 655, + 837, + 728, + 837, + 728, + 865, + 655, + 865 + ], + "score": 0.9, + "latex": "k = 2" + }, + { + "category_id": 13, + "poly": [ + 763, + 739, + 820, + 739, + 820, + 770, + 763, + 770 + ], + "score": 0.9, + "latex": "2 ^ { - 4 0 }" + }, + { + "category_id": 13, + "poly": [ + 593, + 524, + 628, + 524, + 628, + 558, + 593, + 558 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 433, + 635, + 468, + 635, + 468, + 669, + 433, + 669 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 894, + 804, + 929, + 804, + 929, + 837, + 894, + 837 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 463, + 1260, + 463, + 1260, + 497, + 1225, + 497 + ], + "score": 0.89, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 574, + 1318, + 574, + 1318, + 607, + 1284, + 607 + ], + "score": 0.88, + "latex": "\\mathbb { Z } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1826, + 1128, + 1826, + 1128, + 1856, + 1067, + 1856 + ], + "score": 0.88, + "latex": "8 . 9 \\times" + }, + { + "category_id": 13, + "poly": [ + 819, + 865, + 860, + 865, + 860, + 895, + 819, + 895 + ], + "score": 0.87, + "latex": "2 ^ { 1 0 }" + }, + { + "category_id": 13, + "poly": [ + 520, + 834, + 577, + 834, + 577, + 867, + 520, + 867 + ], + "score": 0.86, + "latex": "( 2 ^ { 5 3 } )" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1826, + 1252, + 1826, + 1252, + 1856, + 1179, + 1856 + ], + "score": 0.86, + "latex": "1 9 . 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 391, + 774, + 410, + 774, + 410, + 800, + 391, + 800 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 744, + 898, + 763, + 898, + 763, + 924, + 744, + 924 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1062, + 897, + 1101, + 897, + 1101, + 930, + 1062, + 930 + ], + "score": 0.76, + "latex": "| \\mathbb { S } | )" + }, + { + "category_id": 13, + "poly": [ + 982, + 804, + 1003, + 804, + 1003, + 831, + 982, + 831 + ], + "score": 0.74, + "latex": "\\mathbb { S }" + }, + { + "category_id": 13, + "poly": [ + 895, + 773, + 916, + 773, + 916, + 800, + 895, + 800 + ], + "score": 0.72, + "latex": "\\mathbb { S }" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1184.0, + 508.0, + 1184.0, + 508.0, + 1211.0, + 364.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1184.0, + 912.0, + 1184.0, + 912.0, + 1211.0, + 796.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1186.0, + 1372.0, + 1186.0, + 1372.0, + 1213.0, + 1156.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1217.0, + 486.0, + 1217.0, + 486.0, + 1240.0, + 340.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1202.0, + 612.0, + 1202.0, + 612.0, + 1229.0, + 573.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1209.0, + 717.0, + 1209.0, + 717.0, + 1239.0, + 664.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1216.0, + 902.0, + 1216.0, + 902.0, + 1239.0, + 760.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1221.0, + 1026.0, + 1221.0, + 1026.0, + 1248.0, + 984.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1223.0, + 1150.0, + 1223.0, + 1150.0, + 1233.0, + 1135.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1217.0, + 1300.0, + 1217.0, + 1300.0, + 1240.0, + 1154.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1219.0, + 1398.0, + 1219.0, + 1398.0, + 1246.0, + 1366.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1234.0, + 296.0, + 1234.0, + 296.0, + 1264.0, + 250.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1231.0, + 471.0, + 1231.0, + 471.0, + 1273.0, + 339.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1247.0, + 570.0, + 1247.0, + 570.0, + 1274.0, + 538.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1240.0, + 717.0, + 1240.0, + 717.0, + 1270.0, + 664.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1233.0, + 923.0, + 1233.0, + 923.0, + 1270.0, + 759.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1236.0, + 991.0, + 1236.0, + 991.0, + 1261.0, + 950.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1229.0, + 1123.0, + 1229.0, + 1123.0, + 1259.0, + 1078.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1231.0, + 1318.0, + 1231.0, + 1318.0, + 1273.0, + 1131.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1239.0, + 1441.0, + 1239.0, + 1441.0, + 1266.0, + 1402.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 219.0, + 1270.0, + 310.0, + 1270.0, + 310.0, + 1388.0, + 219.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1284.0, + 335.0, + 1284.0, + 335.0, + 1300.0, + 317.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1339.0, + 518.0, + 1339.0, + 518.0, + 1361.0, + 489.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1309.0, + 551.0, + 1309.0, + 551.0, + 1333.0, + 525.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1284.0, + 632.0, + 1284.0, + 632.0, + 1373.0, + 574.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1273.0, + 717.0, + 1273.0, + 717.0, + 1370.0, + 645.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1261.0, + 887.0, + 1261.0, + 887.0, + 1284.0, + 759.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1319.0, + 920.0, + 1319.0, + 920.0, + 1341.0, + 893.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1341.0, + 941.0, + 1341.0, + 941.0, + 1353.0, + 929.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1289.0, + 1044.0, + 1289.0, + 1044.0, + 1367.0, + 990.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1271.0, + 1120.0, + 1271.0, + 1120.0, + 1375.0, + 1062.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1259.0, + 1332.0, + 1259.0, + 1332.0, + 1358.0, + 1153.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1313.0, + 1380.0, + 1313.0, + 1380.0, + 1354.0, + 1337.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1386.0, + 1274.0, + 1474.0, + 1274.0, + 1474.0, + 1396.0, + 1386.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1387.0, + 295.0, + 1387.0, + 295.0, + 1467.0, + 250.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1370.0, + 573.0, + 1370.0, + 573.0, + 1497.0, + 307.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1367.0, + 613.0, + 1367.0, + 613.0, + 1394.0, + 576.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1368.0, + 717.0, + 1368.0, + 717.0, + 1460.0, + 673.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1360.0, + 1027.0, + 1360.0, + 1027.0, + 1485.0, + 722.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1353.0, + 1121.0, + 1353.0, + 1121.0, + 1464.0, + 1078.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1361.0, + 1399.0, + 1361.0, + 1399.0, + 1494.0, + 1135.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1240.5, + 617.0, + 1240.5, + 617.0, + 1272.5, + 569.0, + 1272.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1408.0, + 615.0, + 1408.0, + 615.0, + 1436.0, + 571.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.25, + 1407.5, + 1444.25, + 1407.5, + 1444.25, + 1433.5, + 1397.25, + 1433.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1418.5, + 844.0, + 1418.5, + 844.0, + 1445.5, + 796.0, + 1445.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1415.0, + 911.0, + 1415.0, + 911.0, + 1441.0, + 855.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1499.0, + 1467.0, + 1499.0, + 1467.0, + 1537.0, + 231.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1531.0, + 1470.0, + 1531.0, + 1470.0, + 1572.0, + 228.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1561.0, + 659.0, + 1561.0, + 659.0, + 1601.0, + 230.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1008.0, + 750.0, + 1008.0, + 750.0, + 1051.0, + 231.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 233.0, + 754.0, + 233.0, + 754.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 385.0, + 1167.0, + 385.0, + 1167.0, + 427.0, + 228.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1939.0, + 804.0, + 1939.0, + 804.0, + 1978.0, + 768.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 735.0, + 762.0, + 735.0, + 762.0, + 778.0, + 226.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 735.0, + 1473.0, + 735.0, + 1473.0, + 778.0, + 821.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 769.0, + 390.0, + 769.0, + 390.0, + 808.0, + 227.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 769.0, + 894.0, + 769.0, + 894.0, + 808.0, + 411.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 769.0, + 1472.0, + 769.0, + 1472.0, + 808.0, + 917.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 796.0, + 291.0, + 796.0, + 291.0, + 841.0, + 227.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 796.0, + 893.0, + 796.0, + 893.0, + 841.0, + 403.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 796.0, + 981.0, + 796.0, + 981.0, + 841.0, + 930.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 796.0, + 1469.0, + 796.0, + 1469.0, + 841.0, + 1004.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 226.0, + 828.0, + 519.0, + 828.0, + 519.0, + 877.0, + 226.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 828.0, + 654.0, + 828.0, + 654.0, + 877.0, + 578.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 828.0, + 992.0, + 828.0, + 992.0, + 877.0, + 729.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 828.0, + 1474.0, + 828.0, + 1474.0, + 877.0, + 1176.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 857.0, + 374.0, + 857.0, + 374.0, + 905.0, + 227.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 857.0, + 818.0, + 857.0, + 818.0, + 905.0, + 533.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 857.0, + 1474.0, + 857.0, + 1474.0, + 905.0, + 861.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 894.0, + 743.0, + 894.0, + 743.0, + 930.0, + 230.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 894.0, + 1061.0, + 894.0, + 1061.0, + 930.0, + 764.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 894.0, + 1469.0, + 894.0, + 1469.0, + 930.0, + 1102.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 927.0, + 1244.0, + 927.0, + 1244.0, + 963.0, + 230.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 568.0, + 1283.0, + 568.0, + 1283.0, + 611.0, + 227.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 568.0, + 1368.0, + 568.0, + 1368.0, + 611.0, + 1319.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1461.0, + 568.0, + 1472.0, + 568.0, + 1472.0, + 611.0, + 1461.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 603.0, + 1471.0, + 603.0, + 1471.0, + 640.0, + 230.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 633.0, + 432.0, + 633.0, + 432.0, + 669.0, + 228.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 633.0, + 1471.0, + 633.0, + 1471.0, + 669.0, + 469.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 664.0, + 1471.0, + 664.0, + 1471.0, + 701.0, + 230.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 691.0, + 1193.0, + 691.0, + 1193.0, + 731.0, + 229.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1626.0, + 1471.0, + 1626.0, + 1471.0, + 1660.0, + 230.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1654.0, + 1471.0, + 1654.0, + 1471.0, + 1694.0, + 228.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1684.0, + 1468.0, + 1684.0, + 1468.0, + 1722.0, + 230.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1715.0, + 1471.0, + 1715.0, + 1471.0, + 1754.0, + 229.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1747.0, + 1296.0, + 1747.0, + 1296.0, + 1786.0, + 228.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 463.0, + 1224.0, + 463.0, + 1224.0, + 496.0, + 233.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 463.0, + 1467.0, + 463.0, + 1467.0, + 496.0, + 1261.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 491.0, + 1470.0, + 491.0, + 1470.0, + 529.0, + 231.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 525.0, + 592.0, + 525.0, + 592.0, + 558.0, + 233.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 525.0, + 1413.0, + 525.0, + 1413.0, + 558.0, + 629.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 231.0, + 1791.0, + 1469.0, + 1791.0, + 1469.0, + 1832.0, + 231.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1823.0, + 1066.0, + 1823.0, + 1066.0, + 1863.0, + 228.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1823.0, + 1178.0, + 1823.0, + 1178.0, + 1863.0, + 1129.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1823.0, + 1470.0, + 1823.0, + 1470.0, + 1863.0, + 1253.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1855.0, + 1470.0, + 1855.0, + 1470.0, + 1893.0, + 232.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1085.0, + 1470.0, + 1085.0, + 1470.0, + 1121.0, + 232.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1116.0, + 1473.0, + 1116.0, + 1473.0, + 1149.0, + 229.0, + 1149.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 233, + 1053, + 1467, + 1053, + 1467, + 1239, + 233, + 1239 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 232, + 1252, + 1469, + 1252, + 1469, + 1438, + 232, + 1438 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 233, + 610, + 1468, + 610, + 1468, + 734, + 233, + 734 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 230, + 945, + 1470, + 945, + 1470, + 1039, + 230, + 1039 + ], + "score": 0.964 + }, + { + "category_id": 3, + "poly": [ + 251, + 385, + 1466, + 385, + 1466, + 595, + 251, + 595 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 230, + 769, + 1467, + 769, + 1467, + 833, + 230, + 833 + ], + "score": 0.948 + }, + { + "category_id": 4, + "poly": [ + 230, + 1813, + 1469, + 1813, + 1469, + 1877, + 230, + 1877 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 234, + 237, + 751, + 237, + 751, + 265, + 234, + 265 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 236, + 877, + 562, + 877, + 562, + 912, + 236, + 912 + ], + "score": 0.897 + }, + { + "category_id": 3, + "poly": [ + 397, + 1466, + 1298, + 1466, + 1298, + 1804, + 397, + 1804 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 771, + 1942, + 800, + 1942, + 800, + 1967, + 771, + 1967 + ], + "score": 0.863 + }, + { + "category_id": 13, + "poly": [ + 308, + 1208, + 368, + 1208, + 368, + 1237, + 308, + 1237 + ], + "score": 0.87, + "latex": "1 . 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 823, + 801, + 883, + 801, + 883, + 830, + 823, + 830 + ], + "score": 0.87, + "latex": "3 . 9 \\times" + }, + { + "category_id": 13, + "poly": [ + 933, + 801, + 994, + 801, + 994, + 831, + 933, + 831 + ], + "score": 0.86, + "latex": "8 . 1 \\times" + }, + { + "category_id": 13, + "poly": [ + 1309, + 568, + 1331, + 568, + 1331, + 590, + 1309, + 590 + ], + "score": 0.41, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 608.0, + 1469.0, + 608.0, + 1469.0, + 647.0, + 230.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 638.0, + 1471.0, + 638.0, + 1471.0, + 679.0, + 229.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 672.0, + 1469.0, + 672.0, + 1469.0, + 707.0, + 232.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 700.0, + 1147.0, + 700.0, + 1147.0, + 738.0, + 230.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 385.0, + 546.0, + 385.0, + 546.0, + 421.0, + 448.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 386.0, + 954.0, + 386.0, + 954.0, + 418.0, + 824.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 385.0, + 1387.0, + 385.0, + 1387.0, + 419.0, + 1169.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 265.0, + 420.0, + 343.0, + 420.0, + 343.0, + 538.0, + 265.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 451.0, + 386.0, + 451.0, + 386.0, + 475.0, + 371.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 443.0, + 437.0, + 443.0, + 437.0, + 468.0, + 415.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 439.0, + 486.0, + 439.0, + 486.0, + 473.0, + 460.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 411.0, + 639.0, + 411.0, + 639.0, + 482.0, + 490.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 422.0, + 737.0, + 422.0, + 737.0, + 494.0, + 680.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 464.0, + 789.0, + 464.0, + 789.0, + 508.0, + 749.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 458.0, + 835.0, + 458.0, + 835.0, + 493.0, + 797.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 435.0, + 980.0, + 435.0, + 980.0, + 515.0, + 845.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 457.0, + 1024.0, + 457.0, + 1024.0, + 491.0, + 990.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 422.0, + 1128.0, + 422.0, + 1128.0, + 494.0, + 1072.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 462.0, + 1179.0, + 462.0, + 1179.0, + 508.0, + 1141.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 458.0, + 1226.0, + 458.0, + 1226.0, + 484.0, + 1189.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 414.0, + 1328.0, + 414.0, + 1328.0, + 490.0, + 1235.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 440.0, + 1372.0, + 440.0, + 1372.0, + 480.0, + 1330.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 444.0, + 1417.0, + 444.0, + 1417.0, + 486.0, + 1379.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1435.0, + 414.0, + 1465.0, + 414.0, + 1465.0, + 552.0, + 1435.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 497.0, + 343.0, + 497.0, + 343.0, + 532.0, + 290.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 498.0, + 735.0, + 498.0, + 735.0, + 532.0, + 694.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 503.0, + 890.0, + 503.0, + 890.0, + 539.0, + 785.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 498.0, + 1031.0, + 498.0, + 1031.0, + 536.0, + 937.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 498.0, + 1127.0, + 498.0, + 1127.0, + 532.0, + 1086.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 521.0, + 412.0, + 521.0, + 412.0, + 550.0, + 351.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 518.0, + 794.0, + 518.0, + 794.0, + 548.0, + 745.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 518.0, + 1183.0, + 518.0, + 1183.0, + 548.0, + 1135.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 536.0, + 342.0, + 536.0, + 342.0, + 569.0, + 304.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 537.0, + 734.0, + 537.0, + 734.0, + 569.0, + 695.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 536.0, + 1124.0, + 536.0, + 1124.0, + 569.0, + 1087.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 562.0, + 498.0, + 562.0, + 498.0, + 594.0, + 260.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 563.0, + 617.0, + 563.0, + 617.0, + 597.0, + 532.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 564.0, + 820.0, + 564.0, + 820.0, + 592.0, + 650.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 565.0, + 1048.0, + 565.0, + 1048.0, + 595.0, + 853.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 560.0, + 1181.0, + 560.0, + 1181.0, + 597.0, + 1077.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 559.0, + 1308.0, + 559.0, + 1308.0, + 598.0, + 1225.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 559.0, + 1424.0, + 559.0, + 1424.0, + 598.0, + 1332.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 486.5, + 641.0, + 486.5, + 641.0, + 524.0, + 543.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 488.0, + 1422.0, + 488.0, + 1422.0, + 526.5, + 1325.0, + 526.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.25, + 508.5, + 501.25, + 508.5, + 501.25, + 546.0, + 392.25, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 503.5, + 1281.0, + 503.5, + 1281.0, + 540.5, + 1178.0, + 540.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1812.0, + 1470.0, + 1812.0, + 1470.0, + 1848.0, + 232.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1845.0, + 661.0, + 1845.0, + 661.0, + 1877.0, + 230.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 234.0, + 754.0, + 234.0, + 754.0, + 269.0, + 232.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 875.0, + 565.0, + 875.0, + 565.0, + 919.0, + 230.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1469.0, + 696.0, + 1469.0, + 696.0, + 1495.0, + 540.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1467.0, + 1151.0, + 1467.0, + 1151.0, + 1497.0, + 1024.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1527.0, + 467.0, + 1527.0, + 467.0, + 1565.0, + 416.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1502.0, + 657.0, + 1502.0, + 657.0, + 1563.0, + 512.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1508.0, + 765.0, + 1508.0, + 765.0, + 1536.0, + 730.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1505.0, + 811.0, + 1505.0, + 811.0, + 1538.0, + 769.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1491.0, + 937.0, + 1491.0, + 937.0, + 1564.0, + 880.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1501.0, + 1123.0, + 1501.0, + 1123.0, + 1543.0, + 985.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1519.0, + 1228.0, + 1519.0, + 1228.0, + 1550.0, + 1182.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1565.0, + 481.0, + 1565.0, + 481.0, + 1689.0, + 384.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1601.0, + 706.0, + 1601.0, + 706.0, + 1627.0, + 674.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1573.0, + 744.0, + 1573.0, + 744.0, + 1599.0, + 715.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1557.0, + 833.0, + 1557.0, + 833.0, + 1673.0, + 770.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1579.0, + 889.0, + 1579.0, + 889.0, + 1664.0, + 861.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1576.0, + 934.0, + 1576.0, + 934.0, + 1644.0, + 891.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1556.0, + 1150.0, + 1556.0, + 1150.0, + 1581.0, + 1120.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1577.0, + 1299.0, + 1577.0, + 1299.0, + 1669.0, + 1237.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1638.0, + 462.0, + 1638.0, + 462.0, + 1669.0, + 416.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1638.0, + 687.0, + 1638.0, + 687.0, + 1662.0, + 659.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1672.0, + 648.0, + 1672.0, + 648.0, + 1693.0, + 622.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1661.0, + 810.0, + 1661.0, + 810.0, + 1689.0, + 771.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1657.0, + 935.0, + 1657.0, + 935.0, + 1688.0, + 890.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1676.0, + 1011.0, + 1676.0, + 1011.0, + 1700.0, + 979.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1649.0, + 1081.0, + 1649.0, + 1081.0, + 1674.0, + 1050.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1668.0, + 1276.0, + 1668.0, + 1276.0, + 1700.0, + 1235.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1692.0, + 464.0, + 1692.0, + 464.0, + 1775.0, + 416.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1693.0, + 766.0, + 1693.0, + 766.0, + 1811.0, + 476.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1697.0, + 935.0, + 1697.0, + 935.0, + 1768.0, + 890.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1731.0, + 1276.0, + 1731.0, + 1276.0, + 1796.0, + 956.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1540.5, + 1280.0, + 1540.5, + 1280.0, + 1571.5, + 1232.0, + 1571.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.75, + 1593.5, + 534.75, + 1593.5, + 534.75, + 1611.0, + 488.75, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.25, + 1613.5, + 571.25, + 1613.5, + 571.25, + 1627.0, + 533.25, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1637.0, + 616.0, + 1637.0, + 616.0, + 1651.0, + 574.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.25, + 1711.0, + 813.25, + 1711.0, + 813.25, + 1739.0, + 768.25, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1939.0, + 805.0, + 1939.0, + 805.0, + 1976.0, + 767.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1055.0, + 1468.0, + 1055.0, + 1468.0, + 1088.0, + 233.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1082.0, + 1470.0, + 1082.0, + 1470.0, + 1121.0, + 229.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1115.0, + 1470.0, + 1115.0, + 1470.0, + 1152.0, + 229.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1145.0, + 1470.0, + 1145.0, + 1470.0, + 1182.0, + 230.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1174.0, + 1468.0, + 1174.0, + 1468.0, + 1212.0, + 230.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 1206.0, + 307.0, + 1206.0, + 307.0, + 1243.0, + 230.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1206.0, + 1325.0, + 1206.0, + 1325.0, + 1243.0, + 369.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1248.0, + 1470.0, + 1248.0, + 1470.0, + 1293.0, + 228.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1279.0, + 1470.0, + 1279.0, + 1470.0, + 1324.0, + 228.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1312.0, + 1467.0, + 1312.0, + 1467.0, + 1349.0, + 229.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 1342.0, + 1470.0, + 1342.0, + 1470.0, + 1382.0, + 228.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1372.0, + 1467.0, + 1372.0, + 1467.0, + 1412.0, + 229.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1406.0, + 1112.0, + 1406.0, + 1112.0, + 1443.0, + 234.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 943.0, + 1468.0, + 943.0, + 1468.0, + 983.0, + 230.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 978.0, + 1470.0, + 978.0, + 1470.0, + 1012.0, + 232.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 229.0, + 1004.0, + 1078.0, + 1004.0, + 1078.0, + 1044.0, + 229.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 770.0, + 1467.0, + 770.0, + 1467.0, + 802.0, + 233.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 798.0, + 822.0, + 798.0, + 822.0, + 834.0, + 232.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 798.0, + 932.0, + 798.0, + 932.0, + 834.0, + 884.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 798.0, + 1447.0, + 798.0, + 1447.0, + 834.0, + 995.0, + 834.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 234, + 390, + 1468, + 390, + 1468, + 637, + 234, + 637 + ], + "score": 0.978 + }, + { + "category_id": 2, + "poly": [ + 235, + 237, + 751, + 237, + 751, + 265, + 235, + 265 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 772, + 1942, + 800, + 1942, + 800, + 1966, + 772, + 1966 + ], + "score": 0.847 + }, + { + "category_id": 15, + "poly": [ + 231.0, + 234.0, + 753.0, + 234.0, + 753.0, + 269.0, + 231.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1939.0, + 804.0, + 1939.0, + 804.0, + 1978.0, + 768.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 390.0, + 1468.0, + 390.0, + 1468.0, + 427.0, + 230.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 421.0, + 1471.0, + 421.0, + 1471.0, + 459.0, + 228.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 450.0, + 1468.0, + 450.0, + 1468.0, + 489.0, + 227.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 230.0, + 482.0, + 1471.0, + 482.0, + 1471.0, + 520.0, + 230.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 511.0, + 1471.0, + 511.0, + 1471.0, + 550.0, + 228.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 541.0, + 1471.0, + 541.0, + 1471.0, + 580.0, + 228.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 228.0, + 572.0, + 1471.0, + 572.0, + 1471.0, + 611.0, + 228.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 227.0, + 599.0, + 1244.0, + 599.0, + 1244.0, + 645.0, + 227.0, + 645.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rkeZIJBYvr/images/1d9a9ccd215b88b4c77e910e3daee204b9271aab061b1ea49c22a154a9b3a907.jpg b/parse/train/rkeZIJBYvr/images/1d9a9ccd215b88b4c77e910e3daee204b9271aab061b1ea49c22a154a9b3a907.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5dd91b79b747bdd8084a59d1f80d1f26d4b7e0e1 --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/1d9a9ccd215b88b4c77e910e3daee204b9271aab061b1ea49c22a154a9b3a907.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de7ddc3aadd0abf90cc4efd4ed6b958d8b3ba4c636c5dce033ada6b50ede30f +size 21830 diff --git a/parse/train/rkeZIJBYvr/images/5b2e62d4f91d0bd9729cb14c1bf64510cc97cc1407c4943b1332c64a2a80ea5d.jpg b/parse/train/rkeZIJBYvr/images/5b2e62d4f91d0bd9729cb14c1bf64510cc97cc1407c4943b1332c64a2a80ea5d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45068884382a46770e9babf0263d4c7d40e16939 --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/5b2e62d4f91d0bd9729cb14c1bf64510cc97cc1407c4943b1332c64a2a80ea5d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c7ec75ea7fb7302ab3500f59aaab02f3f456853319ae9e478c5730bc9514c8 +size 9356 diff --git a/parse/train/rkeZIJBYvr/images/5c1f2cb615973856cf300a8f7be4a80d85db054a72997fb04071f557dda0fdd8.jpg b/parse/train/rkeZIJBYvr/images/5c1f2cb615973856cf300a8f7be4a80d85db054a72997fb04071f557dda0fdd8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42c2aaf993cdcc81bab011e32f3c304c0315642c --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/5c1f2cb615973856cf300a8f7be4a80d85db054a72997fb04071f557dda0fdd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0a21f8675ff5cb17143489a32440650bebf2f1116b7ea9741920104765a786 +size 13543 diff --git a/parse/train/rkeZIJBYvr/images/6264291923fd45336060b4ea2038b81a7b0031866403ca78fe72f49e00b0de1e.jpg b/parse/train/rkeZIJBYvr/images/6264291923fd45336060b4ea2038b81a7b0031866403ca78fe72f49e00b0de1e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d38444d2a0920758c4ce9a5f7ac9fbff80f5921f --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/6264291923fd45336060b4ea2038b81a7b0031866403ca78fe72f49e00b0de1e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db1c0bfe186100a1448a8787ff73ec3ddae1fef97d2c319f670499dbd4fb2cc +size 18169 diff --git a/parse/train/rkeZIJBYvr/images/a04dfc203dae0c96c6fa7836323f9e98800d128578d8053aa744c2eaa769f7a4.jpg b/parse/train/rkeZIJBYvr/images/a04dfc203dae0c96c6fa7836323f9e98800d128578d8053aa744c2eaa769f7a4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a07d7469492de0c98d6e826ffaf7b9e11493d081 --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/a04dfc203dae0c96c6fa7836323f9e98800d128578d8053aa744c2eaa769f7a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1943c93d9381cbd4ae48378587fedd7d9b0b18505a7fb85b19073c58852ca07e +size 9992 diff --git a/parse/train/rkeZIJBYvr/images/c885aa2a1060c389194320a9a8f53a2dd79fe3807a3cafc39b90067820ee4677.jpg b/parse/train/rkeZIJBYvr/images/c885aa2a1060c389194320a9a8f53a2dd79fe3807a3cafc39b90067820ee4677.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6ba8752f2354d1b692da35936217f3c8324d34b --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/c885aa2a1060c389194320a9a8f53a2dd79fe3807a3cafc39b90067820ee4677.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea72c5a438e0e2dc6534e016bb19f8c021e95834ee32e3c9d0df6b4ab697c19b +size 25749 diff --git a/parse/train/rkeZIJBYvr/images/d6a23853f81764d5eaa33683c3b828e2f0121fb6660c44a876f8b64627668f9f.jpg b/parse/train/rkeZIJBYvr/images/d6a23853f81764d5eaa33683c3b828e2f0121fb6660c44a876f8b64627668f9f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7195c74d31c5d64d2adcfd4cf932d4dbfdfdf33f --- /dev/null +++ b/parse/train/rkeZIJBYvr/images/d6a23853f81764d5eaa33683c3b828e2f0121fb6660c44a876f8b64627668f9f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bd6ef1aa9dbb24ad448bd42342503d94012d3c44af00976cb0f19379b1f07a +size 18788 diff --git a/parse/train/rkxoh24FPH/rkxoh24FPH.md b/parse/train/rkxoh24FPH/rkxoh24FPH.md new file mode 100644 index 0000000000000000000000000000000000000000..c59e1749a246cb9ebf8e9a222dbe452cc6c93338 --- /dev/null +++ b/parse/train/rkxoh24FPH/rkxoh24FPH.md @@ -0,0 +1,368 @@ +# ON MUTUAL INFORMATION MAXIMIZATION FOR REPRESENTATION LEARNING + +Michael Tschannen∗ Josip Djolonga∗ Paul K. Rubenstein† Sylvain Gelly Mario Lucic Google Research, Brain Team + +# ABSTRACT + +Many recent methods for unsupervised or self-supervised representation learning train feature extractors by maximizing an estimate of the mutual information (MI) between different views of the data. This comes with several immediate problems: For example, MI is notoriously hard to estimate, and using it as an objective for representation learning may lead to highly entangled representations due to its invariance under arbitrary invertible transformations. Nevertheless, these methods have been repeatedly shown to excel in practice. In this paper we argue, and provide empirical evidence, that the success of these methods cannot be attributed to the properties of MI alone, and that they strongly depend on the inductive bias in both the choice of feature extractor architectures and the parametrization of the employed MI estimators. Finally, we establish a connection to deep metric learning and argue that this interpretation may be a plausible explanation for the success of the recently introduced methods. + +# 1 INTRODUCTION + +Unsupervised representation learning is a fundamental problem in machine learning. Intuitively, one aims to learn a function $g$ which maps the data into some, usually lower-dimensional, space where one can solve some (generally a priori unknown) target supervised tasks more efficiently, i.e. with fewer labels. In contrast to supervised and semi-supervised learning, the learner has access only to unlabeled data. Even though the task seems ill-posed as there is no natural objective one should optimize, by leveraging domain knowledge this approach can be successfully applied to a variety of problem areas, including image (Kolesnikov et al., 2019; van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019) and video classification (Wang and Gupta, 2015; Sun et al., 2019), and natural language understanding (van den Oord et al., 2018; Peters et al., 2018; Devlin et al., 2019). + +Recently, there has been a revival of approaches inspired by the InfoMax principle (Linsker, 1988): Choose a representation $g ( x )$ maximizing the mutual information (MI) between the input and its representation, possibly subject to some structural constraints. MI measures the amount of information obtained about a random variable $X$ by observing some other random variable $Y ^ { 1 }$ Formally, the MI between $X$ and $Y$ , with joint density $p ( x , y )$ and marginal densities $p ( x )$ and $p ( y )$ , is defined as the Kullback–Leibler (KL) divergence between the joint and the product of the marginals + +$$ +I ( X ; Y ) = D _ { \mathrm { K L } } \left( p ( x , y ) \parallel p ( x ) p ( y ) \right) = \mathbb { E } _ { p ( x , y ) } \left[ \log \frac { p ( x , y ) } { p ( x ) p ( y ) } \right] . +$$ + +The fundamental properties of MI are well understood and have been extensively studied (see e.g. Kraskov et al. (2004)). Firstly, MI is invariant under reparametrization of the variables — namely, if $X ^ { \prime } = f _ { 1 } ( X )$ and $Y ^ { \prime } = f _ { 2 } ( Y )$ are homeomorphisms (i.e. smooth invertible maps), then $I ( X ; Y ) = I ( X ^ { \prime } ; Y ^ { \prime } )$ . Secondly, estimating MI in high-dimensional spaces is a notoriously difficult task, and in practice one often maximizes a tractable lower bound on this quantity (Poole et al., 2019). + +Nonetheless, any distribution-free high-confidence lower bound on entropy requires a sample size exponential in the size of the bound (McAllester and Statos, 2018). + +Despite these fundamental challenges, several recent works have demonstrated promising empirical results in representation learning using MI maximization (van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019; Sun et al., 2019). In this work we argue, and provide empirical evidence, that the success of these methods cannot be attributed to the properties of MI alone. In fact, we show that maximizing tighter bounds on MI can result in worse representations. In addition, we establish a connection to deep metric learning and argue that this interpretation may be a plausible explanation of the success of the recently introduced methods.2 + +# 2 BACKGROUND AND RELATED WORK + +Recent progress and the InfoMax principle While promising results in other domains have been presented in the literature, we will focus on unsupervised image representation learning techniques that have achieved state-of-the-art performance on image classification tasks (Hénaff et al., 2019; Tian et al., 2019; Bachman et al., 2019). The usual problem setup dates back at least to Becker and Hinton (1992) and can conceptually be described as follows: For a given image $X$ , let $X ^ { ( 1 ) }$ and $X ^ { ( 2 ) }$ be different, possibly overlapping views of $X$ , for instance the top and bottom halves of the image. These are encoded using encoders $g _ { 1 }$ and $g _ { 2 }$ respectively, and the MI between the two representations $g _ { 1 } ( X ^ { ( 1 ) } )$ and $g _ { 2 } \big ( X ^ { ( 2 ) } \big )$ is maximized, + +$$ +\operatorname* { m a x } _ { g _ { 1 } \in { \mathcal G } _ { 1 } , g _ { 2 } \in { \mathcal G } _ { 2 } } \quad I _ { \mathrm { E S T } } \left( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) \right) , +$$ + +where $I _ { \tt E S T } ( X ; Y )$ is a sample-based estimator of the true MI $I ( X ; Y )$ and the function classes $\mathcal { G } _ { 1 }$ and $\mathcal { G } _ { 2 }$ can be used to specify structural constraints on the encoders. While not explicitly reflected in (2), note that $g _ { 1 }$ and $g _ { 2 }$ can often share parameters. Furthermore, it can be shown that $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \le I ( X ; g _ { 1 } ( X ^ { ( 1 ) } ) , g _ { 2 } ( X ^ { ( 2 ) } ) ) ,$ 3 hence the objective in (2) can be seen as a lower bound on the InfoMax objective $\operatorname* { m a x } _ { g \in { \mathcal { G } } } I ( X ; g ( X ) )$ (Linsker, 1988). + +Practical advantages of multi-view formulations There are two main advantages in using (2) rather than the original InfoMax objective. First, the MI has to be estimated only between the learned representations of the two views, which typically lie on a much lower-dimensional space than the one where the original data $X$ lives. Second, it gives us plenty of modeling flexibility, as the two views can be chosen to capture completely different aspects and modalities of the data, for example: + +1. In the basic form of DeepInfoMax (Hjelm et al., 2019) $g _ { 1 }$ extracts global features from the entire image $X ^ { ( 1 ) }$ and $g _ { 2 }$ local features from image patches $X ^ { ( 2 ) }$ , where $g _ { 1 }$ and $g _ { 2 }$ correspond to activations in different layers of the same convolutional network. Bachman et al. (2019) build on this and compute the two views from different augmentations of the same image. +2. Contrastive multiview coding (CMC) (Tian et al., 2019) generalizes the objective in (2) to consider multiple views $X ^ { ( i ) }$ , where each $X ^ { ( i ) }$ corresponds to a different image modality (e.g., different color channels, or the image and its segmentation mask). +3. Contrastive predictive coding (CPC) (van den Oord et al., 2018; Hénaff et al., 2019) incorporates a sequential component of the data. Concretely, one extracts a sequence of patches from an image in some fixed order, maps each patch using an encoder, aggregates the resulting features of the first $t$ patches into a context vector, and maximizes the MI between the context and features extracted from the patch at position $t + k$ . In (2), $X ^ { ( 1 ) }$ would thus correspond to the first $t$ patches and $X ^ { ( 2 ) }$ to the patch at location $t + k$ . Other approaches, such as those presented by Sermanet et al. (2018), Hu et al. (2017), and Ji et al. +(2019), can be similarly subsumed under the same objective. + +Lower bounds on MI As evident from (2), another critical choice is the MI estimator $I _ { \mathrm { E S T } }$ . Given the fundamental limitations of MI estimation (McAllester and Statos, 2018), recent work has focused on deriving lower bounds on MI (Barber and Agakov, 2003; Belghazi et al., 2018; Poole et al., + +2019). Intuitively, these bounds are based on the following idea: If a classifier can accurately distinguish between samples drawn from the joint $p ( x , y )$ and those drawn from the product of marginals $p ( x ) p ( y )$ , then $X$ and $Y$ have a high MI. + +We will focus on two such estimators, which are most commonly used in the representation learning literature. The first of them, termed InfoNCE (van den Oord et al., 2018), is defined as + +$$ +I ( X ; Y ) \geq \mathbb { E } \left[ \frac { 1 } { K } \sum _ { i = 1 } ^ { K } \log \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \right] \triangleq I _ { \tt N C E } ( X ; Y ) , +$$ + +where the expectation is over $K$ independent samples $\{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { K }$ from the joint distribution $p ( x , y )$ (Poole et al., 2019). In practice we estimate (3) using Monte Carlo estimation by averaging over multiple batches of samples. Intuitively, the critic function $f$ tries to predict for each $x _ { i }$ which of the $K$ samples $y _ { 1 } , \ldots , y _ { k }$ it was jointly drawn with, by assigning high values to the jointly drawn pair, and low values to all other pairs. The second estimator is based on the variational form of the KL divergence due to Nguyen, Wainwright, and Jordan (NWJ) (Nguyen et al., 2010) and takes the form + +$$ +I ( X ; Y ) \geq \mathbb { E } _ { p ( x , y ) } [ f ( x , y ) ] - e ^ { - 1 } \mathbb { E } _ { p ( x ) } [ \mathbb { E } _ { p ( y ) } e ^ { f ( x , y ) } ] \triangleq I _ { \mathbb { N } \mathbb { N } } ( X ; Y ) . +$$ + +For detailed derivations we refer the reader to (Ruderman et al., 2012; Poole et al., 2019). Note that these bounds hold for any critic $f$ and when used in (2) one in practice jointly maximizes over $g _ { 1 } , g _ { 2 }$ and $f$ . Furthermore, it can be shown that (3) is maximized by $f ^ { * } ( x , \bar { y } ) = \log p ( y | x )$ and (4) by $f ^ { * } ( x , y ) \mathop { = } 1 + \log p ( y | x )$ (Poole et al., 2019). Common choices for $f$ include bilinear critics $f ( x , y ) = x ^ { \top } W y$ (van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019), separable critics $f ( x , y ) = \phi _ { 1 } ( x ) ^ { \top } \phi _ { 2 } ( y )$ (Bachman et al., 2019), and concatenated critics $f ( x , y ) = \phi ( [ x , y ] )$ (Hjelm et al., 2019) (here $\phi , \phi _ { 1 } , \phi _ { 2 }$ are typically shallow multi-layer perceptrons (MLPs)). When applying these estimators to solve (2), the line between the critic and the encoders $g _ { 1 } , g _ { 2 }$ can be blurry. For example, one can train with an inner product critic $f ( x , y ) = x ^ { \top } y$ , but extract features from an intermediate layer of $g _ { 1 } , g _ { 2 }$ , in which case the top layers of $g _ { 1 } , g _ { 2 }$ form a separable critic. Nevertheless, this boundary is crucial for the interplay between MI estimation and the interpretation of the learned representations. + +# 3 BIASES IN APPROXIMATE INFORMATION MAXIMIZATION + +It is folklore knowledge that maximizing MI does not necessarily lead to useful representations. Already Linsker (1988) talks in his seminal work about constraints, while a manifestation of the problem in clustering approaches using MI criteria has been brought up by Bridle et al. (1992) and subsequently addressed using regularization by Krause et al. (2010). To what can we then attribute the recent success of methods building on the principles of MI maximization? We will argue that their connection to the InfoMax principle might be very loose. Namely, we will show that they behave counter-intuitively if one equates them with MI maximization, and that the performance of these methods depends strongly on the bias that is encoded not only in the encoders, but also on the actual form of the used estimators. + +1. We first consider encoders which are bijective by design. Even though the true MI is maximized for any choice of model parameters, the representation quality (measured by downstream linear classification accuracy) improves during training. Furthermore, there exist invertible encoders for which the representation quality is worse than using raw pixels, despite also maximizing MI. +2. We next consider encoders that can model both invertible and non-invertible functions. When the encoder can be non-invertible, but is initialized to be invertible, $I _ { \mathrm { E S T } }$ still biases the encoders to be very ill-conditioned and hard to invert. +3. For $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { w } \bar { s } }$ , higher-capacity critics admit tighter bounds on MI. We demonstrate that simple critics yielding loose bounds can lead to better representations than high-capacity critics. +4. Finally, we optimize the estimators to the same MI lower-bound value with different encoder architectures and show that the representation quality can be impacted more by the choice of the architecture, than the estimator. + +As a consequence, we argue that the success of these methods and the way they are instantiated in practice is only loosely connected to MI. Then, in Section 4 we provide an alternative explanation for the success of recent methods through a connection to classic triplet losses from metric learning. + +![](images/a84c5f10c5703c8bb062be5139fa94f689d1924b0e49aabbcdefbabec169b769.jpg) +Figure 1: (a, b) Maximizing $I _ { \mathrm { E S T } }$ over a family of invertible models. We can see that during training the downstream classification performance improves (and the testing $I _ { \mathrm { E S T } }$ value increases), even though the true MI remains constant throughout. (c) Downstream classification accuracy of a different invertible encoder (with the same architecture) trained to have poor performance. This demonstrates the existence of encoders that provably maximize MI yet have bad downstream performance. + +Setup Our goal is to provide a minimal set of easily reproducible empirical experiments to understand the role of MI estimators, critic and encoder architectures when learning representations via the objective (2). To this end, we consider a simple setup of learning a representation of the top half of MNIST handwritten digit images (we present results for the experiments from Sections 3.2 and 3.3 on CIFAR10 in Appendix G; the conclusions are analogous). This setup has been used in the context of deep canonical correlation analysis (Andrew et al., 2013), where the target is to maximize the correlation between the representations. Following the widely adopted downstream linear evaluation protocol (Kolesnikov et al., 2019; van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019), we train a linear classifier4 for digit classification on the learned representation using all available training labels (other evaluation protocols are discussed in Section 5). To learn the representation we instantiate (2) and split each input MNIST image $x \in [ 0 , 1 ] ^ { 7 8 4 }$ into two parts, the top part of the image $x _ { \mathrm { t o p } } \in [ 0 , 1 ] ^ { 3 9 2 }$ corresponding to $X ^ { ( 1 ) }$ , and the bottom part, $x _ { \mathrm { b o t t o m } } \in [ 0 , 1 ] ^ { 3 9 2 }$ , corresponding to $X ^ { ( 2 ) }$ , respectively. We train $g _ { 1 } , g _ { 2 }$ , and $f$ using the Adam optimizer (Kingma and Ba, 2015), and use $g _ { 1 } \big ( x _ { \mathrm { t o p } } \big )$ as the representation for the linear evaluation. Unless stated otherwise, we use a bilinear critic $f ( x , y ) = x ^ { \top } W y$ (we investigate its effect in a separate ablation study), set the batch size to 128 and the learning rate to $1 0 ^ { - 4 }$ . 5 Throughout, $I _ { \mathrm { E S T } }$ values and downstream classification accuracies are averaged over 20 runs and reported on the testing set (we did not observe large gaps between the training and testing values of $I _ { \mathrm { E S T } } ,$ ). As a common baseline, we rely on a linear classifier in pixel space on $x _ { \mathrm { t o p } }$ , which obtains a testing accuracy of about $8 5 \%$ . For comparison, a simple MLP or ConvNet architecture achieves about $5 4 \%$ (see Section 3.3 for details). + +# 3.1 LARGE MI IS NOT PREDICTIVE OF DOWNSTREAM PERFORMANCE + +We start by investigating the behavior of $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N W } } { \boldsymbol { \mathbf { \mathit { J } } } }$ when $g _ { 1 }$ and $g _ { 2 }$ are parameterized to be always invertible. Hence, for any choice of the encoder parameters, the MI is constant, i.e. $I ( g _ { 1 } ( X ^ { \acute { ( 1 ) } } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) = I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )$ for all $g _ { 1 } , g _ { 2 }$ . This means that if we could exactly compute the MI, any parameter choice would be a global maximizer and thus the gradients vanish everywhere.6 However, as we will empirically show, the estimators we consider are biased and prefer those settings which yield representations useful for the downstream classification task. + +Maximized MI and improved downstream performance We model $g _ { 1 }$ and $g _ { 2 }$ using the invertible RealNVP architecture (Dinh et al., 2016). We use a total of 30 coupling layers, and each of them computes the shift using a separate MLP with two ReLU hidden layers, each with 512 units. + +![](images/47a695e5fcef7059f0d8b7d49d675445acaafdcfd22f6c9b2f1667165ff97877.jpg) +Figure 2: Maximizing $I _ { \mathrm { E S T } }$ using a network architecture that can realize both invertible and noninvertible functions. (a, b) As $I _ { \mathrm { E S T } }$ increases, the linear classification testing performance increases. (c) Meanwhile, the condition number of Jacobian evaluated at inputs randomly sampled from the data distribution deteriorates, i.e. $g _ { 1 }$ becomes increasingly ill-conditioned (lines represent 0th, 20th, . . . , $1 0 0 \mathrm { { t h } }$ percentiles for $I _ { \mathrm { N C E } }$ , the corresponding figure for $I _ { \mathrm { N } \bar { w } \bar { s } }$ can be found in Appendix F; the empirical distribution is obtained by randomly sampling 128 inputs from the data distribution, computing the corresponding condition numbers, and aggregating them across runs). + +Figure 1 shows the testing value of $I _ { \mathrm { E S T } }$ and the testing accuracy on the classification task. Despite the fact that MI is maximized by any instantiation of $g _ { 1 }$ and $g _ { 2 }$ , $I _ { \mathrm { E S T } }$ and downstream accuracy increase during training, implying that the estimators provide gradient feedback leading to a representation useful for linear classification. This confirms our hypothesis that the estimator biases the encoders towards solutions suitable to solve the downstream linear classification task. + +The previous experiment demonstrated that among many invertible encoders, all of which are globally optimal MI maximizers, some give rise to improved linear classification performance over raw pixels, and maximizing $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N W } } { \boldsymbol { \mathbf { \mathit { J } } } }$ yields such encoders. Next we demonstrate that for the same invertible encoder architecture there are model parameters for which linear classification performance is significantly worse than using raw pixels, despite also being globally optimal MI maximizers. + +Maximized MI and worsened downstream performance The goal is to learn a (bijective) representation maximizing MI such that the optimal linear classifier performs poorly; we achieve this by jointly training a representation and classifier in an adversarial fashion (a separate classifier is trained for the evaluation), without using a MI estimator. Intuitively, we will train the encoder to make the classification task for the linear layer as hard as possible. The experimental details are presented in Appendix B. Figure 1c shows the result of one such training run, displaying the loss of a separately trained classifier on top of the frozen representation. At the beginning of training the network is initialized to be close to the identity mapping, and as such achieves the baseline classification accuracy corresponding to raw pixels. All points beyond this correspond to invertible feature maps with worse classification performance, despite still achieving globally maximal MI. + +Alternatively, the following thought experiment would yield the same conclusion: Using a lossless compression algorithm (e.g. PNG) for $g _ { 1 }$ and $g _ { 2 }$ also satisfies $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \ =$ $I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )$ . Yet, performing linear classification on the raw compressed bit stream $g _ { 1 } ( X ^ { ( 1 ) } )$ will likely lead to worse performance than the baseline in pixel space. The information content alone is not sufficient to guarantee a useful geometry in the representation space. + +We next investigate the behavior of the model if we use a network architecture that can model both invertible and non-invertible functions. We would like to understand whether $I _ { \mathrm { E S T } }$ prefers the network to remain bijective, thus maximizing the true MI, or to ignore part of the input signal, which can be beneficial for representation learning. + +Bias towards hard-to-invert encoders We use an MLP architecture with 4 hidden layers of the same dimension as the input, and with a skip connection added to each layer (hence by setting all weights to 0 the network becomes the identity function). As quantifying invertibility is hard, we analyze the condition number, i.e. the ratio between the largest and the smallest singular value, of the Jacobian of $g _ { 1 }$ : By the implicit function theorem, the function is invertible if the Jacobian is non-singular.7 However, the data itself might lie on a low-dimensional manifold, so that having a singular Jacobian is not necessarily indicative of losing invertibility on the support of the data distribution. To ensure the support of the data distribution covers the complete input space, we corrupt $X ^ { ( 1 ) }$ and $X ^ { ( 2 ) }$ in a coupled way by adding to each the same 392-dimensional random vector, whose coordinates are sampled (independently of $X ^ { ( 1 ) } , X ^ { ( 2 ) } )$ from a normal with standard deviation 0.05 (the standard deviation of the pixels themselves is 0.3). Hence, non-invertible encoders $g _ { 1 } , g _ { 2 }$ do not maximize $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) )$ . 8 As a reference point, the linear classification accuracy from pixels drops to about $84 \%$ due to the added noise. + +![](images/8aa32e9c03a77e8657ee9a3fc96b1e03d12ad15997f3d7f40349ab8ce7ec0d00.jpg) +Figure 3: Downstream testing accuracy for $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { w } \bar { s } }$ , and testing $I _ { \mathrm { N } \bar { w } \bar { s } }$ value for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures (the testing $I _ { \mathrm { N C E } }$ curve can be found in Appendix F). Bilinear and separable critics lead to higher downstream accuracy than MLP critics, while reaching lower $I _ { \mathrm { N } \bar { w } \bar { s } }$ . + +In Figure 2 we can see that the $I _ { \mathrm { E S T } }$ value and the downstream accuracy both increase during training, as before. Moreover, even though $g _ { 1 }$ is initialized very close to the identity function (which maximizes the true MI), the condition number of its Jacobian evaluated at inputs randomly sampled from the data-distribution steadily deteriorates over time, suggesting that in practice (i.e. numerically) inverting the model becomes increasingly hard. It therefore seems that the bounds we consider favor hard-to-invert encoders, which heavily attenuate part of the noise (as the support of the noise is the entire input space), over well conditioned encoders (such as the identity function at initialization), which preserve the noise and hence the entropy of the data well. + +# 3.2 HIGHER CAPACITY CRITICS CAN LEAD TO WORSE DOWNSTREAM PERFORMANCE + +In the previous section we have established that MI and downstream performance are only loosely connected. Clearly, maximizing MI is not sufficient to learn good representations and there is a non-trivial interplay between the architectures of the encoder, critic, and the underlying estimators. In this section, we will focus on how one of these factors, namely the critic architecture, impacts the quality of the learned representation. Recall that it determines how the estimators such as $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N W } } { \boldsymbol { \mathbf { \mathit { I } } } }$ distinguish between samples from the joint distribution $p ( x , y )$ and the product of the marginals $p ( x ) p ( y )$ , and thereby determines the tightness on the lower bound. A higher capacity critic should allow for a tighter lower-bound on MI (Belghazi et al., 2018). Furthermore, in the context of representation learning where $f$ is instantiated as a neural network, the critic provides gradient feedback to $g _ { 1 }$ and $g _ { 2 }$ and thereby shapes the learned representation. + +Looser bounds with simpler critics can lead to better representations We compare three critic architectures, a bilinear critic, a separable critic $f ( x , y ) \stackrel { \mathrm { ~ } } { = } \phi _ { 1 } ( x ) ^ { \top } \phi _ { 2 } ( y ) ( \phi _ { 1 } , \phi _ { 2 }$ are MLPs with a single hidden layer with 100 units and ReLU activations, followed by a linear layer with 100 units; comprising $4 0 \mathrm { k }$ parameters in total) and an MLP critic with a single hidden layer with 200 units and ReLU activations, applied to the concatenated input $[ x , y ]$ (40k trainable parameters). Further, we use identical MLP architectures for $g _ { 1 }$ and $g _ { 2 }$ with two hidden layers comprising 300 units each, and a third linear layer mapping to a 100-dimensional feature space. + +Figure 3 shows the downstream testing accuracy and the testing $I _ { \mathrm { E S T } }$ value as a function of the iteration (see Appendix G for the corresponding results on CIFAR10). It can be seen that for both lower bounds, representations trained with the MLP critic barely outperform the baseline on pixel space, whereas the same lower bounds with bilinear and separable critics clearly lead to a higher accuracy than the baseline. While the testing $I _ { \mathrm { N C E } }$ value is close to the theoretically achievable maximum value for all critics, the testing $I _ { \mathrm { N } \bar { W } \bar { J } }$ value is higher for the MLP critic than for the separable and bilinear critics, resulting in a tighter bound on the MI. However, despite achieving the smallest + +![](images/bf9d8c2d5e81792c60fb051b5b3799ff17a09863301230629190341d2eb3b09e.jpg) +Figure 4: (a, b) Downstream testing accuracy for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) =$ $| I _ { \mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |$ ; loss curves can be found in Appendix F). For a given estimator and $t$ , ConvNet encoders clearly outperform MLP encoders in terms of downstream testing accuracy. (c) Estimating MI from i.i.d. and non-i.i.d. samples in a synthetic setting (Section 4). If negative samples are not drawn i.i.d., both $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { W } \bar { J } }$ estimators can be greater than the true MI. Despite being commonly justified as a lower bound on MI, $I _ { \mathrm { N C E } }$ is often used in the non-i.i.d. setting in practice. + +$I _ { \mathrm { N } \bar { w } \bar { s } }$ testing value, the simple bilinear critic leads to a better downstream performance than the higher-capacity separable and MLP critics. + +A related phenomenon was observed in the context of variational autoencoders (VAEs) (Kingma and Welling, 2014), where one maximizes a lower bound on the data likelihood: Looser bounds often yield better inference models, i.e. latent representations (Rainforth et al., 2018). + +# 3.3 ENCODER ARCHITECTURE CAN BE MORE IMPORTANT THAN THE SPECIFIC ESTIMATOR + +We will now show that the encoder architecture is a critical design choice and we will investigate its effect on the learned representation. We consider the same MLP architecture (238k parameters) as in Section 3.2, as well as a ConvNet architecture comprising two convolution layers (with a $5 \times 5$ kernel, stride of 2, ReLU activations, and 64 and 128 channels, respectively; $2 2 0 \mathrm { k }$ parameters), followed by spatial average pooling and a fully connected layer. Before the average pooling operation we apply layer normalization (Ba et al., 2016) which greatly reduces the variance of $\bar { I } _ { \mathrm { N W } } ^ { \mathrm { ~ ~ } } \bar { J }$ . 9 To ensure that both network architectures achieve the same lower bound $I _ { \mathrm { E S T } }$ on the MI, we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |$ instead of solving (2), for two different values $t = 2 , 4$ + +Figure 4 shows the downstream testing accuracy as a function of the training iteration (see Appendix G for the corresponding results on CIFAR10). It can be seen in the testing loss curves in Appendix F that for both architectures and estimators the objective value after 7k iterations matches the target $t$ (i.e., $L _ { t } ( g _ { 1 } , g _ { 2 } ) \approx 0 )$ which implies that they achieve the same lower-bound on the MI. Despite matching lower bounds, ConvNet encoders lead to clearly superior classification accuracy, for both $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { w } \bar { s } }$ . Note that, in contrast, the MLP and ConvNet architectures trained end-to-end in supervised fashion both achieve essentially the same testing accuracy of about $9 4 \%$ . + +In the context of VAEs, Alemi et al. (2018) similarly observed that models achieving the same evidence lower bound value can lead to vastly different representations depending on the employed encoder architecture, and do not necessarily capture useful information about the data (Tschannen et al., 2018; Blau and Michaeli, 2019). + +# 4 CONNECTION TO DEEP METRIC LEARNING AND TRIPLET LOSSES + +In the previous section we empirically demonstrated that there is a disconnect between approximate MI maximization and representation quality. However, many recent works have applied the $I _ { \mathrm { N C E } }$ estimator to obtain state-of-the-art results in practice. We provide some insight on this conundrum by connecting $I _ { \mathrm { N C E } }$ to a popular triplet $k$ -plet) loss known in the deep metric learning community. + +The metric learning view Given sets of triplets, namely an anchor point $x$ , a positive instance $y$ , and a negative instance $z$ , the goal is to learn a representation $g ( x )$ such that the distances (i.e., $\ell _ { 2 }$ ) between $g ( x )$ and $g ( y )$ is smaller than the distance between $g ( x )$ and $g ( z )$ , for each triplet. In the supervised setting, the positive instances are usually sampled from the same class, while the negative instances are sampled from any other class. A major focus in deep metric learning is how to perform (semi-)hard positive mining — we want to present non-trivial triplets to the learning algorithm which become more challenging as $g$ improves. Natural extensions to the unsupervised setting can be obtained by exploiting the structure present in the input data, namely spatial (e.g. patches from the same image should be closer than patches from different images) and temporal information (temporally close video frames should be encoded closer than the ones which are further away in time) (Hoffer and Ailon, 2015). + +Connection to InfoNCE The InfoNCE objective can be rewritten as follows: + +$$ +\tilde { \mathrm { \Sigma } } _ { \mathrm { N C E } } = \mathbb { E } \left[ \frac { 1 } { K } \sum _ { i = 1 } ^ { K } \log \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \right] = \log K - \mathbb { E } \left[ \frac { 1 } { K } \sum _ { i = 1 } ^ { K } \log \left( 1 + \sum _ { j \ne i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \right) \right] . +$$ + +The derivation is presented in Appendix C. In the particular case that $x$ and $y$ take value in the same space and $f$ is constrained to be of the form $f ( x , y ) = \phi ( x ) ^ { \top } \phi ( y )$ , for some function $\phi$ , this coincides (up to constants and change of sign) with the expectation of the multi-class $K$ -pair loss proposed in (Sohn, 2016, Eqn. (7)): + +$$ +L _ { \mathrm { K - p a i r r o c } } \left( \{ ( x _ { i } , y _ { i } ) \} _ { i = 1 } ^ { K } , \phi \right) = \frac { 1 } { K } \sum _ { i = 1 } ^ { K } \log \left( 1 + \sum _ { j \ne i } e ^ { \phi ( x _ { i } ) ^ { \top } \phi ( y _ { j } ) - \phi ( x _ { i } ) ^ { \top } \phi ( y _ { i } ) } \right) . +$$ + +Representation learning by maximizing $I _ { \mathrm { N C E } }$ using a symmetric separable critic $f ( x , y ) = \phi ( x ) ^ { \top } \phi ( y )$ and an encoder $g = g _ { 1 } = g _ { 2 }$ shared across views is thus equivalent to metric learning based on (5). When using different encoders for different views and asymmetric critics as employed by CPC, DeepInfoMax, and CMC one recovers asymmetric variants of (5), see, e.g. (Yu et al., 2017; Zhang et al., 2019). As a result, one can view (5) as learning encoders with a parameter-less inner product critic, for which the MI lower-bound is very weak in general. + +There are (at least) two immediate benefits of viewing recent representation learning methods based on MI estimators through the lens of metric learning. Firstly, in the MI view, using inner product or bilinear critic functions is sub-optimal since the critic should ideally be as flexible as possible in order to reduce the gap between the lower bound and the true MI. In the metric learning view, the inner product critic corresponds to a simple metric on the embedding space. The metric learning view seems hence in better accordance with the observations from Section 3.2 than the MI view. Secondly, it elucidates the importance of appropriately choosing the negative samples, which is indeed a critical component in deep metric learning based on triplet losses (Norouzi et al., 2012; Schroff et al., 2015). + +InfoNCE and the importance of negative sampling The negative sample mining issue also manifests itself in MI-based contrastive losses. In fact, while InfoNCE is a lower bound on MI if the negative samples are drawn from the true marginal distribution (Poole et al., 2019), i.e. + +$$ +I ( X , Y ) \geq \mathbb { E } _ { \prod _ { k } p ( x _ { k } , y _ { k } ) } { \frac { 1 } { K } } \sum _ { i = 1 } ^ { K } \left[ \log { \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \frac { 1 } { K } } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \right] \triangleq I _ { \mathbb { N } \mathbb { C } } , +$$ + +we show that if the negative samples are drawn in a dependent fashion (corresponding to the $( x _ { i } , y _ { i } )$ being drawn identically but not independently), the $I _ { \mathrm { N C E } }$ estimator is in general neither a lower nor an upper bound on the true MI $I ( X , Y )$ . We prove this in Appendix D and present empirical evidence here. Let $( X , Y ) = Z + \epsilon .$ , where $\bar { Z } \sim \mathcal { N } ( 0 , \Sigma _ { Z } )$ and $\epsilon \sim \mathcal { N } ( 0 , \Sigma _ { \epsilon } )$ are two-dimensional Gaussians. We generate batches of data $( X _ { i } , Y _ { i } ) = Z + \epsilon _ { i }$ where each $\epsilon _ { i }$ is sampled independently for each element of the batch, but $Z$ is sampled only once per batch. As such, $( X _ { i } , Y _ { i } )$ has the same marginal distribution for each $i$ , but the elements of the batch are not independent. Although we do not treat it theoretically, we also display results of the same experiment using the $I _ { \mathrm { N } \bar { w } \bar { s } }$ estimator. The experimental details are presented in Appendix E. We observe in Figure $_ \mathrm { 4 c }$ that when using noni.i.d. samples both the $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { w } \bar { s } }$ values are larger than the true MI, and that when i.i.d. samples are used, both are lower bounds on the true MI. Hence, the connection to MI under improper negative sampling is no longer clear and might vanish completely. + +Notwithstanding this fundamental problem, the negative sampling strategy is often treated as a design choice. In Hénaff et al. (2019), CPC is applied to images by partitioning the input image into patches. Then, MI (estimated by InfoNCE) between representations of patches and a context summarizing several patches that are vertically above or below in the same image is minimized. Negative samples are obtained by patches from different images as well as patches from the same image, violating the independence assumption. Similarly, van den Oord et al. (2018) learn representations of speech using samples from a variety of speakers. It was found that using utterances from the same speaker as negative samples is more effective, whereas the “proper” negative samples should be drawn from an appropriate mixture of utterances from all speakers. + +A common observation is that increasing the number of negative examples helps in practice (Hjelm et al., 2019; Tian et al., 2019; Bachman et al., 2019). Indeed, Ma and Collins (2018) show that $I _ { \mathrm { N C E } }$ is consistent for any number of negative samples (under technical conditions), and Poole et al. (2019) show that the signal-to-noise ratio increases with the number of negative samples. On the other hand, (Arora et al., 2019) have demonstrated, both theoretically and empirically, that increasing the number of negative samples does not necessarily help, and can even deteriorate the performance. The intricacies of negative sampling hence remain a key research challenge. + +# 5 CONCLUSION + +Is MI maximization a good objective for learning good representations in an unsupervised fashion? Possibly, but it is clearly not sufficient. In this work we have demonstrated that, under the common linear evaluation protocol, maximizing lower bounds on MI as done in modern incarnations of the InfoMax principle can result in bad representations. We have revealed that the commonly used estimators have strong inductive biases and—perhaps surprisingly—looser bounds can lead to better representations. Furthermore, we have demonstrated that the connection of recent approaches to MI maximization might vanish if negative samples are not drawn independently (as done by some approaches in the literature). As a result, it is unclear whether the connection to MI is a sufficient (or necessary) component for designing powerful unsupervised representation learning algorithms. We propose that the success of these recent methods could be explained through the view of triplet-based metric learning and that leveraging advances in that domain might lead to further improvements. We have several suggestions for future work, which we summarize in the following. + +Alternative measures of information We believe that the question of developing new notions of information suitable for representation learning should receive more attention. While MI has appealing theoretical properties, it is clearly not sufficient for this task—it is hard to estimate, invariant to bijections and can result in suboptimal representations which do not correlate with downstream performance. Therefore, a new notion of information should account for both the amount of information stored in a representation and the geometry of the induced space necessary for good performance on downstream tasks. One possible avenue is to consider extensions to MI which explicitly account for the modeling power and computational constraints of the observer, such as the recently introduced $\mathcal { F }$ -information $\mathrm { X u }$ et al. (2020). Alternatively, one can investigate other statistical divergences to measure the discrepancy between $p ( x , y )$ and $p ( x ) p ( y )$ . For example, using the Wasserstein distance leads to promising results in representation learning as it naturally enforces smoothness in the encoders (Ozair et al., 2019). + +A holistic view We believe that any theory on measuring information for representation learning built on critics should explicitly take into account the function families one uses (e.g. that of the critic and estimator). Most importantly, we would expect some natural trade-offs between the amount of information that can be stored against how hard it is to extract it in the downstream tasks as a function of the architectural choices. While the distribution of downstream tasks is typically assumed unknown in representation learning, it might be possible to rely on weaker assumptions such as a family of invariances relevant for the downstream tasks. Moreover, it seems that in the literature (i) the critics that are used to measure the information, (ii) the encoders, and (iii) the downstream models/evaluation protocol are all mostly chosen independently of each other. Our empirical results show that the downstream performance depends on the intricate balance between these choices and we believe that one should co-design them. This holistic view is currently under-explored and due to the lack of any theory or extensive studies to guide the practitioners. + +Going beyond the widely used linear evaluation protocol While it was shown that learning good representations under the linear evaluation protocol can lead to reduced sample complexity for downstream tasks (Arora et al., 2019), some recent works (Bachman et al., 2019; Tian et al., 2019) report marginal improvements in terms of the downstream performance under a non-linear regime. Related to the previous point, it would hence be interesting to further explore the implications of the evaluation protocol, in particular its importance in the context of other design choices. We stress that a highly-nonlinear evaluation framework may result in better downstream performance, but it defeats the purpose of learning efficiently transferable data representations. + +Systematic investigations into design decisions that matter On the practical side, we believe that the link to metric learning could lead to new methods, that break away from the goal of estimating MI and place more weight on the aspects that have a stronger effect on the performance such as the negative sampling strategy. An example where the metric learning perspective led to similar methods as the MI view is presented by Sermanet et al. (2018): They developed a multi-view representation learning approach for video data similar to CMC, but without drawing negative samples independently and seemingly without relying on the MI mental model to motivate their design choices. + +# ACKNOWLEDGMENTS + +We would like to thank Alex Alemi, Ben Poole, Olivier Bachem, and Alexey Dosovitskiy for inspiring discussions and comments on the manuscript. We are grateful for the general support and discussions from other members of Google Brain team in Zurich. + +# REFERENCES + +Alexander Alemi, Ben Poole, Ian Fischer, Joshua Dillon, Rif A Saurous, and Kevin Murphy. Fixing a Broken ELBO. In International Conference on Machine Learning, 2018. + +Galen Andrew, Raman Arora, Jeff Bilmes, and Karen Livescu. Deep canonical correlation analysis. In International Conference on Machine Learning, 2013. + +Sanjeev Arora, Hrishikesh Khandeparkar, Mikhail Khodak, Orestis Plevrakis, and Nikunj Saunshi. A theoretical analysis of contrastive unsupervised representation learning. In International Conference on Machine Learning, 2019. + +Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. + +Philip Bachman, R Devon Hjelm, and William Buchwalter. Learning representations by maximizing mutual information across views. In Advances in Neural Information Processing Systems, 2019. + +David Barber and Felix V Agakov. The IM algorithm: a variational approach to information maximization. In Advances in Neural Information Processing Systems, 2003. + +Suzanna Becker and Geoffrey E Hinton. Self-organizing neural network that discovers surfaces in random-dot stereograms. Nature, 1992. + +Mohamed Ishmael Belghazi, Aristide Baratin, Sai Rajeshwar, Sherjil Ozair, Yoshua Bengio, Devon Hjelm, and Aaron Courville. Mutual information neural estimation. In International Conference on Machine Learning, 2018. + +Anthony J Bell and Terrence J Sejnowski. An information-maximization approach to blind separation and blind deconvolution. Neural computation, 1995. + +Yochai Blau and Tomer Michaeli. Rethinking lossy compression: The rate-distortion-perception tradeoff. In International Conference on Machine Learning, 2019. + +John S Bridle, Anthony JR Heading, and David JC MacKay. Unsupervised classifiers, mutual information and phantom targets. In Advances in Neural Information Processing Systems, 1992. + +Aaron Defazio, Francis Bach, and Simon Lacoste-Julien. SAGA: A fast incremental gradient method with support for non-strongly convex composite objectives. In Advances in Neural Information Processing Systems, 2014. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: Pre-training of deep bidirectional transformers for language understanding. In Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, 2019. + +Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real nvp. arXiv preprint arXiv:1605.08803, 2016. + +Olivier J Hénaff, Ali Razavi, Carl Doersch, SM Eslami, and Aaron van den Oord. Data-efficient image recognition with contrastive predictive coding. arXiv preprint arXiv:1905.09272, 2019. + +R Devon Hjelm, Alex Fedorov, Samuel Lavoie-Marchildon, Karan Grewal, Phil Bachman, Adam Trischler, and Yoshua Bengio. Learning deep representations by mutual information estimation and maximization. In International Conference on Learning Representations, 2019. + +Elad Hoffer and Nir Ailon. Deep metric learning using triplet network. In International Workshop on Similarity-Based Pattern Recognition, 2015. + +Weihua Hu, Takeru Miyato, Seiya Tokui, Eiichi Matsumoto, and Masashi Sugiyama. Learning discrete representations via information maximizing self-augmented training. In International Conference on Machine Learning, 2017. + +Xu Ji, João F Henriques, and Andrea Vedaldi. Invariant information clustering for unsupervised image classification and segmentation. In IEEE International Conference on Computer Vision, 2019. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on Learning Representation, 2015. + +Diederik P Kingma and Max Welling. Auto-encoding variational Bayes. International Conference on Learning Representation, 2014. + +Alexander Kolesnikov, Xiaohua Zhai, and Lucas Beyer. Revisiting self-supervised visual representation learning. International Conference on Computer Vision, 2019. + +Alexander Kraskov, Harald Stögbauer, and Peter Grassberger. Estimating mutual information. Physical review E, 2004. + +Andreas Krause, Pietro Perona, and Ryan G Gomes. Discriminative clustering by regularized information maximization. In Advances in Neural Information Processing Systems, 2010. + +Ralph Linsker. Self-organization in a perceptual network. Computer, 1988. + +Zhuang Ma and Michael Collins. Noise contrastive estimation and negative sampling for conditional models: Consistency and statistical efficiency. arXiv preprint arXiv:1809.01812, 2018. + +David McAllester and Karl Statos. Formal limitations on the measurement of mutual information. arXiv preprint arXiv:1811.04251, 2018. + +XuanLong Nguyen, Martin J Wainwright, and Michael I Jordan. Estimating divergence functionals and the likelihood ratio by convex risk minimization. IEEE Transactions on Information Theory, 2010. + +Mohammad Norouzi, David J Fleet, and Ruslan R Salakhutdinov. Hamming distance metric learning. In Advances in Neural Information Processing Systems, 2012. + +Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-GAN: Training generative neural samplers using variational divergence minimization. In Advances in Neural Information Processing Systems, 2016. + +Sherjil Ozair, Corey Lynch, Yoshua Bengio, Aaron van den Oord, Sergey Levine, and Pierre Sermanet. Wasserstein dependency measure for representation learning. In Advances in Neural Information Processing Systems, 2019. + +Fabian Pedregosa, Gaël Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-learn: Machine learning in python. Journal of Machine Learning Research, 2011. + +Matthew E Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. Deep contextualized word representations. In Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, 2018. + +Ben Poole, Sherjil Ozair, Aaron van den Oord, Alex Alemi, and George Tucker. On variational bounds of mutual information. In International Conference on Machine Learning, 2019. + +Tom Rainforth, Adam Kosiorek, Tuan Anh Le, Chris Maddison, Maximilian Igl, Frank Wood, and Yee Whye Teh. Tighter variational bounds are not necessarily better. In International Conference on Machine Learning, 2018. + +Avraham Ruderman, Mark D Reid, Darío García-García, and James Petterson. Tighter variational representations of f-divergences via restriction to probability measures. In International Conference on Machine Learning, 2012. + +Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In IEEE Conference on Computer Vision and Pattern Recognition, 2015. + +Pierre Sermanet, Corey Lynch, Yevgen Chebotar, Jasmine Hsu, Eric Jang, Stefan Schaal, and Sergey Levine. Time-contrastive networks: Self-supervised learning from video. In IEEE International Conference on Robotics and Automation, 2018. + +Kihyuk Sohn. Improved deep metric learning with multi-class n-pair loss objective. In Advances in Neural Information Processing Systems, 2016. + +Chen Sun, Fabien Baradel, Kevin Murphy, and Cordelia Schmid. Contrastive bidirectional transformer for temporal representation learning. arXiv preprint arXiv:1906.05743, 2019. + +Yonglong Tian, Dilip Krishnan, and Phillip Isola. Contrastive multiview coding. arXiv preprint arXiv:1906.05849, 2019. + +Michael Tschannen, Olivier Bachem, and Mario Lucic. Recent advances in autoencoder-based representation learning. arXiv preprint arXiv:1812.05069, 2018. + +Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. + +Xiaolong Wang and Abhinav Gupta. Unsupervised learning of visual representations using videos. In IEEE International Conference on Computer Vision, 2015. + +Yilun Xu, Shengjia Zhao, Jiaming Song, Russell Stewart, and Stefano Ermon. A Theory of Usable Information under Computational Constraints. In International Conference on Learning Representations, 2020. + +Hong-Xing Yu, Ancong Wu, and Wei-Shi Zheng. Cross-view asymmetric metric learning for unsupervised person re-identification. In IEEE International Conference on Computer Vision, 2017. + +Ji Zhang, Yannis Kalantidis, Marcus Rohrbach, Manohar Paluri, Ahmed Elgammal, and Mohamed Elhoseiny. Large-scale visual relationship understanding. In AAAI Conference on Artificial Intelligence, 2019. + +# APPENDIX + +# A RELATION BETWEEN (2) AND THE INFOMAX OBJECTIVE + +Proposition 1. Let $X$ be a random variable and define $X _ { 1 } = g _ { 1 } ( X )$ and $X _ { 2 } = g _ { 2 } ( X )$ be arbitrary functions of $X$ . Then $I ( X _ { 1 } ; X _ { 2 } ) \leq I \left( X ; ( X _ { 1 } , X _ { 2 } ) \right)$ . + +Proof. Follows by two applications of the data processing inequality, which states that for random variables $X , Y$ and $Z$ satisfying the Markov relation $X Y Z$ , the inequality $I ( X ; Z ) \ \leq$ $I ( X ; Y )$ holds. + +The first step is to observe that $X$ , $X _ { 1 }$ and $X _ { 2 }$ satisfy the relation $X _ { 1 } \left. X \right. X _ { 2 }$ , which is Markov equivalent to $X _ { 1 } X X _ { 2 }$ (in particular, $X _ { 1 }$ and $X _ { 2 }$ are conditionally independent given $X$ ). It therefore follows that $I ( X _ { 1 } ; X _ { 2 } ) \leq I ( X ; X _ { 1 } )$ . The second step is to observe that $X ( X _ { 1 } , X _ { 2 } ) X _ { 1 }$ and therefore $I ( X ; X _ { 1 } ) \leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )$ . + +Combining the two inequalities yields $I ( X _ { 1 } ; X _ { 2 } ) \leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )$ , as required. + +# B EXPERIMENT DETAILS: ADVERSARIALLY TRAINED ENCODER(SECTION 3.1) + +In the following, we present the details for training the invertible model from Section 3.1 adversarially. We model $g _ { 1 }$ with the same RealNVP architecture as in the first experiment, and do not model $g _ { 2 }$ . On top of $g _ { 1 } ( X ^ { ( 1 ) } )$ we add a linear layer mapping to 10 outputs (i.e. logits). The parameters of the linear layer trained by minimizing the cross-entropy loss with respect to the true label of $X$ from which $X ^ { ( 1 ) }$ is derived. Conversely, the parameters of the encoder $g _ { 1 }$ are trained to minimize the cross-entropy loss with respect to a uniform probability vector over all 10 classes. We use the Adam optimizer with a learning rate of $1 0 ^ { - 4 }$ for the parameters of the classifier and $1 0 ^ { - 6 }$ for the parameters of the encoder, and perform 10 classifier optimization steps per encoder step. Furthermore, in a warm-up phase we train the classifier for 1k iterations before alternating between classifier and encoder steps. + +# C CONNECTION BETWEEN METRIC LEARNING AND INFONCE + +$I _ { \mathrm { N C E } }$ can be rewritten as follows: + +$$ +\begin{array} { r l } & { I _ { \mathrm { R e x s } } = \mathbb { E } \left[ \displaystyle \frac { 1 } { K } \displaystyle \sum _ { i = 1 } ^ { K } \log \frac { e ^ { f ( x _ { i } , y _ { j } ) } } { \frac { 1 } { K } \displaystyle \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \right] } \\ & { \quad = \mathbb { E } \left[ \displaystyle \frac { 1 } { K } \displaystyle \sum _ { i = 1 } ^ { K } \log \frac { 1 } { \frac { 1 } { K } \displaystyle \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } } \right] } \\ & { \quad = \mathbb { E } \left[ - \displaystyle \frac { 1 } { K } \displaystyle \sum _ { i = 1 } ^ { K } \log \frac { 1 } { K } \displaystyle \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \right] } \\ & { \quad = \log K - \mathbb { E } \left[ \displaystyle \frac { 1 } { K } \displaystyle \sum _ { i = 1 } ^ { K } \log \left( 1 + \displaystyle \sum _ { j \neq i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \right) \right] . } \end{array} +$$ + +# D INFONCE UNDER NON-I.I.D. SAMPLING + +The proof that InfoNCE is a lower bound on MI presented in (Poole et al., 2019) makes crucial use of the assumption that the negative samples are drawn from the true marginal distribution. We briefly review this proof to highlight the importance of the negative sampling distribution. Their proof starts from the NWJ lower bound of the KL divergence, namely that for any function $\tilde { f }$ the following lower bound holds (Nguyen et al., 2010; Nowozin et al., 2016): + +$$ +I ( X ; Y ) = D _ { K L } ( p ( x , y ) | | p ( x ) p ( y ) ) \geq \mathbb { E } _ { p ( x , y ) } [ \tilde { f } ( x , y ) ] - e ^ { - 1 } \mathbb { E } _ { p ( x ) p ( y ) } [ e ^ { \tilde { f } ( x , y ) } ] . +$$ + +Suppose that $( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }$ are i.i.d. draws from $p ( x , y )$ and write $X _ { 1 : K } = ( X _ { 1 } , X _ { 2 } , \dots , X _ { K } )$ . Then, for any $i$ we have that $I ( X _ { 1 : K } ; Y _ { i } ) = I ( X _ { i } ; Y _ { i } ) = I ( X ; Y )$ . We thus have + +$$ +\begin{array} { r } { I ( \boldsymbol { X } ; \boldsymbol { Y } ) = I ( X _ { 1 : K } ; Y _ { i } ) \ge \mathbb { E } _ { p ( x _ { i } , y _ { i } ) \prod _ { k \geqslant i } p ( x _ { k } ) } [ \tilde { f } ( x _ { 1 : K } , y _ { i } ) ] - e ^ { - 1 } \mathbb { E } _ { p ( y _ { i } ) \prod _ { k } p ( x _ { k } ) } [ e ^ { \tilde { f } ( x _ { 1 : K } , y _ { i } ) } ] , } \end{array} +$$ + +where the equality follows from the assumption that the $( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }$ are i.i.d. and the inequality is (6) applied to $I ( X _ { 1 : K } ; Y _ { i } )$ . In particular, taking $\begin{array} { r } { \tilde { f } ( x _ { 1 : K } , y _ { i } ) = 1 + \log \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \end{array}$ ef(xj ,yi) yields + +$$ +\textmd { ( X , Y ) \geq 1 + } \mathbb { E } _ { p ( x _ { i } , y _ { i } ) \prod _ { k \geqslant i } p ( x _ { k } ) } \left[ \log \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \right] - \mathbb { E } _ { p ( y _ { i } ) \prod _ { k } p ( x _ { k } ) } \left[ \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \right] . +$$ + +This is then averaged over the $K$ samples $Y _ { i }$ , in which case the third term above cancels with the constant 1 (all occurences of $y _ { i }$ in the last term of (7) can be replaced with $y _ { 1 }$ thanks to $( X _ { i } , Y _ { i } )$ being identically distributed), yielding the familiar $I _ { \mathrm { N C E } }$ lower bound: + +$$ +I ( X , Y ) \geq \mathbb { E } _ { \prod _ { k } p ( x _ { k } , y _ { k } ) } { \frac { 1 } { K } } \sum _ { i = 1 } ^ { K } \left[ \log { \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \frac { 1 } { K } } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \right] = I _ { \mathbb { N } \mathbb { C } } . +$$ + +The point in this proof that makes use of the i.i.d. assumption of the negative samples is in the equality $I ( X _ { i } , Y _ { i } ) = I ( X _ { 1 : K } , Y _ { i } )$ , which allowed us to leverage multiple samples when estimating the MI between two variables. If instead the negative samples are drawn in a dependent fashion (corresponding to the $( X _ { i } , Y _ { i } )$ being drawn identically but not independently), we have $I ( X _ { i } , Y _ { i } ) \leq$ $I ( X _ { 1 : K } , Y _ { i } )$ , though the remainder of the proof still holds, resulting in + +$$ +I ( X , Y ) \leq \frac { 1 } { K } \sum _ { i = 1 } ^ { K } I ( X _ { 1 : K } ; Y _ { i } ) \geq \mathbb { E } _ { p ( x _ { 1 : K } , y _ { 1 : K } ) } \frac { 1 } { K } \sum _ { i = 1 } ^ { K } \left[ \log \frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \frac { 1 } { K } \sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \right] . +$$ + +Therefore the resulting $I _ { \mathrm { N C E } }$ estimator is neither a lower nor an upper bound on the true MI $I ( X , Y )$ . + +E EXPERIMENT DETAILS: NON-I.I.D. SAMPLING (SECTION 4) + +Recall that $( X , Y ) = Z + \epsilon$ . We use $Z \sim { \mathcal { N } } ( 0 , \Sigma _ { Z } )$ and $\epsilon \sim \mathcal { N } ( 0 , \Sigma _ { \epsilon } )$ , where + +$$ +\Sigma _ { Z } = \left( { \begin{array} { c c } { 1 } & { - 0 . 5 } \\ { - 0 . 5 } & { 1 } \end{array} } \right) \qquad { \mathrm { a n d } } \qquad \Sigma _ { \epsilon } = \left( { \begin{array} { c c } { 1 } & { 0 . 9 } \\ { 0 . 9 } & { 1 } \end{array} } \right) . +$$ + +Batches of data are obtained as $( X _ { i } , Y _ { i } ) = Z + \epsilon _ { i }$ where each $\epsilon _ { i }$ is sampled independently for each element of the batch, but $Z$ is sampled only once per batch. The true MI $I ( X , Y )$ can be calculated analytically since $( X , Y )$ is jointly Gaussian with known covariance matrix $\Sigma _ { Z } + \Sigma _ { \epsilon }$ : For two univariate random variables $( X , Y )$ that are jointly Gaussian with covariance $\Sigma$ the MI can be written as + +$$ +I ( X , Y ) = - \frac { 1 } { 2 } \log ( 1 - \frac { \Sigma _ { 1 2 } \Sigma _ { 2 1 } } { \Sigma _ { 1 1 } \Sigma _ { 2 2 } } ) . +$$ + +This can be derived using the decomposition $I ( X , Y ) = H ( X ) + H ( Y ) - H ( X , Y )$ and the analytic expression for the entropy $H$ of a Gaussian. + +We compare the same setting trained using i.i.d. sampled pairs $( X _ { i } , Y _ { i } )$ as a baseline. We parametrize the critic as a MLP with 5 hidden layers, each with 10 units and ReLU activations, followed by a linear layer and maximize $I _ { \mathrm { N C E } }$ using these non-i.i.d. samples with batch size 128. Note that if a batch size of $K$ is used, the bound $I _ { \mathrm { N C E } } \leq \log K$ always holds. We used $K$ sufficiently large so that $I ( X , Y ) \leq \log K$ to avoid $I _ { \mathrm { N C E } }$ trivially lower bounding the true MI. + +# F ADDITIONAL FIGURES + +![](images/e3bc66417ec78d24fd4ad9e7fff6ab986083cec15b4855fa50745c89b7014b91.jpg) +Figure 5: Additional plot Section 3.1: The condition number of the Jacobian evaluated at inputs randomly sampled from the data distribution deteriorates, i.e. $g _ { 1 }$ becomes increasingly ill-conditioned (lines represent 0th, 20th, . . . , 100th percentiles for $I _ { \mathrm { N } \bar { w } \bar { s } }$ ; the empirical distribution is obtained by randomly sampling 128 inputs from the data distribution, computing the corresponding condition numbers, and aggregating them across runs). + +![](images/d77b2c9b62b360687ed9dfc30280d3cb98e2bfeb8717db8ee4b31a6e0e849549.jpg) +Figure 6: Additional plot Section 3.2: Testing $I _ { \mathrm { N C E } }$ value for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures. + +![](images/bfebaf5b3a9444dbfa6df2d8f53e998a99eed2e5946708bc27f0b283bc9456d2.jpg) +Figure 7: Additional plots Section 3.3: Testing loss for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) =$ $| I _ { \mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )$ . + +# G RESULTS FOR THE EXPERIMENTS FROM SEC. 3.2 AND 3.3 ON CIFAR10 + +We run the experiments form Sections 3.2 and 3.3 on CIFAR10 with minimal changes. Specifically, we use the same encoder and critic architectures with the only difference that the input layers of the encoders are adapted to process the (flattened) $3 2 \times 1 4 \times 3$ pixel image halves. Furthermore, we reduce the learning rate from $1 0 ^ { - 4 }$ to $1 0 ^ { - 5 }$ and triple the number of training iterations. Linear classification in pixel space from the upper image halves achieves a testing accuracy of about $2 4 \%$ . + +The CIFAR10 results for the experiment investigating the critic architecture (Section 3.2) can be found in Figure 8 and the results for the experiments investigating the encoder architecture (Section 3.3) in Figure 9. The qualitative behavior of the different encoder and critic architectures in terms of downstream testing accuracy and testing $I _ { \mathrm { E S T } }$ is very similar to the one observed for MNIST. The conclusions made for MNIST hence carry over to CIFAR10. + +![](images/56d94b31f65aab6708fdb7dad6d538766c4811675f88ac2a4b08462ae07f14d0.jpg) +Figure 8: Downstream testing accuracy for $I _ { \mathrm { N C E } }$ and $I _ { \mathrm { N } \bar { w } \bar { s } }$ (top row), and corresponding testing $I _ { \mathrm { E S T } }$ value (bottom row) for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures. Bilinear and separable critics lead to higher downstream accuracy than MLP critics, while reaching lower $I _ { \mathrm { N } \bar { W } \bar { J } }$ . Note that $I _ { \mathrm { N } \bar { w } \bar { s } }$ exhibits high variance (which is a known property of $I _ { \mathrm { N } \bar { w } \bar { s } }$ (Poole et al., 2019)). + +![](images/b2c4285498c9141c7ca5eb06e5fd42aac5a4f766c041749337da5ec7f1b22fcb.jpg) +Figure 9: Downstream testing accuracy (top row) and testing loss value (bottom row) for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )$ . For a given estimator and $t$ , ConvNet encoders clearly outperform MLP encoders in terms of downstream testing accuracy. \ No newline at end of file diff --git a/parse/train/rkxoh24FPH/rkxoh24FPH_content_list.json b/parse/train/rkxoh24FPH/rkxoh24FPH_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..1bce61d7b552ee785eb541b6930e0940e904ccf9 --- /dev/null +++ b/parse/train/rkxoh24FPH/rkxoh24FPH_content_list.json @@ -0,0 +1,1891 @@ +[ + { + "type": "text", + "text": "ON MUTUAL INFORMATION MAXIMIZATION FOR REPRESENTATION LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 98, + 826, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Michael Tschannen∗ Josip Djolonga∗ Paul K. Rubenstein† Sylvain Gelly Mario Lucic Google Research, Brain Team ", + "bbox": [ + 183, + 169, + 828, + 199 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 227, + 544, + 242 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Many recent methods for unsupervised or self-supervised representation learning train feature extractors by maximizing an estimate of the mutual information (MI) between different views of the data. This comes with several immediate problems: For example, MI is notoriously hard to estimate, and using it as an objective for representation learning may lead to highly entangled representations due to its invariance under arbitrary invertible transformations. Nevertheless, these methods have been repeatedly shown to excel in practice. In this paper we argue, and provide empirical evidence, that the success of these methods cannot be attributed to the properties of MI alone, and that they strongly depend on the inductive bias in both the choice of feature extractor architectures and the parametrization of the employed MI estimators. Finally, we establish a connection to deep metric learning and argue that this interpretation may be a plausible explanation for the success of the recently introduced methods. ", + "bbox": [ + 233, + 260, + 766, + 440 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 468, + 334, + 484 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Unsupervised representation learning is a fundamental problem in machine learning. Intuitively, one aims to learn a function $g$ which maps the data into some, usually lower-dimensional, space where one can solve some (generally a priori unknown) target supervised tasks more efficiently, i.e. with fewer labels. In contrast to supervised and semi-supervised learning, the learner has access only to unlabeled data. Even though the task seems ill-posed as there is no natural objective one should optimize, by leveraging domain knowledge this approach can be successfully applied to a variety of problem areas, including image (Kolesnikov et al., 2019; van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019) and video classification (Wang and Gupta, 2015; Sun et al., 2019), and natural language understanding (van den Oord et al., 2018; Peters et al., 2018; Devlin et al., 2019). ", + "bbox": [ + 174, + 500, + 825, + 640 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, there has been a revival of approaches inspired by the InfoMax principle (Linsker, 1988): Choose a representation $g ( x )$ maximizing the mutual information (MI) between the input and its representation, possibly subject to some structural constraints. MI measures the amount of information obtained about a random variable $X$ by observing some other random variable $Y ^ { 1 }$ Formally, the MI between $X$ and $Y$ , with joint density $p ( x , y )$ and marginal densities $p ( x )$ and $p ( y )$ , is defined as the Kullback–Leibler (KL) divergence between the joint and the product of the marginals ", + "bbox": [ + 174, + 646, + 825, + 731 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/15728f3d2ad16802b1b65e6e44c1e6759981f83f98327320c511b75cd981c420.jpg", + "text": "$$\nI ( X ; Y ) = D _ { \\mathrm { K L } } \\left( p ( x , y ) \\parallel p ( x ) p ( y ) \\right) = \\mathbb { E } _ { p ( x , y ) } \\left[ \\log \\frac { p ( x , y ) } { p ( x ) p ( y ) } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 282, + 737, + 714, + 772 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The fundamental properties of MI are well understood and have been extensively studied (see e.g. Kraskov et al. (2004)). Firstly, MI is invariant under reparametrization of the variables — namely, if $X ^ { \\prime } = f _ { 1 } ( X )$ and $Y ^ { \\prime } = f _ { 2 } ( Y )$ are homeomorphisms (i.e. smooth invertible maps), then $I ( X ; Y ) = I ( X ^ { \\prime } ; Y ^ { \\prime } )$ . Secondly, estimating MI in high-dimensional spaces is a notoriously difficult task, and in practice one often maximizes a tractable lower bound on this quantity (Poole et al., 2019). ", + "bbox": [ + 174, + 779, + 825, + 849 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Nonetheless, any distribution-free high-confidence lower bound on entropy requires a sample size exponential in the size of the bound (McAllester and Statos, 2018). ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Despite these fundamental challenges, several recent works have demonstrated promising empirical results in representation learning using MI maximization (van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019; Sun et al., 2019). In this work we argue, and provide empirical evidence, that the success of these methods cannot be attributed to the properties of MI alone. In fact, we show that maximizing tighter bounds on MI can result in worse representations. In addition, we establish a connection to deep metric learning and argue that this interpretation may be a plausible explanation of the success of the recently introduced methods.2 ", + "bbox": [ + 174, + 138, + 825, + 236 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND AND RELATED WORK ", + "text_level": 1, + "bbox": [ + 174, + 256, + 513, + 272 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Recent progress and the InfoMax principle While promising results in other domains have been presented in the literature, we will focus on unsupervised image representation learning techniques that have achieved state-of-the-art performance on image classification tasks (Hénaff et al., 2019; Tian et al., 2019; Bachman et al., 2019). The usual problem setup dates back at least to Becker and Hinton (1992) and can conceptually be described as follows: For a given image $X$ , let $X ^ { ( 1 ) }$ and $X ^ { ( 2 ) }$ be different, possibly overlapping views of $X$ , for instance the top and bottom halves of the image. These are encoded using encoders $g _ { 1 }$ and $g _ { 2 }$ respectively, and the MI between the two representations $g _ { 1 } ( X ^ { ( 1 ) } )$ and $g _ { 2 } \\big ( X ^ { ( 2 ) } \\big )$ is maximized, ", + "bbox": [ + 173, + 287, + 825, + 402 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/4bec240137cc50b1fd88007459fc37aa0ebf66a45b8b1fe0f963d2af480aec11.jpg", + "text": "$$\n\\operatorname* { m a x } _ { g _ { 1 } \\in { \\mathcal G } _ { 1 } , g _ { 2 } \\in { \\mathcal G } _ { 2 } } \\quad I _ { \\mathrm { E S T } } \\left( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 356, + 407, + 640, + 438 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $I _ { \\tt E S T } ( X ; Y )$ is a sample-based estimator of the true MI $I ( X ; Y )$ and the function classes $\\mathcal { G } _ { 1 }$ and $\\mathcal { G } _ { 2 }$ can be used to specify structural constraints on the encoders. While not explicitly reflected in (2), note that $g _ { 1 }$ and $g _ { 2 }$ can often share parameters. Furthermore, it can be shown that $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \\le I ( X ; g _ { 1 } ( X ^ { ( 1 ) } ) , g _ { 2 } ( X ^ { ( 2 ) } ) ) ,$ 3 hence the objective in (2) can be seen as a lower bound on the InfoMax objective $\\operatorname* { m a x } _ { g \\in { \\mathcal { G } } } I ( X ; g ( X ) )$ (Linsker, 1988). ", + "bbox": [ + 174, + 443, + 825, + 517 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Practical advantages of multi-view formulations There are two main advantages in using (2) rather than the original InfoMax objective. First, the MI has to be estimated only between the learned representations of the two views, which typically lie on a much lower-dimensional space than the one where the original data $X$ lives. Second, it gives us plenty of modeling flexibility, as the two views can be chosen to capture completely different aspects and modalities of the data, for example: ", + "bbox": [ + 174, + 522, + 825, + 592 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. In the basic form of DeepInfoMax (Hjelm et al., 2019) $g _ { 1 }$ extracts global features from the entire image $X ^ { ( 1 ) }$ and $g _ { 2 }$ local features from image patches $X ^ { ( 2 ) }$ , where $g _ { 1 }$ and $g _ { 2 }$ correspond to activations in different layers of the same convolutional network. Bachman et al. (2019) build on this and compute the two views from different augmentations of the same image. \n2. Contrastive multiview coding (CMC) (Tian et al., 2019) generalizes the objective in (2) to consider multiple views $X ^ { ( i ) }$ , where each $X ^ { ( i ) }$ corresponds to a different image modality (e.g., different color channels, or the image and its segmentation mask). \n3. Contrastive predictive coding (CPC) (van den Oord et al., 2018; Hénaff et al., 2019) incorporates a sequential component of the data. Concretely, one extracts a sequence of patches from an image in some fixed order, maps each patch using an encoder, aggregates the resulting features of the first $t$ patches into a context vector, and maximizes the MI between the context and features extracted from the patch at position $t + k$ . In (2), $X ^ { ( 1 ) }$ would thus correspond to the first $t$ patches and $X ^ { ( 2 ) }$ to the patch at location $t + k$ . Other approaches, such as those presented by Sermanet et al. (2018), Hu et al. (2017), and Ji et al. \n(2019), can be similarly subsumed under the same objective. ", + "bbox": [ + 183, + 598, + 825, + 789 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 796, + 823, + 825 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Lower bounds on MI As evident from (2), another critical choice is the MI estimator $I _ { \\mathrm { E S T } }$ . Given the fundamental limitations of MI estimation (McAllester and Statos, 2018), recent work has focused on deriving lower bounds on MI (Barber and Agakov, 2003; Belghazi et al., 2018; Poole et al., ", + "bbox": [ + 174, + 832, + 826, + 875 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2019). Intuitively, these bounds are based on the following idea: If a classifier can accurately distinguish between samples drawn from the joint $p ( x , y )$ and those drawn from the product of marginals $p ( x ) p ( y )$ , then $X$ and $Y$ have a high MI. ", + "bbox": [ + 173, + 103, + 823, + 147 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We will focus on two such estimators, which are most commonly used in the representation learning literature. The first of them, termed InfoNCE (van den Oord et al., 2018), is defined as ", + "bbox": [ + 169, + 152, + 823, + 181 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/243e78ea4391040da2daea342569b96683de91841d9344da31ddf2c2eff5e20a.jpg", + "text": "$$\nI ( X ; Y ) \\geq \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] \\triangleq I _ { \\tt N C E } ( X ; Y ) ,\n$$", + "text_format": "latex", + "bbox": [ + 294, + 185, + 702, + 229 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the expectation is over $K$ independent samples $\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { K }$ from the joint distribution $p ( x , y )$ (Poole et al., 2019). In practice we estimate (3) using Monte Carlo estimation by averaging over multiple batches of samples. Intuitively, the critic function $f$ tries to predict for each $x _ { i }$ which of the $K$ samples $y _ { 1 } , \\ldots , y _ { k }$ it was jointly drawn with, by assigning high values to the jointly drawn pair, and low values to all other pairs. The second estimator is based on the variational form of the KL divergence due to Nguyen, Wainwright, and Jordan (NWJ) (Nguyen et al., 2010) and takes the form ", + "bbox": [ + 173, + 234, + 825, + 320 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6b3d9b83561e96c5b3c906e840480bf764ed97f34d3354022f149b3be25fbdd1.jpg", + "text": "$$\nI ( X ; Y ) \\geq \\mathbb { E } _ { p ( x , y ) } [ f ( x , y ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( x ) } [ \\mathbb { E } _ { p ( y ) } e ^ { f ( x , y ) } ] \\triangleq I _ { \\mathbb { N } \\mathbb { N } } ( X ; Y ) .\n$$", + "text_format": "latex", + "bbox": [ + 269, + 324, + 727, + 344 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "For detailed derivations we refer the reader to (Ruderman et al., 2012; Poole et al., 2019). Note that these bounds hold for any critic $f$ and when used in (2) one in practice jointly maximizes over $g _ { 1 } , g _ { 2 }$ and $f$ . Furthermore, it can be shown that (3) is maximized by $f ^ { * } ( x , \\bar { y } ) = \\log p ( y | x )$ and (4) by $f ^ { * } ( x , y ) \\mathop { = } 1 + \\log p ( y | x )$ (Poole et al., 2019). Common choices for $f$ include bilinear critics $f ( x , y ) = x ^ { \\top } W y$ (van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019), separable critics $f ( x , y ) = \\phi _ { 1 } ( x ) ^ { \\top } \\phi _ { 2 } ( y )$ (Bachman et al., 2019), and concatenated critics $f ( x , y ) = \\phi ( [ x , y ] )$ (Hjelm et al., 2019) (here $\\phi , \\phi _ { 1 } , \\phi _ { 2 }$ are typically shallow multi-layer perceptrons (MLPs)). When applying these estimators to solve (2), the line between the critic and the encoders $g _ { 1 } , g _ { 2 }$ can be blurry. For example, one can train with an inner product critic $f ( x , y ) = x ^ { \\top } y$ , but extract features from an intermediate layer of $g _ { 1 } , g _ { 2 }$ , in which case the top layers of $g _ { 1 } , g _ { 2 }$ form a separable critic. Nevertheless, this boundary is crucial for the interplay between MI estimation and the interpretation of the learned representations. ", + "bbox": [ + 173, + 348, + 825, + 515 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 BIASES IN APPROXIMATE INFORMATION MAXIMIZATION ", + "text_level": 1, + "bbox": [ + 176, + 536, + 671, + 551 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "It is folklore knowledge that maximizing MI does not necessarily lead to useful representations. Already Linsker (1988) talks in his seminal work about constraints, while a manifestation of the problem in clustering approaches using MI criteria has been brought up by Bridle et al. (1992) and subsequently addressed using regularization by Krause et al. (2010). To what can we then attribute the recent success of methods building on the principles of MI maximization? We will argue that their connection to the InfoMax principle might be very loose. Namely, we will show that they behave counter-intuitively if one equates them with MI maximization, and that the performance of these methods depends strongly on the bias that is encoded not only in the encoders, but also on the actual form of the used estimators. ", + "bbox": [ + 173, + 565, + 825, + 691 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "1. We first consider encoders which are bijective by design. Even though the true MI is maximized for any choice of model parameters, the representation quality (measured by downstream linear classification accuracy) improves during training. Furthermore, there exist invertible encoders for which the representation quality is worse than using raw pixels, despite also maximizing MI. \n2. We next consider encoders that can model both invertible and non-invertible functions. When the encoder can be non-invertible, but is initialized to be invertible, $I _ { \\mathrm { E S T } }$ still biases the encoders to be very ill-conditioned and hard to invert. \n3. For $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ , higher-capacity critics admit tighter bounds on MI. We demonstrate that simple critics yielding loose bounds can lead to better representations than high-capacity critics. \n4. Finally, we optimize the estimators to the same MI lower-bound value with different encoder architectures and show that the representation quality can be impacted more by the choice of the architecture, than the estimator. ", + "bbox": [ + 186, + 700, + 826, + 873 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As a consequence, we argue that the success of these methods and the way they are instantiated in practice is only loosely connected to MI. Then, in Section 4 we provide an alternative explanation for the success of recent methods through a connection to classic triplet losses from metric learning. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/a84c5f10c5703c8bb062be5139fa94f689d1924b0e49aabbcdefbabec169b769.jpg", + "image_caption": [ + "Figure 1: (a, b) Maximizing $I _ { \\mathrm { E S T } }$ over a family of invertible models. We can see that during training the downstream classification performance improves (and the testing $I _ { \\mathrm { E S T } }$ value increases), even though the true MI remains constant throughout. (c) Downstream classification accuracy of a different invertible encoder (with the same architecture) trained to have poor performance. This demonstrates the existence of encoders that provably maximize MI yet have bad downstream performance. " + ], + "image_footnote": [], + "bbox": [ + 181, + 97, + 816, + 232 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Setup Our goal is to provide a minimal set of easily reproducible empirical experiments to understand the role of MI estimators, critic and encoder architectures when learning representations via the objective (2). To this end, we consider a simple setup of learning a representation of the top half of MNIST handwritten digit images (we present results for the experiments from Sections 3.2 and 3.3 on CIFAR10 in Appendix G; the conclusions are analogous). This setup has been used in the context of deep canonical correlation analysis (Andrew et al., 2013), where the target is to maximize the correlation between the representations. Following the widely adopted downstream linear evaluation protocol (Kolesnikov et al., 2019; van den Oord et al., 2018; Hénaff et al., 2019; Tian et al., 2019; Hjelm et al., 2019; Bachman et al., 2019), we train a linear classifier4 for digit classification on the learned representation using all available training labels (other evaluation protocols are discussed in Section 5). To learn the representation we instantiate (2) and split each input MNIST image $x \\in [ 0 , 1 ] ^ { 7 8 4 }$ into two parts, the top part of the image $x _ { \\mathrm { t o p } } \\in [ 0 , 1 ] ^ { 3 9 2 }$ corresponding to $X ^ { ( 1 ) }$ , and the bottom part, $x _ { \\mathrm { b o t t o m } } \\in [ 0 , 1 ] ^ { 3 9 2 }$ , corresponding to $X ^ { ( 2 ) }$ , respectively. We train $g _ { 1 } , g _ { 2 }$ , and $f$ using the Adam optimizer (Kingma and Ba, 2015), and use $g _ { 1 } \\big ( x _ { \\mathrm { t o p } } \\big )$ as the representation for the linear evaluation. Unless stated otherwise, we use a bilinear critic $f ( x , y ) = x ^ { \\top } W y$ (we investigate its effect in a separate ablation study), set the batch size to 128 and the learning rate to $1 0 ^ { - 4 }$ . 5 Throughout, $I _ { \\mathrm { E S T } }$ values and downstream classification accuracies are averaged over 20 runs and reported on the testing set (we did not observe large gaps between the training and testing values of $I _ { \\mathrm { E S T } } ,$ ). As a common baseline, we rely on a linear classifier in pixel space on $x _ { \\mathrm { t o p } }$ , which obtains a testing accuracy of about $8 5 \\%$ . For comparison, a simple MLP or ConvNet architecture achieves about $5 4 \\%$ (see Section 3.3 for details). ", + "bbox": [ + 173, + 338, + 825, + 635 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 LARGE MI IS NOT PREDICTIVE OF DOWNSTREAM PERFORMANCE ", + "text_level": 1, + "bbox": [ + 176, + 660, + 665, + 672 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We start by investigating the behavior of $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { J } } } }$ when $g _ { 1 }$ and $g _ { 2 }$ are parameterized to be always invertible. Hence, for any choice of the encoder parameters, the MI is constant, i.e. $I ( g _ { 1 } ( X ^ { \\acute { ( 1 ) } } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) = I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )$ for all $g _ { 1 } , g _ { 2 }$ . This means that if we could exactly compute the MI, any parameter choice would be a global maximizer and thus the gradients vanish everywhere.6 However, as we will empirically show, the estimators we consider are biased and prefer those settings which yield representations useful for the downstream classification task. ", + "bbox": [ + 174, + 688, + 826, + 772 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Maximized MI and improved downstream performance We model $g _ { 1 }$ and $g _ { 2 }$ using the invertible RealNVP architecture (Dinh et al., 2016). We use a total of 30 coupling layers, and each of them computes the shift using a separate MLP with two ReLU hidden layers, each with 512 units. ", + "bbox": [ + 176, + 780, + 823, + 821 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/47a695e5fcef7059f0d8b7d49d675445acaafdcfd22f6c9b2f1667165ff97877.jpg", + "image_caption": [ + "Figure 2: Maximizing $I _ { \\mathrm { E S T } }$ using a network architecture that can realize both invertible and noninvertible functions. (a, b) As $I _ { \\mathrm { E S T } }$ increases, the linear classification testing performance increases. (c) Meanwhile, the condition number of Jacobian evaluated at inputs randomly sampled from the data distribution deteriorates, i.e. $g _ { 1 }$ becomes increasingly ill-conditioned (lines represent 0th, 20th, . . . , $1 0 0 \\mathrm { { t h } }$ percentiles for $I _ { \\mathrm { N C E } }$ , the corresponding figure for $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ can be found in Appendix F; the empirical distribution is obtained by randomly sampling 128 inputs from the data distribution, computing the corresponding condition numbers, and aggregating them across runs). " + ], + "image_footnote": [], + "bbox": [ + 179, + 92, + 813, + 227 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Figure 1 shows the testing value of $I _ { \\mathrm { E S T } }$ and the testing accuracy on the classification task. Despite the fact that MI is maximized by any instantiation of $g _ { 1 }$ and $g _ { 2 }$ , $I _ { \\mathrm { E S T } }$ and downstream accuracy increase during training, implying that the estimators provide gradient feedback leading to a representation useful for linear classification. This confirms our hypothesis that the estimator biases the encoders towards solutions suitable to solve the downstream linear classification task. ", + "bbox": [ + 174, + 348, + 825, + 416 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The previous experiment demonstrated that among many invertible encoders, all of which are globally optimal MI maximizers, some give rise to improved linear classification performance over raw pixels, and maximizing $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { J } } } }$ yields such encoders. Next we demonstrate that for the same invertible encoder architecture there are model parameters for which linear classification performance is significantly worse than using raw pixels, despite also being globally optimal MI maximizers. ", + "bbox": [ + 174, + 424, + 825, + 494 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Maximized MI and worsened downstream performance The goal is to learn a (bijective) representation maximizing MI such that the optimal linear classifier performs poorly; we achieve this by jointly training a representation and classifier in an adversarial fashion (a separate classifier is trained for the evaluation), without using a MI estimator. Intuitively, we will train the encoder to make the classification task for the linear layer as hard as possible. The experimental details are presented in Appendix B. Figure 1c shows the result of one such training run, displaying the loss of a separately trained classifier on top of the frozen representation. At the beginning of training the network is initialized to be close to the identity mapping, and as such achieves the baseline classification accuracy corresponding to raw pixels. All points beyond this correspond to invertible feature maps with worse classification performance, despite still achieving globally maximal MI. ", + "bbox": [ + 173, + 501, + 825, + 640 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Alternatively, the following thought experiment would yield the same conclusion: Using a lossless compression algorithm (e.g. PNG) for $g _ { 1 }$ and $g _ { 2 }$ also satisfies $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \\ =$ $I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )$ . Yet, performing linear classification on the raw compressed bit stream $g _ { 1 } ( X ^ { ( 1 ) } )$ will likely lead to worse performance than the baseline in pixel space. The information content alone is not sufficient to guarantee a useful geometry in the representation space. ", + "bbox": [ + 174, + 647, + 825, + 719 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We next investigate the behavior of the model if we use a network architecture that can model both invertible and non-invertible functions. We would like to understand whether $I _ { \\mathrm { E S T } }$ prefers the network to remain bijective, thus maximizing the true MI, or to ignore part of the input signal, which can be beneficial for representation learning. ", + "bbox": [ + 174, + 727, + 825, + 784 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Bias towards hard-to-invert encoders We use an MLP architecture with 4 hidden layers of the same dimension as the input, and with a skip connection added to each layer (hence by setting all weights to 0 the network becomes the identity function). As quantifying invertibility is hard, we analyze the condition number, i.e. the ratio between the largest and the smallest singular value, of the Jacobian of $g _ { 1 }$ : By the implicit function theorem, the function is invertible if the Jacobian is non-singular.7 However, the data itself might lie on a low-dimensional manifold, so that having a singular Jacobian is not necessarily indicative of losing invertibility on the support of the data distribution. To ensure the support of the data distribution covers the complete input space, we corrupt $X ^ { ( 1 ) }$ and $X ^ { ( 2 ) }$ in a coupled way by adding to each the same 392-dimensional random vector, whose coordinates are sampled (independently of $X ^ { ( 1 ) } , X ^ { ( 2 ) } )$ from a normal with standard deviation 0.05 (the standard deviation of the pixels themselves is 0.3). Hence, non-invertible encoders $g _ { 1 } , g _ { 2 }$ do not maximize $I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) )$ . 8 As a reference point, the linear classification accuracy from pixels drops to about $84 \\%$ due to the added noise. ", + "bbox": [ + 174, + 790, + 825, + 887 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/8aa32e9c03a77e8657ee9a3fc96b1e03d12ad15997f3d7f40349ab8ce7ec0d00.jpg", + "image_caption": [ + "Figure 3: Downstream testing accuracy for $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ , and testing $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ value for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures (the testing $I _ { \\mathrm { N C E } }$ curve can be found in Appendix F). Bilinear and separable critics lead to higher downstream accuracy than MLP critics, while reaching lower $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ . " + ], + "image_footnote": [], + "bbox": [ + 187, + 97, + 810, + 212 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 276, + 825, + 363 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In Figure 2 we can see that the $I _ { \\mathrm { E S T } }$ value and the downstream accuracy both increase during training, as before. Moreover, even though $g _ { 1 }$ is initialized very close to the identity function (which maximizes the true MI), the condition number of its Jacobian evaluated at inputs randomly sampled from the data-distribution steadily deteriorates over time, suggesting that in practice (i.e. numerically) inverting the model becomes increasingly hard. It therefore seems that the bounds we consider favor hard-to-invert encoders, which heavily attenuate part of the noise (as the support of the noise is the entire input space), over well conditioned encoders (such as the identity function at initialization), which preserve the noise and hence the entropy of the data well. ", + "bbox": [ + 174, + 371, + 825, + 482 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.2 HIGHER CAPACITY CRITICS CAN LEAD TO WORSE DOWNSTREAM PERFORMANCE", + "text_level": 1, + "bbox": [ + 176, + 503, + 771, + 517 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In the previous section we have established that MI and downstream performance are only loosely connected. Clearly, maximizing MI is not sufficient to learn good representations and there is a non-trivial interplay between the architectures of the encoder, critic, and the underlying estimators. In this section, we will focus on how one of these factors, namely the critic architecture, impacts the quality of the learned representation. Recall that it determines how the estimators such as $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { I } } } }$ distinguish between samples from the joint distribution $p ( x , y )$ and the product of the marginals $p ( x ) p ( y )$ , and thereby determines the tightness on the lower bound. A higher capacity critic should allow for a tighter lower-bound on MI (Belghazi et al., 2018). Furthermore, in the context of representation learning where $f$ is instantiated as a neural network, the critic provides gradient feedback to $g _ { 1 }$ and $g _ { 2 }$ and thereby shapes the learned representation. ", + "bbox": [ + 173, + 530, + 825, + 670 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Looser bounds with simpler critics can lead to better representations We compare three critic architectures, a bilinear critic, a separable critic $f ( x , y ) \\stackrel { \\mathrm { ~ } } { = } \\phi _ { 1 } ( x ) ^ { \\top } \\phi _ { 2 } ( y ) ( \\phi _ { 1 } , \\phi _ { 2 }$ are MLPs with a single hidden layer with 100 units and ReLU activations, followed by a linear layer with 100 units; comprising $4 0 \\mathrm { k }$ parameters in total) and an MLP critic with a single hidden layer with 200 units and ReLU activations, applied to the concatenated input $[ x , y ]$ (40k trainable parameters). Further, we use identical MLP architectures for $g _ { 1 }$ and $g _ { 2 }$ with two hidden layers comprising 300 units each, and a third linear layer mapping to a 100-dimensional feature space. ", + "bbox": [ + 173, + 676, + 825, + 773 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figure 3 shows the downstream testing accuracy and the testing $I _ { \\mathrm { E S T } }$ value as a function of the iteration (see Appendix G for the corresponding results on CIFAR10). It can be seen that for both lower bounds, representations trained with the MLP critic barely outperform the baseline on pixel space, whereas the same lower bounds with bilinear and separable critics clearly lead to a higher accuracy than the baseline. While the testing $I _ { \\mathrm { N C E } }$ value is close to the theoretically achievable maximum value for all critics, the testing $I _ { \\mathrm { N } \\bar { W } \\bar { J } }$ value is higher for the MLP critic than for the separable and bilinear critics, resulting in a tighter bound on the MI. However, despite achieving the smallest ", + "bbox": [ + 173, + 781, + 825, + 878 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/bf9d8c2d5e81792c60fb051b5b3799ff17a09863301230629190341d2eb3b09e.jpg", + "image_caption": [ + "Figure 4: (a, b) Downstream testing accuracy for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \\mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) =$ $| I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |$ ; loss curves can be found in Appendix F). For a given estimator and $t$ , ConvNet encoders clearly outperform MLP encoders in terms of downstream testing accuracy. (c) Estimating MI from i.i.d. and non-i.i.d. samples in a synthetic setting (Section 4). If negative samples are not drawn i.i.d., both $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { W } \\bar { J } }$ estimators can be greater than the true MI. Despite being commonly justified as a lower bound on MI, $I _ { \\mathrm { N C E } }$ is often used in the non-i.i.d. setting in practice. " + ], + "image_footnote": [], + "bbox": [ + 181, + 98, + 815, + 229 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "$I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ testing value, the simple bilinear critic leads to a better downstream performance than the higher-capacity separable and MLP critics. ", + "bbox": [ + 174, + 361, + 821, + 388 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "A related phenomenon was observed in the context of variational autoencoders (VAEs) (Kingma and Welling, 2014), where one maximizes a lower bound on the data likelihood: Looser bounds often yield better inference models, i.e. latent representations (Rainforth et al., 2018). ", + "bbox": [ + 174, + 396, + 825, + 438 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.3 ENCODER ARCHITECTURE CAN BE MORE IMPORTANT THAN THE SPECIFIC ESTIMATOR ", + "text_level": 1, + "bbox": [ + 173, + 460, + 807, + 473 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We will now show that the encoder architecture is a critical design choice and we will investigate its effect on the learned representation. We consider the same MLP architecture (238k parameters) as in Section 3.2, as well as a ConvNet architecture comprising two convolution layers (with a $5 \\times 5$ kernel, stride of 2, ReLU activations, and 64 and 128 channels, respectively; $2 2 0 \\mathrm { k }$ parameters), followed by spatial average pooling and a fully connected layer. Before the average pooling operation we apply layer normalization (Ba et al., 2016) which greatly reduces the variance of $\\bar { I } _ { \\mathrm { N W } } ^ { \\mathrm { ~ ~ } } \\bar { J }$ . 9 To ensure that both network architectures achieve the same lower bound $I _ { \\mathrm { E S T } }$ on the MI, we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |$ instead of solving (2), for two different values $t = 2 , 4$ ", + "bbox": [ + 173, + 486, + 825, + 599 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Figure 4 shows the downstream testing accuracy as a function of the training iteration (see Appendix G for the corresponding results on CIFAR10). It can be seen in the testing loss curves in Appendix F that for both architectures and estimators the objective value after 7k iterations matches the target $t$ (i.e., $L _ { t } ( g _ { 1 } , g _ { 2 } ) \\approx 0 )$ which implies that they achieve the same lower-bound on the MI. Despite matching lower bounds, ConvNet encoders lead to clearly superior classification accuracy, for both $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ . Note that, in contrast, the MLP and ConvNet architectures trained end-to-end in supervised fashion both achieve essentially the same testing accuracy of about $9 4 \\%$ . ", + "bbox": [ + 173, + 604, + 825, + 703 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In the context of VAEs, Alemi et al. (2018) similarly observed that models achieving the same evidence lower bound value can lead to vastly different representations depending on the employed encoder architecture, and do not necessarily capture useful information about the data (Tschannen et al., 2018; Blau and Michaeli, 2019). ", + "bbox": [ + 174, + 709, + 825, + 765 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 CONNECTION TO DEEP METRIC LEARNING AND TRIPLET LOSSES ", + "text_level": 1, + "bbox": [ + 176, + 790, + 738, + 806 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In the previous section we empirically demonstrated that there is a disconnect between approximate MI maximization and representation quality. However, many recent works have applied the $I _ { \\mathrm { N C E } }$ estimator to obtain state-of-the-art results in practice. We provide some insight on this conundrum by connecting $I _ { \\mathrm { N C E } }$ to a popular triplet $k$ -plet) loss known in the deep metric learning community. ", + "bbox": [ + 174, + 824, + 825, + 881 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The metric learning view Given sets of triplets, namely an anchor point $x$ , a positive instance $y$ , and a negative instance $z$ , the goal is to learn a representation $g ( x )$ such that the distances (i.e., $\\ell _ { 2 }$ ) between $g ( x )$ and $g ( y )$ is smaller than the distance between $g ( x )$ and $g ( z )$ , for each triplet. In the supervised setting, the positive instances are usually sampled from the same class, while the negative instances are sampled from any other class. A major focus in deep metric learning is how to perform (semi-)hard positive mining — we want to present non-trivial triplets to the learning algorithm which become more challenging as $g$ improves. Natural extensions to the unsupervised setting can be obtained by exploiting the structure present in the input data, namely spatial (e.g. patches from the same image should be closer than patches from different images) and temporal information (temporally close video frames should be encoded closer than the ones which are further away in time) (Hoffer and Ailon, 2015). ", + "bbox": [ + 173, + 103, + 826, + 257 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Connection to InfoNCE The InfoNCE objective can be rewritten as follows: ", + "bbox": [ + 176, + 262, + 692, + 279 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/4865ee3219d7d938dfd53613ca8157fbc691b587965551a9b9a6bd525099ed70.jpg", + "text": "$$\n\\tilde { \\mathrm { \\Sigma } } _ { \\mathrm { N C E } } = \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] = \\log K - \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\sum _ { j \\ne i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 282, + 828, + 333 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The derivation is presented in Appendix C. In the particular case that $x$ and $y$ take value in the same space and $f$ is constrained to be of the form $f ( x , y ) = \\phi ( x ) ^ { \\top } \\phi ( y )$ , for some function $\\phi$ , this coincides (up to constants and change of sign) with the expectation of the multi-class $K$ -pair loss proposed in (Sohn, 2016, Eqn. (7)): ", + "bbox": [ + 174, + 335, + 825, + 392 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/9ce25da6e970470c3dc44ec565657cfb0753a9c0cdc951af563afa335e874c47.jpg", + "text": "$$\nL _ { \\mathrm { K - p a i r r o c } } \\left( \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { K } , \\phi \\right) = \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\sum _ { j \\ne i } e ^ { \\phi ( x _ { i } ) ^ { \\top } \\phi ( y _ { j } ) - \\phi ( x _ { i } ) ^ { \\top } \\phi ( y _ { i } ) } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 235, + 397, + 763, + 446 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Representation learning by maximizing $I _ { \\mathrm { N C E } }$ using a symmetric separable critic $f ( x , y ) = \\phi ( x ) ^ { \\top } \\phi ( y )$ and an encoder $g = g _ { 1 } = g _ { 2 }$ shared across views is thus equivalent to metric learning based on (5). When using different encoders for different views and asymmetric critics as employed by CPC, DeepInfoMax, and CMC one recovers asymmetric variants of (5), see, e.g. (Yu et al., 2017; Zhang et al., 2019). As a result, one can view (5) as learning encoders with a parameter-less inner product critic, for which the MI lower-bound is very weak in general. ", + "bbox": [ + 173, + 452, + 825, + 536 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "There are (at least) two immediate benefits of viewing recent representation learning methods based on MI estimators through the lens of metric learning. Firstly, in the MI view, using inner product or bilinear critic functions is sub-optimal since the critic should ideally be as flexible as possible in order to reduce the gap between the lower bound and the true MI. In the metric learning view, the inner product critic corresponds to a simple metric on the embedding space. The metric learning view seems hence in better accordance with the observations from Section 3.2 than the MI view. Secondly, it elucidates the importance of appropriately choosing the negative samples, which is indeed a critical component in deep metric learning based on triplet losses (Norouzi et al., 2012; Schroff et al., 2015). ", + "bbox": [ + 173, + 542, + 825, + 655 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "InfoNCE and the importance of negative sampling The negative sample mining issue also manifests itself in MI-based contrastive losses. In fact, while InfoNCE is a lower bound on MI if the negative samples are drawn from the true marginal distribution (Poole et al., 2019), i.e. ", + "bbox": [ + 174, + 661, + 825, + 704 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/52e91f01da6694fcddd8df01621988aa6ac5cf229695ad2c31dfba41037daae4.jpg", + "text": "$$\nI ( X , Y ) \\geq \\mathbb { E } _ { \\prod _ { k } p ( x _ { k } , y _ { k } ) } { \\frac { 1 } { K } } \\sum _ { i = 1 } ^ { K } \\left[ \\log { \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \\frac { 1 } { K } } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\right] \\triangleq I _ { \\mathbb { N } \\mathbb { C } } ,\n$$", + "text_format": "latex", + "bbox": [ + 282, + 708, + 714, + 752 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "we show that if the negative samples are drawn in a dependent fashion (corresponding to the $( x _ { i } , y _ { i } )$ being drawn identically but not independently), the $I _ { \\mathrm { N C E } }$ estimator is in general neither a lower nor an upper bound on the true MI $I ( X , Y )$ . We prove this in Appendix D and present empirical evidence here. Let $( X , Y ) = Z + \\epsilon .$ , where $\\bar { Z } \\sim \\mathcal { N } ( 0 , \\Sigma _ { Z } )$ and $\\epsilon \\sim \\mathcal { N } ( 0 , \\Sigma _ { \\epsilon } )$ are two-dimensional Gaussians. We generate batches of data $( X _ { i } , Y _ { i } ) = Z + \\epsilon _ { i }$ where each $\\epsilon _ { i }$ is sampled independently for each element of the batch, but $Z$ is sampled only once per batch. As such, $( X _ { i } , Y _ { i } )$ has the same marginal distribution for each $i$ , but the elements of the batch are not independent. Although we do not treat it theoretically, we also display results of the same experiment using the $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ estimator. The experimental details are presented in Appendix E. We observe in Figure $_ \\mathrm { 4 c }$ that when using noni.i.d. samples both the $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ values are larger than the true MI, and that when i.i.d. samples are used, both are lower bounds on the true MI. Hence, the connection to MI under improper negative sampling is no longer clear and might vanish completely. ", + "bbox": [ + 173, + 756, + 826, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Notwithstanding this fundamental problem, the negative sampling strategy is often treated as a design choice. In Hénaff et al. (2019), CPC is applied to images by partitioning the input image into patches. Then, MI (estimated by InfoNCE) between representations of patches and a context summarizing several patches that are vertically above or below in the same image is minimized. Negative samples are obtained by patches from different images as well as patches from the same image, violating the independence assumption. Similarly, van den Oord et al. (2018) learn representations of speech using samples from a variety of speakers. It was found that using utterances from the same speaker as negative samples is more effective, whereas the “proper” negative samples should be drawn from an appropriate mixture of utterances from all speakers. ", + "bbox": [ + 174, + 103, + 825, + 229 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A common observation is that increasing the number of negative examples helps in practice (Hjelm et al., 2019; Tian et al., 2019; Bachman et al., 2019). Indeed, Ma and Collins (2018) show that $I _ { \\mathrm { N C E } }$ is consistent for any number of negative samples (under technical conditions), and Poole et al. (2019) show that the signal-to-noise ratio increases with the number of negative samples. On the other hand, (Arora et al., 2019) have demonstrated, both theoretically and empirically, that increasing the number of negative samples does not necessarily help, and can even deteriorate the performance. The intricacies of negative sampling hence remain a key research challenge. ", + "bbox": [ + 174, + 236, + 825, + 333 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 369, + 318, + 385 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Is MI maximization a good objective for learning good representations in an unsupervised fashion? Possibly, but it is clearly not sufficient. In this work we have demonstrated that, under the common linear evaluation protocol, maximizing lower bounds on MI as done in modern incarnations of the InfoMax principle can result in bad representations. We have revealed that the commonly used estimators have strong inductive biases and—perhaps surprisingly—looser bounds can lead to better representations. Furthermore, we have demonstrated that the connection of recent approaches to MI maximization might vanish if negative samples are not drawn independently (as done by some approaches in the literature). As a result, it is unclear whether the connection to MI is a sufficient (or necessary) component for designing powerful unsupervised representation learning algorithms. We propose that the success of these recent methods could be explained through the view of triplet-based metric learning and that leveraging advances in that domain might lead to further improvements. We have several suggestions for future work, which we summarize in the following. ", + "bbox": [ + 174, + 410, + 825, + 577 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alternative measures of information We believe that the question of developing new notions of information suitable for representation learning should receive more attention. While MI has appealing theoretical properties, it is clearly not sufficient for this task—it is hard to estimate, invariant to bijections and can result in suboptimal representations which do not correlate with downstream performance. Therefore, a new notion of information should account for both the amount of information stored in a representation and the geometry of the induced space necessary for good performance on downstream tasks. One possible avenue is to consider extensions to MI which explicitly account for the modeling power and computational constraints of the observer, such as the recently introduced $\\mathcal { F }$ -information $\\mathrm { X u }$ et al. (2020). Alternatively, one can investigate other statistical divergences to measure the discrepancy between $p ( x , y )$ and $p ( x ) p ( y )$ . For example, using the Wasserstein distance leads to promising results in representation learning as it naturally enforces smoothness in the encoders (Ozair et al., 2019). ", + "bbox": [ + 174, + 583, + 825, + 750 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A holistic view We believe that any theory on measuring information for representation learning built on critics should explicitly take into account the function families one uses (e.g. that of the critic and estimator). Most importantly, we would expect some natural trade-offs between the amount of information that can be stored against how hard it is to extract it in the downstream tasks as a function of the architectural choices. While the distribution of downstream tasks is typically assumed unknown in representation learning, it might be possible to rely on weaker assumptions such as a family of invariances relevant for the downstream tasks. Moreover, it seems that in the literature (i) the critics that are used to measure the information, (ii) the encoders, and (iii) the downstream models/evaluation protocol are all mostly chosen independently of each other. Our empirical results show that the downstream performance depends on the intricate balance between these choices and we believe that one should co-design them. This holistic view is currently under-explored and due to the lack of any theory or extensive studies to guide the practitioners. ", + "bbox": [ + 174, + 757, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Going beyond the widely used linear evaluation protocol While it was shown that learning good representations under the linear evaluation protocol can lead to reduced sample complexity for downstream tasks (Arora et al., 2019), some recent works (Bachman et al., 2019; Tian et al., 2019) report marginal improvements in terms of the downstream performance under a non-linear regime. Related to the previous point, it would hence be interesting to further explore the implications of the evaluation protocol, in particular its importance in the context of other design choices. We stress that a highly-nonlinear evaluation framework may result in better downstream performance, but it defeats the purpose of learning efficiently transferable data representations. ", + "bbox": [ + 174, + 103, + 825, + 214 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Systematic investigations into design decisions that matter On the practical side, we believe that the link to metric learning could lead to new methods, that break away from the goal of estimating MI and place more weight on the aspects that have a stronger effect on the performance such as the negative sampling strategy. An example where the metric learning perspective led to similar methods as the MI view is presented by Sermanet et al. (2018): They developed a multi-view representation learning approach for video data similar to CMC, but without drawing negative samples independently and seemingly without relying on the MI mental model to motivate their design choices. ", + "bbox": [ + 174, + 222, + 825, + 319 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 343, + 356, + 357 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We would like to thank Alex Alemi, Ben Poole, Olivier Bachem, and Alexey Dosovitskiy for inspiring discussions and comments on the manuscript. We are grateful for the general support and discussions from other members of Google Brain team in Zurich. ", + "bbox": [ + 176, + 373, + 825, + 415 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 438, + 285, + 454 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexander Alemi, Ben Poole, Ian Fischer, Joshua Dillon, Rif A Saurous, and Kevin Murphy. Fixing a Broken ELBO. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 173, + 462, + 823, + 491 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Galen Andrew, Raman Arora, Jeff Bilmes, and Karen Livescu. Deep canonical correlation analysis. In International Conference on Machine Learning, 2013. ", + "bbox": [ + 171, + 502, + 825, + 532 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sanjeev Arora, Hrishikesh Khandeparkar, Mikhail Khodak, Orestis Plevrakis, and Nikunj Saunshi. A theoretical analysis of contrastive unsupervised representation learning. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 176, + 542, + 823, + 585 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. ", + "bbox": [ + 173, + 597, + 823, + 626 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Philip Bachman, R Devon Hjelm, and William Buchwalter. Learning representations by maximizing mutual information across views. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 173, + 637, + 825, + 667 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Barber and Felix V Agakov. The IM algorithm: a variational approach to information maximization. In Advances in Neural Information Processing Systems, 2003. ", + "bbox": [ + 171, + 678, + 823, + 708 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Suzanna Becker and Geoffrey E Hinton. Self-organizing neural network that discovers surfaces in random-dot stereograms. Nature, 1992. ", + "bbox": [ + 173, + 718, + 823, + 748 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mohamed Ishmael Belghazi, Aristide Baratin, Sai Rajeshwar, Sherjil Ozair, Yoshua Bengio, Devon Hjelm, and Aaron Courville. Mutual information neural estimation. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 174, + 758, + 825, + 803 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anthony J Bell and Terrence J Sejnowski. An information-maximization approach to blind separation and blind deconvolution. Neural computation, 1995. ", + "bbox": [ + 173, + 814, + 823, + 843 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yochai Blau and Tomer Michaeli. Rethinking lossy compression: The rate-distortion-perception tradeoff. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 854, + 823, + 883 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John S Bridle, Anthony JR Heading, and David JC MacKay. Unsupervised classifiers, mutual information and phantom targets. In Advances in Neural Information Processing Systems, 1992. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aaron Defazio, Francis Bach, and Simon Lacoste-Julien. SAGA: A fast incremental gradient method with support for non-strongly convex composite objectives. In Advances in Neural Information Processing Systems, 2014. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "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. In Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, 2019. ", + "bbox": [ + 173, + 156, + 826, + 199 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real nvp. arXiv preprint arXiv:1605.08803, 2016. ", + "bbox": [ + 174, + 209, + 823, + 239 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Olivier J Hénaff, Ali Razavi, Carl Doersch, SM Eslami, and Aaron van den Oord. Data-efficient image recognition with contrastive predictive coding. arXiv preprint arXiv:1905.09272, 2019. ", + "bbox": [ + 173, + 248, + 821, + 279 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "R Devon Hjelm, Alex Fedorov, Samuel Lavoie-Marchildon, Karan Grewal, Phil Bachman, Adam Trischler, and Yoshua Bengio. Learning deep representations by mutual information estimation and maximization. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 178, + 287, + 825, + 332 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Elad Hoffer and Nir Ailon. Deep metric learning using triplet network. In International Workshop on Similarity-Based Pattern Recognition, 2015. ", + "bbox": [ + 171, + 342, + 823, + 371 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Weihua Hu, Takeru Miyato, Seiya Tokui, Eiichi Matsumoto, and Masashi Sugiyama. Learning discrete representations via information maximizing self-augmented training. In International Conference on Machine Learning, 2017. ", + "bbox": [ + 174, + 381, + 825, + 424 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xu Ji, João F Henriques, and Andrea Vedaldi. Invariant information clustering for unsupervised image classification and segmentation. In IEEE International Conference on Computer Vision, 2019. ", + "bbox": [ + 174, + 434, + 826, + 477 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on Learning Representation, 2015. ", + "bbox": [ + 174, + 487, + 825, + 517 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-encoding variational Bayes. International Conference on Learning Representation, 2014. ", + "bbox": [ + 173, + 526, + 825, + 555 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexander Kolesnikov, Xiaohua Zhai, and Lucas Beyer. Revisiting self-supervised visual representation learning. International Conference on Computer Vision, 2019. ", + "bbox": [ + 171, + 565, + 825, + 595 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexander Kraskov, Harald Stögbauer, and Peter Grassberger. Estimating mutual information. Physical review E, 2004. ", + "bbox": [ + 173, + 604, + 823, + 635 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andreas Krause, Pietro Perona, and Ryan G Gomes. Discriminative clustering by regularized information maximization. In Advances in Neural Information Processing Systems, 2010. ", + "bbox": [ + 174, + 645, + 825, + 674 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ralph Linsker. Self-organization in a perceptual network. Computer, 1988. ", + "bbox": [ + 174, + 684, + 668, + 699 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhuang Ma and Michael Collins. Noise contrastive estimation and negative sampling for conditional models: Consistency and statistical efficiency. arXiv preprint arXiv:1809.01812, 2018. ", + "bbox": [ + 176, + 710, + 825, + 739 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David McAllester and Karl Statos. Formal limitations on the measurement of mutual information. arXiv preprint arXiv:1811.04251, 2018. ", + "bbox": [ + 173, + 750, + 825, + 779 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "XuanLong Nguyen, Martin J Wainwright, and Michael I Jordan. Estimating divergence functionals and the likelihood ratio by convex risk minimization. IEEE Transactions on Information Theory, 2010. ", + "bbox": [ + 174, + 789, + 825, + 830 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mohammad Norouzi, David J Fleet, and Ruslan R Salakhutdinov. Hamming distance metric learning. In Advances in Neural Information Processing Systems, 2012. ", + "bbox": [ + 171, + 842, + 825, + 871 + ], + "page_idx": 10 + }, + { + "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, 2016. ", + "bbox": [ + 174, + 881, + 825, + 922 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sherjil Ozair, Corey Lynch, Yoshua Bengio, Aaron van den Oord, Sergey Levine, and Pierre Sermanet. Wasserstein dependency measure for representation learning. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 176, + 103, + 823, + 145 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Fabian Pedregosa, Gaël Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-learn: Machine learning in python. Journal of Machine Learning Research, 2011. ", + "bbox": [ + 176, + 155, + 823, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Matthew E Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettlemoyer. Deep contextualized word representations. In Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, 2018. ", + "bbox": [ + 174, + 205, + 826, + 250 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ben Poole, Sherjil Ozair, Aaron van den Oord, Alex Alemi, and George Tucker. On variational bounds of mutual information. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 257, + 823, + 286 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tom Rainforth, Adam Kosiorek, Tuan Anh Le, Chris Maddison, Maximilian Igl, Frank Wood, and Yee Whye Teh. Tighter variational bounds are not necessarily better. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 174, + 295, + 826, + 338 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Avraham Ruderman, Mark D Reid, Darío García-García, and James Petterson. Tighter variational representations of f-divergences via restriction to probability measures. In International Conference on Machine Learning, 2012. ", + "bbox": [ + 174, + 347, + 825, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Florian Schroff, Dmitry Kalenichenko, and James Philbin. Facenet: A unified embedding for face recognition and clustering. In IEEE Conference on Computer Vision and Pattern Recognition, 2015. ", + "bbox": [ + 173, + 398, + 826, + 440 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pierre Sermanet, Corey Lynch, Yevgen Chebotar, Jasmine Hsu, Eric Jang, Stefan Schaal, and Sergey Levine. Time-contrastive networks: Self-supervised learning from video. In IEEE International Conference on Robotics and Automation, 2018. ", + "bbox": [ + 176, + 450, + 825, + 493 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Kihyuk Sohn. Improved deep metric learning with multi-class n-pair loss objective. In Advances in Neural Information Processing Systems, 2016. ", + "bbox": [ + 171, + 501, + 823, + 531 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chen Sun, Fabien Baradel, Kevin Murphy, and Cordelia Schmid. Contrastive bidirectional transformer for temporal representation learning. arXiv preprint arXiv:1906.05743, 2019. ", + "bbox": [ + 173, + 539, + 823, + 569 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yonglong Tian, Dilip Krishnan, and Phillip Isola. Contrastive multiview coding. arXiv preprint arXiv:1906.05849, 2019. ", + "bbox": [ + 173, + 577, + 823, + 606 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Michael Tschannen, Olivier Bachem, and Mario Lucic. Recent advances in autoencoder-based representation learning. arXiv preprint arXiv:1812.05069, 2018. ", + "bbox": [ + 173, + 614, + 823, + 645 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748, 2018. ", + "bbox": [ + 171, + 652, + 825, + 683 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xiaolong Wang and Abhinav Gupta. Unsupervised learning of visual representations using videos. In IEEE International Conference on Computer Vision, 2015. ", + "bbox": [ + 171, + 690, + 825, + 719 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yilun Xu, Shengjia Zhao, Jiaming Song, Russell Stewart, and Stefano Ermon. A Theory of Usable Information under Computational Constraints. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 176, + 728, + 823, + 771 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hong-Xing Yu, Ancong Wu, and Wei-Shi Zheng. Cross-view asymmetric metric learning for unsupervised person re-identification. In IEEE International Conference on Computer Vision, 2017. ", + "bbox": [ + 173, + 780, + 825, + 821 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ji Zhang, Yannis Kalantidis, Marcus Rohrbach, Manohar Paluri, Ahmed Elgammal, and Mohamed Elhoseiny. Large-scale visual relationship understanding. In AAAI Conference on Artificial Intelligence, 2019. ", + "bbox": [ + 174, + 832, + 825, + 875 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 264, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A RELATION BETWEEN (2) AND THE INFOMAX OBJECTIVE ", + "text_level": 1, + "bbox": [ + 176, + 133, + 678, + 151 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proposition 1. Let $X$ be a random variable and define $X _ { 1 } = g _ { 1 } ( X )$ and $X _ { 2 } = g _ { 2 } ( X )$ be arbitrary functions of $X$ . Then $I ( X _ { 1 } ; X _ { 2 } ) \\leq I \\left( X ; ( X _ { 1 } , X _ { 2 } ) \\right)$ . ", + "bbox": [ + 169, + 165, + 825, + 195 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof. Follows by two applications of the data processing inequality, which states that for random variables $X , Y$ and $Z$ satisfying the Markov relation $X Y Z$ , the inequality $I ( X ; Z ) \\ \\leq$ $I ( X ; Y )$ holds. ", + "bbox": [ + 174, + 208, + 825, + 251 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The first step is to observe that $X$ , $X _ { 1 }$ and $X _ { 2 }$ satisfy the relation $X _ { 1 } \\left. X \\right. X _ { 2 }$ , which is Markov equivalent to $X _ { 1 } X X _ { 2 }$ (in particular, $X _ { 1 }$ and $X _ { 2 }$ are conditionally independent given $X$ ). It therefore follows that $I ( X _ { 1 } ; X _ { 2 } ) \\leq I ( X ; X _ { 1 } )$ . The second step is to observe that $X ( X _ { 1 } , X _ { 2 } ) X _ { 1 }$ and therefore $I ( X ; X _ { 1 } ) \\leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )$ . ", + "bbox": [ + 174, + 257, + 825, + 315 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Combining the two inequalities yields $I ( X _ { 1 } ; X _ { 2 } ) \\leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )$ , as required. ", + "bbox": [ + 176, + 319, + 707, + 337 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B EXPERIMENT DETAILS: ADVERSARIALLY TRAINED ENCODER(SECTION 3.1)", + "text_level": 1, + "bbox": [ + 174, + 354, + 718, + 388 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the following, we present the details for training the invertible model from Section 3.1 adversarially. We model $g _ { 1 }$ with the same RealNVP architecture as in the first experiment, and do not model $g _ { 2 }$ . On top of $g _ { 1 } ( X ^ { ( 1 ) } )$ we add a linear layer mapping to 10 outputs (i.e. logits). The parameters of the linear layer trained by minimizing the cross-entropy loss with respect to the true label of $X$ from which $X ^ { ( 1 ) }$ is derived. Conversely, the parameters of the encoder $g _ { 1 }$ are trained to minimize the cross-entropy loss with respect to a uniform probability vector over all 10 classes. We use the Adam optimizer with a learning rate of $1 0 ^ { - 4 }$ for the parameters of the classifier and $1 0 ^ { - 6 }$ for the parameters of the encoder, and perform 10 classifier optimization steps per encoder step. Furthermore, in a warm-up phase we train the classifier for 1k iterations before alternating between classifier and encoder steps. ", + "bbox": [ + 173, + 401, + 826, + 531 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C CONNECTION BETWEEN METRIC LEARNING AND INFONCE ", + "text_level": 1, + "bbox": [ + 173, + 551, + 702, + 568 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "$I _ { \\mathrm { N C E } }$ can be rewritten as follows: ", + "bbox": [ + 174, + 582, + 388, + 595 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/2eb28af347537fd0e83e244a77f15c1471c7792ab1cda7be7526d86672abba99.jpg", + "text": "$$\n\\begin{array} { r l } & { I _ { \\mathrm { R e x s } } = \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { j } ) } } { \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] } \\\\ & { \\quad = \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { 1 } { \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } } \\right] } \\\\ & { \\quad = \\mathbb { E } \\left[ - \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right] } \\\\ & { \\quad = \\log K - \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\displaystyle \\sum _ { j \\neq i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 284, + 597, + 709, + 787 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "D INFONCE UNDER NON-I.I.D. SAMPLING ", + "text_level": 1, + "bbox": [ + 173, + 799, + 544, + 816 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The proof that InfoNCE is a lower bound on MI presented in (Poole et al., 2019) makes crucial use of the assumption that the negative samples are drawn from the true marginal distribution. We briefly review this proof to highlight the importance of the negative sampling distribution. Their proof starts from the NWJ lower bound of the KL divergence, namely that for any function $\\tilde { f }$ the following lower bound holds (Nguyen et al., 2010; Nowozin et al., 2016): ", + "bbox": [ + 173, + 830, + 825, + 904 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/25acdbbb3fe5b324ed4038df7893a441aae4431216503c69fa6a1238d55372a6.jpg", + "text": "$$\nI ( X ; Y ) = D _ { K L } ( p ( x , y ) | | p ( x ) p ( y ) ) \\geq \\mathbb { E } _ { p ( x , y ) } [ \\tilde { f } ( x , y ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( x ) p ( y ) } [ e ^ { \\tilde { f } ( x , y ) } ] .\n$$", + "text_format": "latex", + "bbox": [ + 228, + 905, + 767, + 926 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Suppose that $( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }$ are i.i.d. draws from $p ( x , y )$ and write $X _ { 1 : K } = ( X _ { 1 } , X _ { 2 } , \\dots , X _ { K } )$ . Then, for any $i$ we have that $I ( X _ { 1 : K } ; Y _ { i } ) = I ( X _ { i } ; Y _ { i } ) = I ( X ; Y )$ . We thus have ", + "bbox": [ + 171, + 102, + 826, + 133 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/6bf011198f44d559a7df9ffdc53a90bda5d0ae203c67a28c57219df12de88740.jpg", + "text": "$$\n\\begin{array} { r } { I ( \\boldsymbol { X } ; \\boldsymbol { Y } ) = I ( X _ { 1 : K } ; Y _ { i } ) \\ge \\mathbb { E } _ { p ( x _ { i } , y _ { i } ) \\prod _ { k \\geqslant i } p ( x _ { k } ) } [ \\tilde { f } ( x _ { 1 : K } , y _ { i } ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( y _ { i } ) \\prod _ { k } p ( x _ { k } ) } [ e ^ { \\tilde { f } ( x _ { 1 : K } , y _ { i } ) } ] , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 191, + 156, + 803, + 180 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where the equality follows from the assumption that the $( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }$ are i.i.d. and the inequality is (6) applied to $I ( X _ { 1 : K } ; Y _ { i } )$ . In particular, taking $\\begin{array} { r } { \\tilde { f } ( x _ { 1 : K } , y _ { i } ) = 1 + \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\end{array}$ ef(xj ,yi) yields ", + "bbox": [ + 173, + 185, + 826, + 228 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/827fc1bbe033cd21e55517b744938640b02166889ed26b97ecd5e68b374dac72.jpg", + "text": "$$\n\\textmd { ( X , Y ) \\geq 1 + } \\mathbb { E } _ { p ( x _ { i } , y _ { i } ) \\prod _ { k \\geqslant i } p ( x _ { k } ) } \\left[ \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] - \\mathbb { E } _ { p ( y _ { i } ) \\prod _ { k } p ( x _ { k } ) } \\left[ \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 243, + 828, + 287 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This is then averaged over the $K$ samples $Y _ { i }$ , in which case the third term above cancels with the constant 1 (all occurences of $y _ { i }$ in the last term of (7) can be replaced with $y _ { 1 }$ thanks to $( X _ { i } , Y _ { i } )$ being identically distributed), yielding the familiar $I _ { \\mathrm { N C E } }$ lower bound: ", + "bbox": [ + 173, + 314, + 826, + 358 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c4b330f710076584231eb17a12344d3100a7adb54423037b1470730523754625.jpg", + "text": "$$\nI ( X , Y ) \\geq \\mathbb { E } _ { \\prod _ { k } p ( x _ { k } , y _ { k } ) } { \\frac { 1 } { K } } \\sum _ { i = 1 } ^ { K } \\left[ \\log { \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \\frac { 1 } { K } } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\right] = I _ { \\mathbb { N } \\mathbb { C } } .\n$$", + "text_format": "latex", + "bbox": [ + 282, + 382, + 714, + 426 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The point in this proof that makes use of the i.i.d. assumption of the negative samples is in the equality $I ( X _ { i } , Y _ { i } ) = I ( X _ { 1 : K } , Y _ { i } )$ , which allowed us to leverage multiple samples when estimating the MI between two variables. If instead the negative samples are drawn in a dependent fashion (corresponding to the $( X _ { i } , Y _ { i } )$ being drawn identically but not independently), we have $I ( X _ { i } , Y _ { i } ) \\leq$ $I ( X _ { 1 : K } , Y _ { i } )$ , though the remainder of the proof still holds, resulting in ", + "bbox": [ + 173, + 438, + 826, + 510 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/ddf028218118e476dd360f213a65d0eaecbd9f3ba2f90ce6688d40ae085d2206.jpg", + "text": "$$\nI ( X , Y ) \\leq \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } I ( X _ { 1 : K } ; Y _ { i } ) \\geq \\mathbb { E } _ { p ( x _ { 1 : K } , y _ { 1 : K } ) } \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\left[ \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 232, + 534, + 764, + 578 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Therefore the resulting $I _ { \\mathrm { N C E } }$ estimator is neither a lower nor an upper bound on the true MI $I ( X , Y )$ . ", + "bbox": [ + 171, + 590, + 826, + 607 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "E EXPERIMENT DETAILS: NON-I.I.D. SAMPLING (SECTION 4) ", + "bbox": [ + 173, + 625, + 702, + 642 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Recall that $( X , Y ) = Z + \\epsilon$ . We use $Z \\sim { \\mathcal { N } } ( 0 , \\Sigma _ { Z } )$ and $\\epsilon \\sim \\mathcal { N } ( 0 , \\Sigma _ { \\epsilon } )$ , where ", + "bbox": [ + 174, + 655, + 689, + 672 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d77b680826ff2ac675e7533def8b827d7f626eb222c2ee7f04758f02bc9163a2.jpg", + "text": "$$\n\\Sigma _ { Z } = \\left( { \\begin{array} { c c } { 1 } & { - 0 . 5 } \\\\ { - 0 . 5 } & { 1 } \\end{array} } \\right) \\qquad { \\mathrm { a n d } } \\qquad \\Sigma _ { \\epsilon } = \\left( { \\begin{array} { c c } { 1 } & { 0 . 9 } \\\\ { 0 . 9 } & { 1 } \\end{array} } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 310, + 678, + 687, + 713 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Batches of data are obtained as $( X _ { i } , Y _ { i } ) = Z + \\epsilon _ { i }$ where each $\\epsilon _ { i }$ is sampled independently for each element of the batch, but $Z$ is sampled only once per batch. The true MI $I ( X , Y )$ can be calculated analytically since $( X , Y )$ is jointly Gaussian with known covariance matrix $\\Sigma _ { Z } + \\Sigma _ { \\epsilon }$ : For two univariate random variables $( X , Y )$ that are jointly Gaussian with covariance $\\Sigma$ the MI can be written as ", + "bbox": [ + 173, + 718, + 826, + 786 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/cd27ab7c0798506aa3961c144bebf1b6ef36dc50baae434841d0ee52b2c08ac8.jpg", + "text": "$$\nI ( X , Y ) = - \\frac { 1 } { 2 } \\log ( 1 - \\frac { \\Sigma _ { 1 2 } \\Sigma _ { 2 1 } } { \\Sigma _ { 1 1 } \\Sigma _ { 2 2 } } ) .\n$$", + "text_format": "latex", + "bbox": [ + 383, + 784, + 614, + 815 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "This can be derived using the decomposition $I ( X , Y ) = H ( X ) + H ( Y ) - H ( X , Y )$ and the analytic expression for the entropy $H$ of a Gaussian. ", + "bbox": [ + 174, + 818, + 825, + 848 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We compare the same setting trained using i.i.d. sampled pairs $( X _ { i } , Y _ { i } )$ as a baseline. We parametrize the critic as a MLP with 5 hidden layers, each with 10 units and ReLU activations, followed by a linear layer and maximize $I _ { \\mathrm { N C E } }$ using these non-i.i.d. samples with batch size 128. Note that if a batch size of $K$ is used, the bound $I _ { \\mathrm { N C E } } \\leq \\log K$ always holds. We used $K$ sufficiently large so that $I ( X , Y ) \\leq \\log K$ to avoid $I _ { \\mathrm { N C E } }$ trivially lower bounding the true MI. ", + "bbox": [ + 173, + 853, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "F ADDITIONAL FIGURES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 397, + 118 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/e3bc66417ec78d24fd4ad9e7fff6ab986083cec15b4855fa50745c89b7014b91.jpg", + "image_caption": [ + "Figure 5: Additional plot Section 3.1: The condition number of the Jacobian evaluated at inputs randomly sampled from the data distribution deteriorates, i.e. $g _ { 1 }$ becomes increasingly ill-conditioned (lines represent 0th, 20th, . . . , 100th percentiles for $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ ; the empirical distribution is obtained by randomly sampling 128 inputs from the data distribution, computing the corresponding condition numbers, and aggregating them across runs). " + ], + "image_footnote": [], + "bbox": [ + 392, + 136, + 602, + 253 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/d77b2c9b62b360687ed9dfc30280d3cb98e2bfeb8717db8ee4b31a6e0e849549.jpg", + "image_caption": [ + "Figure 6: Additional plot Section 3.2: Testing $I _ { \\mathrm { N C E } }$ value for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures. " + ], + "image_footnote": [], + "bbox": [ + 383, + 352, + 612, + 478 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/bfebaf5b3a9444dbfa6df2d8f53e998a99eed2e5946708bc27f0b283bc9456d2.jpg", + "image_caption": [ + "Figure 7: Additional plots Section 3.3: Testing loss for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \\mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) =$ $| I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )$ . " + ], + "image_footnote": [], + "bbox": [ + 253, + 535, + 743, + 661 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "G RESULTS FOR THE EXPERIMENTS FROM SEC. 3.2 AND 3.3 ON CIFAR10 ", + "text_level": 1, + "bbox": [ + 171, + 744, + 805, + 762 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We run the experiments form Sections 3.2 and 3.3 on CIFAR10 with minimal changes. Specifically, we use the same encoder and critic architectures with the only difference that the input layers of the encoders are adapted to process the (flattened) $3 2 \\times 1 4 \\times 3$ pixel image halves. Furthermore, we reduce the learning rate from $1 0 ^ { - 4 }$ to $1 0 ^ { - 5 }$ and triple the number of training iterations. Linear classification in pixel space from the upper image halves achieves a testing accuracy of about $2 4 \\%$ . ", + "bbox": [ + 173, + 776, + 826, + 848 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The CIFAR10 results for the experiment investigating the critic architecture (Section 3.2) can be found in Figure 8 and the results for the experiments investigating the encoder architecture (Section 3.3) in Figure 9. The qualitative behavior of the different encoder and critic architectures in terms of downstream testing accuracy and testing $I _ { \\mathrm { E S T } }$ is very similar to the one observed for MNIST. The conclusions made for MNIST hence carry over to CIFAR10. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/56d94b31f65aab6708fdb7dad6d538766c4811675f88ac2a4b08462ae07f14d0.jpg", + "image_caption": [ + "Figure 8: Downstream testing accuracy for $I _ { \\mathrm { N C E } }$ and $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ (top row), and corresponding testing $I _ { \\mathrm { E S T } }$ value (bottom row) for MLP encoders $g _ { 1 } , g _ { 1 }$ and different critic architectures. Bilinear and separable critics lead to higher downstream accuracy than MLP critics, while reaching lower $I _ { \\mathrm { N } \\bar { W } \\bar { J } }$ . Note that $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ exhibits high variance (which is a known property of $I _ { \\mathrm { N } \\bar { w } \\bar { s } }$ (Poole et al., 2019)). " + ], + "image_footnote": [], + "bbox": [ + 220, + 125, + 779, + 411 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/b2c4285498c9141c7ca5eb06e5fd42aac5a4f766c041749337da5ec7f1b22fcb.jpg", + "image_caption": [ + "Figure 9: Downstream testing accuracy (top row) and testing loss value (bottom row) for different encoder architectures and MI estimators, using a bilinear critic trained to match a given target $I _ { \\mathrm { E S T } }$ of $t$ (we minimize $L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )$ . For a given estimator and $t$ , ConvNet encoders clearly outperform MLP encoders in terms of downstream testing accuracy. " + ], + "image_footnote": [], + "bbox": [ + 218, + 537, + 779, + 828 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/rkxoh24FPH/rkxoh24FPH_model.json b/parse/train/rkxoh24FPH/rkxoh24FPH_model.json new file mode 100644 index 0000000000000000000000000000000000000000..f28cd73bd71926788149f06d158f766fe61f8457 --- /dev/null +++ b/parse/train/rkxoh24FPH/rkxoh24FPH_model.json @@ -0,0 +1,29781 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 574, + 1303, + 574, + 1303, + 970, + 398, + 970 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1102, + 1405, + 1102, + 1405, + 1409, + 298, + 1409 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1423, + 1405, + 1423, + 1405, + 1609, + 298, + 1609 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1714, + 1405, + 1714, + 1405, + 1870, + 298, + 1870 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1408, + 219, + 1408, + 323, + 300, + 323 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 296, + 1891, + 1404, + 1891, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 485, + 1625, + 1212, + 1625, + 1212, + 1701, + 485, + 1701 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 313, + 373, + 1410, + 373, + 1410, + 439, + 313, + 439 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1648, + 1399, + 1648, + 1399, + 1677, + 1366, + 1677 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 302, + 1032, + 572, + 1032, + 572, + 1067, + 302, + 1067 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 773, + 502, + 926, + 502, + 926, + 536, + 773, + 536 + ], + "score": 0.802 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 856, + 2088, + 856, + 2112, + 840, + 2112 + ], + "score": 0.744 + }, + { + "category_id": 14, + "poly": [ + 483, + 1624, + 1216, + 1624, + 1216, + 1701, + 483, + 1701 + ], + "score": 0.94, + "latex": "I ( X ; Y ) = D _ { \\mathrm { K L } } \\left( p ( x , y ) \\parallel p ( x ) p ( y ) \\right) = \\mathbb { E } _ { p ( x , y ) } \\left[ \\log \\frac { p ( x , y ) } { p ( x ) p ( y ) } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 615, + 1776, + 755, + 1776, + 755, + 1810, + 615, + 1810 + ], + "score": 0.93, + "latex": "Y ^ { \\prime } = f _ { 2 } ( Y )" + }, + { + "category_id": 13, + "poly": [ + 711, + 1547, + 792, + 1547, + 792, + 1580, + 711, + 1580 + ], + "score": 0.92, + "latex": "p ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 578, + 1454, + 632, + 1454, + 632, + 1488, + 578, + 1488 + ], + "score": 0.92, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1807, + 542, + 1807, + 542, + 1840, + 298, + 1840 + ], + "score": 0.92, + "latex": "I ( X ; Y ) = I ( X ^ { \\prime } ; Y ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1546, + 1105, + 1546, + 1105, + 1579, + 1051, + 1579 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 418, + 1777, + 562, + 1777, + 562, + 1808, + 418, + 1808 + ], + "score": 0.91, + "latex": "X ^ { \\prime } = f _ { 1 } ( X )" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1547, + 1209, + 1547, + 1209, + 1580, + 1156, + 1580 + ], + "score": 0.9, + "latex": "p ( y )" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1515, + 1206, + 1515, + 1206, + 1543, + 1170, + 1543 + ], + "score": 0.88, + "latex": "Y ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 908, + 1978, + 974, + 1978, + 974, + 2007, + 908, + 2007 + ], + "score": 0.86, + "latex": "X , Y )" + }, + { + "category_id": 13, + "poly": [ + 673, + 1517, + 701, + 1517, + 701, + 1543, + 673, + 1543 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 396, + 1548, + 424, + 1548, + 424, + 1574, + 396, + 1574 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 568, + 1138, + 587, + 1138, + 587, + 1166, + 568, + 1166 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 475, + 1547, + 500, + 1547, + 500, + 1574, + 475, + 1574 + ], + "score": 0.76, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 520, + 2007, + 569, + 2007, + 569, + 2034, + 520, + 2034 + ], + "score": 0.67, + "latex": "x , y )" + }, + { + "category_id": 13, + "poly": [ + 911, + 1918, + 970, + 1918, + 970, + 1946, + 911, + 1946 + ], + "score": 0.5, + "latex": "^ \\dag \\mathrm { P h D }" + }, + { + "category_id": 13, + "poly": [ + 368, + 1921, + 389, + 1921, + 389, + 1945, + 368, + 1945 + ], + "score": 0.47, + "latex": "@" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1894, + 1100, + 1894, + 1100, + 1917, + 1079, + 1917 + ], + "score": 0.43, + "latex": "@" + }, + { + "category_id": 13, + "poly": [ + 754, + 1921, + 775, + 1921, + 775, + 1945, + 754, + 1945 + ], + "score": 0.41, + "latex": "@" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1411.0, + 217.0, + 1411.0, + 271.0, + 293.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 819.0, + 277.0, + 819.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1889.0, + 1078.0, + 1889.0, + 1078.0, + 1924.0, + 332.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1889.0, + 1405.0, + 1889.0, + 1405.0, + 1924.0, + 1101.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1917.0, + 367.0, + 1917.0, + 367.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1917.0, + 753.0, + 1917.0, + 753.0, + 1953.0, + 390.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1917.0, + 910.0, + 1917.0, + 910.0, + 1953.0, + 776.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1917.0, + 1406.0, + 1917.0, + 1406.0, + 1953.0, + 971.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1945.0, + 859.0, + 1945.0, + 859.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1971.0, + 907.0, + 1971.0, + 907.0, + 2015.0, + 329.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2015.0, + 975.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 519.0, + 2001.0, + 519.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 2001.0, + 581.0, + 2001.0, + 581.0, + 2038.0, + 570.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": [ + 293.0, + 1029.0, + 579.0, + 1029.0, + 579.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 501.0, + 932.0, + 501.0, + 932.0, + 539.0, + 769.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 859.0, + 2087.0, + 859.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 570.0, + 1307.0, + 570.0, + 1307.0, + 613.0, + 392.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 605.0, + 1307.0, + 605.0, + 1307.0, + 640.0, + 393.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 634.0, + 1308.0, + 634.0, + 1308.0, + 671.0, + 392.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 667.0, + 1306.0, + 667.0, + 1306.0, + 699.0, + 394.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 698.0, + 1307.0, + 698.0, + 1307.0, + 732.0, + 392.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 728.0, + 1305.0, + 728.0, + 1305.0, + 760.0, + 394.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 758.0, + 1306.0, + 758.0, + 1306.0, + 790.0, + 393.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 789.0, + 1306.0, + 789.0, + 1306.0, + 819.0, + 392.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 821.0, + 1304.0, + 821.0, + 1304.0, + 849.0, + 395.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 850.0, + 1304.0, + 850.0, + 1304.0, + 882.0, + 394.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 875.0, + 1306.0, + 875.0, + 1306.0, + 917.0, + 392.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 910.0, + 1305.0, + 910.0, + 1305.0, + 942.0, + 394.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 941.0, + 766.0, + 941.0, + 766.0, + 975.0, + 395.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1139.0, + 295.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1133.0, + 567.0, + 1133.0, + 567.0, + 1165.0, + 296.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1133.0, + 1402.0, + 1133.0, + 1402.0, + 1165.0, + 588.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1164.0, + 1405.0, + 1164.0, + 1405.0, + 1198.0, + 292.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1406.0, + 1224.0, + 1406.0, + 1258.0, + 293.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 1406.0, + 1256.0, + 1406.0, + 1289.0, + 294.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1287.0, + 1403.0, + 1287.0, + 1403.0, + 1319.0, + 296.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1348.0, + 296.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1378.0, + 662.0, + 1378.0, + 662.0, + 1409.0, + 296.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1425.0, + 1407.0, + 1425.0, + 1407.0, + 1457.0, + 296.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 577.0, + 1453.0, + 577.0, + 1489.0, + 295.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1489.0, + 633.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1485.0, + 1405.0, + 1485.0, + 1405.0, + 1520.0, + 292.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1513.0, + 672.0, + 1513.0, + 672.0, + 1549.0, + 293.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1513.0, + 1169.0, + 1513.0, + 1169.0, + 1549.0, + 702.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1549.0, + 1207.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1544.0, + 395.0, + 1544.0, + 395.0, + 1584.0, + 293.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1544.0, + 474.0, + 1544.0, + 474.0, + 1584.0, + 425.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1544.0, + 710.0, + 1544.0, + 710.0, + 1584.0, + 501.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1544.0, + 1050.0, + 1544.0, + 1050.0, + 1584.0, + 793.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1544.0, + 1155.0, + 1544.0, + 1155.0, + 1584.0, + 1106.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1544.0, + 1407.0, + 1544.0, + 1407.0, + 1584.0, + 1210.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1576.0, + 1251.0, + 1576.0, + 1251.0, + 1612.0, + 295.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1748.0, + 296.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1743.0, + 1408.0, + 1743.0, + 1408.0, + 1781.0, + 291.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1773.0, + 417.0, + 1773.0, + 417.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1773.0, + 614.0, + 1773.0, + 614.0, + 1811.0, + 563.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1811.0, + 756.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1804.0, + 1405.0, + 1804.0, + 1405.0, + 1841.0, + 543.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1836.0, + 1405.0, + 1836.0, + 1405.0, + 1869.0, + 296.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 370.0, + 1414.0, + 370.0, + 1414.0, + 414.0, + 308.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 406.0, + 657.0, + 406.0, + 657.0, + 442.0, + 313.0, + 442.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, + 522, + 298, + 522 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 634, + 1405, + 634, + 1405, + 887, + 297, + 887 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 977, + 1403, + 977, + 1403, + 1139, + 298, + 1139 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1150, + 1404, + 1150, + 1404, + 1305, + 298, + 1305 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1832, + 1406, + 1832, + 1406, + 1925, + 298, + 1925 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 608, + 902, + 1090, + 902, + 1090, + 964, + 608, + 964 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 230, + 1401, + 230, + 1401, + 292, + 296, + 292 + ], + "score": 0.95 + }, + { + "category_id": 2, + "poly": [ + 297, + 1948, + 1404, + 1948, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 1754, + 1401, + 1754, + 1401, + 1817, + 298, + 1817 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 313, + 1319, + 1405, + 1319, + 1405, + 1738, + 313, + 1738 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 566, + 873, + 566, + 873, + 602, + 299, + 602 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 915, + 1400, + 915, + 1400, + 945, + 1366, + 945 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.738 + }, + { + "category_id": 14, + "poly": [ + 607, + 899, + 1089, + 899, + 1089, + 964, + 607, + 964 + ], + "score": 0.93, + "latex": "\\operatorname* { m a x } _ { g _ { 1 } \\in { \\mathcal G } _ { 1 } , g _ { 2 } \\in { \\mathcal G } _ { 2 } } \\quad I _ { \\mathrm { E S T } } \\left( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 453, + 851, + 557, + 851, + 557, + 888, + 453, + 888 + ], + "score": 0.93, + "latex": "g _ { 2 } \\big ( X ^ { ( 2 ) } \\big )" + }, + { + "category_id": 13, + "poly": [ + 374, + 979, + 507, + 979, + 507, + 1012, + 374, + 1012 + ], + "score": 0.92, + "latex": "I _ { \\tt E S T } ( X ; Y )" + }, + { + "category_id": 13, + "poly": [ + 297, + 851, + 402, + 851, + 402, + 888, + 297, + 888 + ], + "score": 0.92, + "latex": "g _ { 1 } ( X ^ { ( 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1016, + 979, + 1114, + 979, + 1114, + 1013, + 1016, + 1013 + ], + "score": 0.91, + "latex": "I ( X ; Y )" + }, + { + "category_id": 13, + "poly": [ + 819, + 1480, + 873, + 1480, + 873, + 1511, + 819, + 1511 + ], + "score": 0.91, + "latex": "X ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1704, + 613, + 1704, + 613, + 1735, + 557, + 1735 + ], + "score": 0.91, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 622, + 1480, + 675, + 1480, + 675, + 1512, + 622, + 1512 + ], + "score": 0.9, + "latex": "X ^ { ( i ) }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1833, + 1319, + 1833, + 1319, + 1863, + 1268, + 1863 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 974, + 1350, + 1031, + 1350, + 1031, + 1382, + 974, + 1382 + ], + "score": 0.9, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1708, + 939, + 1708, + 939, + 1737, + 877, + 1737 + ], + "score": 0.9, + "latex": "t + k" + }, + { + "category_id": 13, + "poly": [ + 430, + 1350, + 488, + 1350, + 488, + 1382, + 430, + 1382 + ], + "score": 0.9, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 757, + 1294, + 757, + 1294, + 789, + 1238, + 789 + ], + "score": 0.9, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1345, + 757, + 1402, + 757, + 1402, + 788, + 1345, + 788 + ], + "score": 0.89, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 856, + 1674, + 919, + 1674, + 919, + 1704, + 856, + 1704 + ], + "score": 0.89, + "latex": "t + k" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1671, + 1065, + 1671, + 1065, + 1703, + 1008, + 1703 + ], + "score": 0.89, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1010, + 329, + 1010, + 329, + 1041, + 297, + 1041 + ], + "score": 0.87, + "latex": "\\mathcal { G } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 388, + 1012, + 420, + 1012, + 420, + 1041, + 388, + 1041 + ], + "score": 0.86, + "latex": "\\mathcal { G } _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1107, + 963, + 1107, + 963, + 1139, + 731, + 1139 + ], + "score": 0.86, + "latex": "\\operatorname* { m a x } _ { g \\in { \\mathcal { G } } } I ( X ; g ( X ) )" + }, + { + "category_id": 13, + "poly": [ + 751, + 826, + 779, + 826, + 779, + 854, + 751, + 854 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1071, + 892, + 1071, + 892, + 1107, + 297, + 1107 + ], + "score": 0.85, + "latex": "I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \\le I ( X ; g _ { 1 } ( X ^ { ( 1 ) } ) , g _ { 2 } ( X ^ { ( 2 ) } ) ) ," + }, + { + "category_id": 13, + "poly": [ + 1206, + 1358, + 1236, + 1358, + 1236, + 1386, + 1206, + 1386 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1358, + 1151, + 1358, + 1151, + 1386, + 1122, + 1386 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 673, + 826, + 701, + 826, + 701, + 854, + 673, + 854 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1325, + 976, + 1325, + 976, + 1352, + 947, + 1352 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1356, + 572, + 1356, + 572, + 1386, + 543, + 1386 + ], + "score": 0.84, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 583, + 1044, + 612, + 1044, + 612, + 1072, + 583, + 1072 + ], + "score": 0.83, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 664, + 1045, + 693, + 1045, + 693, + 1072, + 664, + 1072 + ], + "score": 0.82, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 560, + 1244, + 588, + 1244, + 588, + 1270, + 560, + 1270 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1165, + 761, + 1193, + 761, + 1193, + 789, + 1165, + 789 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 782, + 793, + 809, + 793, + 809, + 819, + 782, + 819 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 402, + 1710, + 417, + 1710, + 417, + 1735, + 402, + 1735 + ], + "score": 0.69, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 482, + 1643, + 497, + 1643, + 497, + 1668, + 482, + 1668 + ], + "score": 0.66, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1941.0, + 1409.0, + 1941.0, + 1409.0, + 1981.0, + 328.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1970.0, + 1132.0, + 1970.0, + 1132.0, + 2010.0, + 291.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1998.0, + 1079.0, + 1998.0, + 1079.0, + 2039.0, + 328.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 562.0, + 877.0, + 562.0, + 877.0, + 607.0, + 291.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 310.0, + 1402.0, + 310.0, + 1402.0, + 340.0, + 297.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 370.0, + 293.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 367.0, + 1405.0, + 367.0, + 1405.0, + 402.0, + 296.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 400.0, + 1404.0, + 400.0, + 1404.0, + 432.0, + 293.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1406.0, + 429.0, + 1406.0, + 464.0, + 292.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 493.0, + 293.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 1372.0, + 491.0, + 1372.0, + 523.0, + 294.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 1403.0, + 635.0, + 1403.0, + 670.0, + 295.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 699.0, + 296.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 696.0, + 1406.0, + 696.0, + 1406.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 1405.0, + 726.0, + 1405.0, + 760.0, + 295.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 754.0, + 1164.0, + 754.0, + 1164.0, + 796.0, + 290.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 754.0, + 1237.0, + 754.0, + 1237.0, + 796.0, + 1194.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 754.0, + 1344.0, + 754.0, + 1344.0, + 796.0, + 1295.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 754.0, + 1408.0, + 754.0, + 1408.0, + 796.0, + 1403.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 789.0, + 781.0, + 789.0, + 781.0, + 828.0, + 292.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 789.0, + 1408.0, + 789.0, + 1408.0, + 828.0, + 810.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 818.0, + 672.0, + 818.0, + 672.0, + 859.0, + 292.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 818.0, + 750.0, + 818.0, + 750.0, + 859.0, + 702.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 859.0, + 780.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 850.0, + 296.0, + 850.0, + 296.0, + 889.0, + 292.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 850.0, + 452.0, + 850.0, + 452.0, + 889.0, + 403.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 850.0, + 726.0, + 850.0, + 726.0, + 889.0, + 558.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 373.0, + 977.0, + 373.0, + 1016.0, + 294.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 977.0, + 1015.0, + 977.0, + 1015.0, + 1016.0, + 508.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 977.0, + 1407.0, + 977.0, + 1407.0, + 1016.0, + 1115.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1008.0, + 387.0, + 1008.0, + 387.0, + 1046.0, + 330.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1008.0, + 1405.0, + 1008.0, + 1405.0, + 1046.0, + 421.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1039.0, + 582.0, + 1039.0, + 582.0, + 1077.0, + 293.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1039.0, + 663.0, + 1039.0, + 663.0, + 1077.0, + 613.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1039.0, + 1407.0, + 1039.0, + 1407.0, + 1077.0, + 694.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1068.0, + 1409.0, + 1068.0, + 1409.0, + 1110.0, + 893.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1100.0, + 730.0, + 1100.0, + 730.0, + 1141.0, + 291.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1100.0, + 1154.0, + 1100.0, + 1154.0, + 1141.0, + 964.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1182.0, + 1404.0, + 1182.0, + 1404.0, + 1216.0, + 296.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 559.0, + 1239.0, + 559.0, + 1279.0, + 293.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1279.0, + 589.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1273.0, + 1341.0, + 1273.0, + 1341.0, + 1309.0, + 293.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1827.0, + 1267.0, + 1827.0, + 1267.0, + 1868.0, + 292.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1827.0, + 1407.0, + 1827.0, + 1407.0, + 1868.0, + 1320.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1862.0, + 1406.0, + 1862.0, + 1406.0, + 1895.0, + 295.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1892.0, + 1409.0, + 1892.0, + 1409.0, + 1928.0, + 292.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1046.0, + 260.0, + 1046.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1752.0, + 1406.0, + 1752.0, + 1406.0, + 1788.0, + 296.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1784.0, + 974.0, + 1784.0, + 974.0, + 1820.0, + 296.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1318.0, + 946.0, + 1318.0, + 946.0, + 1354.0, + 316.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1318.0, + 1404.0, + 1318.0, + 1404.0, + 1354.0, + 977.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1348.0, + 429.0, + 1348.0, + 429.0, + 1390.0, + 349.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1348.0, + 542.0, + 1348.0, + 542.0, + 1390.0, + 489.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1348.0, + 973.0, + 1348.0, + 973.0, + 1390.0, + 573.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1348.0, + 1121.0, + 1348.0, + 1121.0, + 1390.0, + 1032.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1348.0, + 1205.0, + 1348.0, + 1205.0, + 1390.0, + 1152.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1348.0, + 1407.0, + 1348.0, + 1407.0, + 1390.0, + 1237.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1383.0, + 1404.0, + 1383.0, + 1404.0, + 1417.0, + 351.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1415.0, + 1289.0, + 1415.0, + 1289.0, + 1450.0, + 350.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1446.0, + 1407.0, + 1446.0, + 1407.0, + 1487.0, + 318.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1476.0, + 621.0, + 1476.0, + 621.0, + 1524.0, + 349.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1476.0, + 818.0, + 1476.0, + 818.0, + 1524.0, + 676.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1476.0, + 1410.0, + 1476.0, + 1410.0, + 1524.0, + 874.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1514.0, + 1087.0, + 1514.0, + 1087.0, + 1548.0, + 351.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1547.0, + 1404.0, + 1547.0, + 1404.0, + 1586.0, + 319.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1578.0, + 1407.0, + 1578.0, + 1407.0, + 1617.0, + 349.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1610.0, + 1405.0, + 1610.0, + 1405.0, + 1648.0, + 349.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1642.0, + 481.0, + 1642.0, + 481.0, + 1673.0, + 351.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1642.0, + 1404.0, + 1642.0, + 1404.0, + 1673.0, + 498.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1671.0, + 855.0, + 1671.0, + 855.0, + 1709.0, + 350.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1671.0, + 1007.0, + 1671.0, + 1007.0, + 1709.0, + 920.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1709.0, + 1066.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1702.0, + 401.0, + 1702.0, + 401.0, + 1743.0, + 349.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1702.0, + 556.0, + 1702.0, + 556.0, + 1743.0, + 418.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1702.0, + 876.0, + 1702.0, + 876.0, + 1743.0, + 614.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1702.0, + 952.0, + 1702.0, + 952.0, + 1743.0, + 940.0, + 1743.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 768, + 1405, + 768, + 1405, + 1136, + 297, + 1136 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 519, + 1404, + 519, + 1404, + 706, + 297, + 706 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1247, + 1405, + 1247, + 1405, + 1524, + 297, + 1524 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 317, + 1542, + 1406, + 1542, + 1406, + 1924, + 317, + 1924 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1403, + 1942, + 1403, + 2035, + 301, + 2035 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1401, + 228, + 1401, + 325, + 296, + 325 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 502, + 413, + 1198, + 413, + 1198, + 508, + 502, + 508 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 291, + 337, + 1401, + 337, + 1401, + 401, + 291, + 401 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 460, + 717, + 1238, + 717, + 1238, + 762, + 460, + 762 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 300, + 1183, + 1143, + 1183, + 1143, + 1216, + 300, + 1216 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1366, + 725, + 1400, + 725, + 1400, + 754, + 1366, + 754 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 444, + 1400, + 444, + 1400, + 474, + 1366, + 474 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.616 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.513 + }, + { + "category_id": 14, + "poly": [ + 500, + 411, + 1197, + 411, + 1197, + 508, + 500, + 508 + ], + "score": 0.94, + "latex": "I ( X ; Y ) \\geq \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] \\triangleq I _ { \\tt N C E } ( X ; Y ) ," + }, + { + "category_id": 13, + "poly": [ + 413, + 291, + 516, + 291, + 516, + 325, + 413, + 325 + ], + "score": 0.93, + "latex": "p ( x ) p ( y )" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1012, + 1172, + 1012, + 1172, + 1046, + 1002, + 1046 + ], + "score": 0.93, + "latex": "f ( x , y ) = x ^ { \\top } y" + }, + { + "category_id": 13, + "poly": [ + 938, + 519, + 1086, + 519, + 1086, + 555, + 938, + 555 + ], + "score": 0.93, + "latex": "\\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { K }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 830, + 1315, + 830, + 1315, + 864, + 1069, + 864 + ], + "score": 0.92, + "latex": "f ^ { * } ( x , \\bar { y } ) = \\log p ( y | x )" + }, + { + "category_id": 13, + "poly": [ + 883, + 261, + 964, + 261, + 964, + 295, + 883, + 295 + ], + "score": 0.92, + "latex": "p ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 373, + 921, + 642, + 921, + 642, + 956, + 373, + 956 + ], + "score": 0.92, + "latex": "f ( x , y ) = \\phi _ { 1 } ( x ) ^ { \\top } \\phi _ { 2 } ( y )" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1700, + 1137, + 1700, + 1137, + 1731, + 1085, + 1731 + ], + "score": 0.92, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 1188, + 922, + 1403, + 922, + 1403, + 956, + 1188, + 956 + ], + "score": 0.92, + "latex": "f ( x , y ) = \\phi ( [ x , y ] )" + }, + { + "category_id": 13, + "poly": [ + 593, + 954, + 694, + 954, + 694, + 985, + 593, + 985 + ], + "score": 0.92, + "latex": "\\phi , \\phi _ { 1 } , \\phi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 400, + 1766, + 452, + 1766, + 452, + 1797, + 400, + 1797 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 551, + 378, + 551, + 378, + 585, + 298, + 585 + ], + "score": 0.91, + "latex": "p ( x , y )" + }, + { + "category_id": 14, + "poly": [ + 460, + 716, + 1238, + 716, + 1238, + 761, + 460, + 761 + ], + "score": 0.91, + "latex": "I ( X ; Y ) \\geq \\mathbb { E } _ { p ( x , y ) } [ f ( x , y ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( x ) } [ \\mathbb { E } _ { p ( y ) } e ^ { f ( x , y ) } ] \\triangleq I _ { \\mathbb { N } \\mathbb { N } } ( X ; Y ) ." + }, + { + "category_id": 13, + "poly": [ + 506, + 1765, + 558, + 1765, + 558, + 1797, + 506, + 1797 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 495, + 616, + 613, + 616, + 613, + 645, + 495, + 645 + ], + "score": 0.9, + "latex": "y _ { 1 } , \\ldots , y _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1050, + 1136, + 1050, + 1136, + 1076, + 1070, + 1076 + ], + "score": 0.9, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 987, + 1318, + 987, + 1318, + 1015, + 1250, + 1015 + ], + "score": 0.89, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 637, + 1047, + 704, + 1047, + 704, + 1076, + 637, + 1076 + ], + "score": 0.88, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 335, + 862, + 633, + 862, + 633, + 894, + 335, + 894 + ], + "score": 0.87, + "latex": "f ^ { * } ( x , y ) \\mathop { = } 1 + \\log p ( y | x )" + }, + { + "category_id": 13, + "poly": [ + 298, + 835, + 364, + 835, + 364, + 863, + 298, + 863 + ], + "score": 0.86, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 299, + 893, + 508, + 893, + 508, + 924, + 299, + 924 + ], + "score": 0.86, + "latex": "f ( x , y ) = x ^ { \\top } W y" + }, + { + "category_id": 13, + "poly": [ + 1010, + 584, + 1030, + 584, + 1030, + 615, + 1010, + 615 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 705, + 802, + 725, + 802, + 725, + 832, + 705, + 832 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1120, + 865, + 1139, + 865, + 1139, + 894, + 1120, + 894 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 582, + 293, + 611, + 293, + 611, + 319, + 582, + 319 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 416, + 832, + 435, + 832, + 435, + 862, + 416, + 862 + ], + "score": 0.83, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 651, + 522, + 681, + 522, + 681, + 549, + 651, + 549 + ], + "score": 0.83, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1298, + 586, + 1325, + 586, + 1325, + 613, + 1298, + 613 + ], + "score": 0.82, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 368, + 614, + 396, + 614, + 396, + 641, + 368, + 641 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 661, + 292, + 687, + 292, + 687, + 319, + 661, + 319 + ], + "score": 0.76, + "latex": "Y" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1178.0, + 1148.0, + 1178.0, + 1148.0, + 1222.0, + 291.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 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, + 768.0, + 1405.0, + 768.0, + 1405.0, + 802.0, + 295.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 704.0, + 798.0, + 704.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 798.0, + 1407.0, + 798.0, + 1407.0, + 834.0, + 726.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 829.0, + 297.0, + 829.0, + 297.0, + 867.0, + 291.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 829.0, + 415.0, + 829.0, + 415.0, + 867.0, + 365.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 829.0, + 1068.0, + 829.0, + 1068.0, + 867.0, + 436.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 829.0, + 1406.0, + 829.0, + 1406.0, + 867.0, + 1316.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 334.0, + 859.0, + 334.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 859.0, + 1119.0, + 859.0, + 1119.0, + 897.0, + 634.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 897.0, + 1140.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 298.0, + 889.0, + 298.0, + 925.0, + 294.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 889.0, + 1406.0, + 889.0, + 1406.0, + 925.0, + 509.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 919.0, + 372.0, + 919.0, + 372.0, + 959.0, + 292.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 919.0, + 1187.0, + 919.0, + 1187.0, + 959.0, + 643.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 950.0, + 592.0, + 950.0, + 592.0, + 989.0, + 292.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 950.0, + 1406.0, + 950.0, + 1406.0, + 989.0, + 695.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 981.0, + 1249.0, + 981.0, + 1249.0, + 1018.0, + 292.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 981.0, + 1406.0, + 981.0, + 1406.0, + 1018.0, + 1319.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1012.0, + 1001.0, + 1012.0, + 1001.0, + 1047.0, + 292.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1012.0, + 1405.0, + 1012.0, + 1405.0, + 1047.0, + 1173.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1040.0, + 636.0, + 1040.0, + 636.0, + 1080.0, + 291.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1040.0, + 1069.0, + 1040.0, + 1069.0, + 1080.0, + 705.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1040.0, + 1408.0, + 1040.0, + 1408.0, + 1080.0, + 1137.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1073.0, + 1405.0, + 1073.0, + 1405.0, + 1109.0, + 294.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 638.0, + 1102.0, + 638.0, + 1139.0, + 294.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 515.0, + 650.0, + 515.0, + 650.0, + 563.0, + 291.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 515.0, + 937.0, + 515.0, + 937.0, + 563.0, + 682.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 515.0, + 1410.0, + 515.0, + 1410.0, + 563.0, + 1087.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 548.0, + 297.0, + 548.0, + 297.0, + 591.0, + 291.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 548.0, + 1406.0, + 548.0, + 1406.0, + 591.0, + 379.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 582.0, + 1009.0, + 582.0, + 1009.0, + 616.0, + 292.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 582.0, + 1297.0, + 582.0, + 1297.0, + 616.0, + 1031.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 582.0, + 1405.0, + 582.0, + 1405.0, + 616.0, + 1326.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 367.0, + 609.0, + 367.0, + 651.0, + 292.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 609.0, + 494.0, + 609.0, + 494.0, + 651.0, + 397.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 609.0, + 1407.0, + 609.0, + 1407.0, + 651.0, + 614.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 643.0, + 1407.0, + 643.0, + 1407.0, + 677.0, + 292.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1247.0, + 1408.0, + 1247.0, + 1408.0, + 1285.0, + 292.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1278.0, + 1403.0, + 1278.0, + 1403.0, + 1311.0, + 295.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 1406.0, + 1310.0, + 1406.0, + 1345.0, + 292.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1403.0, + 1341.0, + 1403.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1405.0, + 296.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1437.0, + 294.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1431.0, + 1405.0, + 1431.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1405.0, + 1463.0, + 1405.0, + 1495.0, + 295.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1491.0, + 613.0, + 1491.0, + 613.0, + 1526.0, + 295.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1577.0, + 317.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1570.0, + 1405.0, + 1570.0, + 1405.0, + 1610.0, + 349.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1639.0, + 351.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1669.0, + 349.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1673.0, + 345.0, + 1673.0, + 345.0, + 1699.0, + 318.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1704.0, + 349.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1700.0, + 1084.0, + 1700.0, + 1084.0, + 1732.0, + 351.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1700.0, + 1403.0, + 1700.0, + 1403.0, + 1732.0, + 1138.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1730.0, + 845.0, + 1730.0, + 845.0, + 1764.0, + 351.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1763.0, + 399.0, + 1763.0, + 399.0, + 1802.0, + 313.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1763.0, + 505.0, + 1763.0, + 505.0, + 1802.0, + 453.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1763.0, + 1406.0, + 1763.0, + 1406.0, + 1802.0, + 559.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1794.0, + 1409.0, + 1794.0, + 1409.0, + 1835.0, + 348.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1830.0, + 1405.0, + 1830.0, + 1405.0, + 1866.0, + 314.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1899.0, + 351.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1892.0, + 707.0, + 1892.0, + 707.0, + 1926.0, + 351.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1976.0, + 295.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, + 1999.0, + 1370.0, + 1999.0, + 1370.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 882.0, + 259.0, + 882.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 296.0, + 965.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 412.0, + 293.0, + 412.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 293.0, + 581.0, + 293.0, + 581.0, + 324.0, + 517.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 293.0, + 660.0, + 293.0, + 660.0, + 324.0, + 612.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 293.0, + 872.0, + 293.0, + 872.0, + 324.0, + 688.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 332.0, + 1406.0, + 332.0, + 1406.0, + 377.0, + 293.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 369.0, + 1258.0, + 369.0, + 1258.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 745, + 1405, + 745, + 1405, + 1398, + 297, + 1398 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1515, + 1406, + 1515, + 1406, + 1702, + 298, + 1702 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 310, + 216, + 1389, + 216, + 1389, + 513, + 310, + 513 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 542, + 1405, + 542, + 1405, + 695, + 296, + 695 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 300, + 1719, + 1400, + 1719, + 1400, + 1810, + 300, + 1810 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 294, + 1860, + 1406, + 1860, + 1406, + 2033, + 294, + 2033 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 302, + 1454, + 1131, + 1454, + 1131, + 1483, + 302, + 1483 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.778 + }, + { + "category_id": 13, + "poly": [ + 297, + 1576, + 747, + 1576, + 747, + 1613, + 297, + 1613 + ], + "score": 0.93, + "latex": "I ( g _ { 1 } ( X ^ { \\acute { ( 1 ) } } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) = I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1182, + 1228, + 1182, + 1228, + 1217, + 1028, + 1217 + ], + "score": 0.93, + "latex": "f ( x , y ) = x ^ { \\top } W y" + }, + { + "category_id": 13, + "poly": [ + 910, + 1082, + 1082, + 1082, + 1082, + 1118, + 910, + 1118 + ], + "score": 0.93, + "latex": "x _ { \\mathrm { t o p } } \\in [ 0 , 1 ] ^ { 3 9 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1082, + 443, + 1082, + 443, + 1118, + 298, + 1118 + ], + "score": 0.93, + "latex": "x \\in [ 0 , 1 ] ^ { 7 8 4 }" + }, + { + "category_id": 13, + "poly": [ + 491, + 1117, + 696, + 1117, + 696, + 1152, + 491, + 1152 + ], + "score": 0.92, + "latex": "x _ { \\mathrm { b o t t o m } } \\in [ 0 , 1 ] ^ { 3 9 2 }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1516, + 841, + 1516, + 841, + 1548, + 789, + 1548 + ], + "score": 0.92, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 982, + 1150, + 1074, + 1150, + 1074, + 1184, + 982, + 1184 + ], + "score": 0.92, + "latex": "g _ { 1 } \\big ( x _ { \\mathrm { t o p } } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1091, + 574, + 1143, + 574, + 1143, + 604, + 1091, + 604 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 900, + 1517, + 953, + 1517, + 953, + 1548, + 900, + 1548 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { J } } } }" + }, + { + "category_id": 13, + "poly": [ + 612, + 543, + 664, + 543, + 664, + 574, + 612, + 574 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 445, + 1247, + 497, + 1247, + 497, + 1277, + 445, + 1277 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 912, + 1117, + 969, + 1117, + 969, + 1148, + 912, + 1148 + ], + "score": 0.9, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1081, + 1343, + 1081, + 1343, + 1113, + 1287, + 1113 + ], + "score": 0.9, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 824, + 1581, + 891, + 1581, + 891, + 1612, + 824, + 1612 + ], + "score": 0.89, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 590, + 1337, + 643, + 1337, + 643, + 1367, + 590, + 1367 + ], + "score": 0.88, + "latex": "8 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 440, + 1892, + 486, + 1892, + 486, + 1920, + 440, + 1920 + ], + "score": 0.88, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1367, + 420, + 1367, + 420, + 1397, + 366, + 1397 + ], + "score": 0.87, + "latex": "5 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1322, + 1214, + 1382, + 1214, + 1382, + 1244, + 1322, + 1244 + ], + "score": 0.87, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1311, + 1209, + 1311, + 1209, + 1340, + 1164, + 1340 + ], + "score": 0.87, + "latex": "x _ { \\mathrm { t o p } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1307, + 352, + 1307, + 352, + 1338, + 297, + 1338 + ], + "score": 0.87, + "latex": "I _ { \\mathrm { E S T } } ," + }, + { + "category_id": 13, + "poly": [ + 1121, + 1521, + 1151, + 1521, + 1151, + 1548, + 1121, + 1548 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1521, + 1062, + 1521, + 1062, + 1548, + 1032, + 1548 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1723, + 1134, + 1723, + 1134, + 1751, + 1105, + 1751 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1723, + 1215, + 1723, + 1215, + 1750, + 1185, + 1750 + ], + "score": 0.84, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1120, + 1401, + 1120, + 1401, + 1152, + 1380, + 1152 + ], + "score": 0.83, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1954, + 1172, + 1954, + 1172, + 1979, + 1155, + 1979 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 331, + 1947, + 368, + 1947, + 368, + 1976, + 331, + 1976 + ], + "score": 0.61, + "latex": "^ 6 \\mathrm { I n }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 1126, + 1317, + 1126, + 1317, + 1152, + 1288, + 1152 + ], + "score": 0.57, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 701, + 1892, + 937, + 1892, + 937, + 1922, + 701, + 1922 + ], + "score": 0.56, + "latex": "\\mathrm { l o g ( b a t c h ~ s i z e ) } \\approx 4 . 8 5" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1125, + 1274, + 1125, + 1274, + 1152, + 1246, + 1152 + ], + "score": 0.52, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1892, + 936, + 1892, + 936, + 1919, + 857, + 1919 + ], + "score": 0.42, + "latex": "\\approx 4 . 8 5" + }, + { + "category_id": 13, + "poly": [ + 1246, + 1124, + 1317, + 1124, + 1317, + 1153, + 1246, + 1153 + ], + "score": 0.31, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 224.0, + 356.0, + 224.0, + 356.0, + 242.0, + 340.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 223.0, + 728.0, + 223.0, + 728.0, + 249.0, + 684.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 218.0, + 1080.0, + 218.0, + 1080.0, + 245.0, + 1042.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 238.0, + 1375.0, + 238.0, + 1375.0, + 262.0, + 1233.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 255.0, + 356.0, + 255.0, + 356.0, + 273.0, + 340.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 268.0, + 725.0, + 268.0, + 725.0, + 290.0, + 685.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 258.0, + 1080.0, + 258.0, + 1080.0, + 285.0, + 1042.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 254.0, + 1359.0, + 254.0, + 1359.0, + 274.0, + 1234.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 285.0, + 356.0, + 285.0, + 356.0, + 302.0, + 340.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 281.0, + 1094.0, + 281.0, + 1094.0, + 386.0, + 1018.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 315.0, + 334.0, + 315.0, + 334.0, + 351.0, + 312.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 316.0, + 356.0, + 316.0, + 356.0, + 333.0, + 340.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 307.0, + 727.0, + 307.0, + 727.0, + 335.0, + 682.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 345.0, + 358.0, + 345.0, + 358.0, + 366.0, + 339.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 339.0, + 1077.0, + 339.0, + 1077.0, + 362.0, + 1040.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 376.0, + 356.0, + 376.0, + 356.0, + 396.0, + 332.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 380.0, + 655.0, + 380.0, + 655.0, + 410.0, + 610.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 381.0, + 1014.0, + 381.0, + 1014.0, + 407.0, + 971.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 377.0, + 1079.0, + 377.0, + 1079.0, + 405.0, + 1044.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 407.0, + 357.0, + 407.0, + 357.0, + 425.0, + 334.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 399.0, + 657.0, + 399.0, + 657.0, + 430.0, + 610.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 394.0, + 728.0, + 394.0, + 728.0, + 420.0, + 682.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 418.0, + 1080.0, + 418.0, + 1080.0, + 445.0, + 1042.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 436.0, + 371.0, + 436.0, + 371.0, + 458.0, + 352.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 435.0, + 445.0, + 435.0, + 445.0, + 458.0, + 426.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 434.0, + 525.0, + 434.0, + 525.0, + 459.0, + 496.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 434.0, + 599.0, + 434.0, + 599.0, + 459.0, + 569.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 433.0, + 675.0, + 433.0, + 675.0, + 461.0, + 642.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 434.0, + 739.0, + 434.0, + 739.0, + 455.0, + 718.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 433.0, + 810.0, + 433.0, + 810.0, + 454.0, + 791.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 431.0, + 889.0, + 431.0, + 889.0, + 455.0, + 859.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 431.0, + 961.0, + 431.0, + 961.0, + 456.0, + 931.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 431.0, + 1032.0, + 431.0, + 1032.0, + 456.0, + 1003.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 438.0, + 1091.0, + 438.0, + 1091.0, + 459.0, + 1071.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 434.0, + 1138.0, + 434.0, + 1138.0, + 460.0, + 1099.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 438.0, + 1166.0, + 438.0, + 1166.0, + 456.0, + 1145.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 433.0, + 1390.0, + 433.0, + 1390.0, + 461.0, + 1174.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 449.0, + 614.0, + 449.0, + 614.0, + 477.0, + 405.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 448.0, + 975.0, + 448.0, + 975.0, + 475.0, + 771.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 450.0, + 1336.0, + 450.0, + 1336.0, + 479.0, + 1125.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 481.0, + 508.0, + 481.0, + 508.0, + 520.0, + 461.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 477.0, + 868.0, + 477.0, + 868.0, + 517.0, + 820.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 482.0, + 1227.0, + 482.0, + 1227.0, + 521.0, + 1180.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 399.5, + 1012.0, + 399.5, + 1012.0, + 426.0, + 971.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 539.0, + 611.0, + 539.0, + 611.0, + 578.0, + 293.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 539.0, + 1405.0, + 539.0, + 1405.0, + 578.0, + 665.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 1090.0, + 570.0, + 1090.0, + 609.0, + 294.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 570.0, + 1405.0, + 570.0, + 1405.0, + 609.0, + 1144.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 601.0, + 1405.0, + 601.0, + 1405.0, + 638.0, + 296.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 634.0, + 1403.0, + 634.0, + 1403.0, + 667.0, + 295.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 662.0, + 1333.0, + 662.0, + 1333.0, + 700.0, + 294.0, + 700.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": [ + 330.0, + 1856.0, + 1327.0, + 1856.0, + 1327.0, + 1893.0, + 330.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1884.0, + 439.0, + 1884.0, + 439.0, + 1927.0, + 327.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1884.0, + 700.0, + 1884.0, + 700.0, + 1927.0, + 487.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1884.0, + 1406.0, + 1884.0, + 1406.0, + 1927.0, + 938.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1920.0, + 1235.0, + 1920.0, + 1235.0, + 1950.0, + 296.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1944.0, + 1154.0, + 1944.0, + 1154.0, + 1983.0, + 369.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1983.0, + 1173.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1406.0, + 1975.0, + 1406.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 1404.0, + 2005.0, + 1404.0, + 2034.0, + 294.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1451.0, + 1135.0, + 1451.0, + 1135.0, + 1486.0, + 296.0, + 1486.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, + 746.0, + 1407.0, + 746.0, + 1407.0, + 780.0, + 294.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 775.0, + 1405.0, + 775.0, + 1405.0, + 811.0, + 292.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 835.0, + 1406.0, + 835.0, + 1406.0, + 871.0, + 292.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 898.0, + 1405.0, + 898.0, + 1405.0, + 933.0, + 295.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 1406.0, + 928.0, + 1406.0, + 963.0, + 295.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 958.0, + 1408.0, + 958.0, + 1408.0, + 993.0, + 291.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1023.0, + 295.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1017.0, + 1407.0, + 1017.0, + 1407.0, + 1057.0, + 292.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1047.0, + 1405.0, + 1047.0, + 1405.0, + 1088.0, + 291.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1078.0, + 297.0, + 1078.0, + 297.0, + 1125.0, + 290.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1078.0, + 909.0, + 1078.0, + 909.0, + 1125.0, + 444.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1078.0, + 1286.0, + 1078.0, + 1286.0, + 1125.0, + 1083.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1078.0, + 1408.0, + 1078.0, + 1408.0, + 1125.0, + 1344.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1110.0, + 490.0, + 1110.0, + 490.0, + 1159.0, + 289.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1110.0, + 911.0, + 1110.0, + 911.0, + 1159.0, + 697.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1110.0, + 1245.0, + 1110.0, + 1245.0, + 1159.0, + 970.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1110.0, + 1379.0, + 1110.0, + 1379.0, + 1159.0, + 1318.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1110.0, + 1410.0, + 1110.0, + 1410.0, + 1159.0, + 1402.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1147.0, + 981.0, + 1147.0, + 981.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1147.0, + 1406.0, + 1147.0, + 1406.0, + 1188.0, + 1075.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1182.0, + 1027.0, + 1182.0, + 1027.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1182.0, + 1406.0, + 1182.0, + 1406.0, + 1220.0, + 1229.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1209.0, + 1321.0, + 1209.0, + 1321.0, + 1251.0, + 290.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1209.0, + 1408.0, + 1209.0, + 1408.0, + 1251.0, + 1383.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1245.0, + 444.0, + 1245.0, + 444.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1245.0, + 1405.0, + 1245.0, + 1405.0, + 1280.0, + 498.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1309.0, + 295.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1307.0, + 1163.0, + 1307.0, + 1163.0, + 1341.0, + 353.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1307.0, + 1407.0, + 1307.0, + 1407.0, + 1341.0, + 1210.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1338.0, + 589.0, + 1338.0, + 589.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1338.0, + 1405.0, + 1338.0, + 1405.0, + 1372.0, + 644.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1366.0, + 365.0, + 1366.0, + 365.0, + 1400.0, + 295.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1366.0, + 739.0, + 1366.0, + 739.0, + 1400.0, + 421.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1512.0, + 788.0, + 1512.0, + 788.0, + 1551.0, + 293.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1512.0, + 899.0, + 1512.0, + 899.0, + 1551.0, + 842.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1512.0, + 1031.0, + 1512.0, + 1031.0, + 1551.0, + 954.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1512.0, + 1120.0, + 1512.0, + 1120.0, + 1551.0, + 1063.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1551.0, + 1152.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1546.0, + 1408.0, + 1546.0, + 1408.0, + 1582.0, + 295.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1571.0, + 296.0, + 1571.0, + 296.0, + 1619.0, + 291.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1571.0, + 823.0, + 1571.0, + 823.0, + 1619.0, + 748.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1571.0, + 1409.0, + 1571.0, + 1409.0, + 1619.0, + 892.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1607.0, + 1406.0, + 1607.0, + 1406.0, + 1646.0, + 292.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1637.0, + 1404.0, + 1637.0, + 1404.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1670.0, + 1112.0, + 1670.0, + 1112.0, + 1706.0, + 293.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1104.0, + 1716.0, + 1104.0, + 1754.0, + 295.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1716.0, + 1184.0, + 1716.0, + 1184.0, + 1754.0, + 1135.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1754.0, + 1216.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 1404.0, + 1749.0, + 1404.0, + 1782.0, + 296.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1778.0, + 1325.0, + 1778.0, + 1325.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1104, + 1404, + 1104, + 1404, + 1411, + 297, + 1411 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1739, + 1404, + 1739, + 1404, + 1955, + 298, + 1955 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1425, + 1404, + 1425, + 1404, + 1586, + 298, + 1586 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 935, + 1404, + 935, + 1404, + 1089, + 298, + 1089 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1601, + 1403, + 1601, + 1403, + 1725, + 298, + 1725 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 767, + 1403, + 767, + 1403, + 918, + 298, + 918 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 307, + 205, + 1384, + 205, + 1384, + 501, + 307, + 501 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 296, + 515, + 1407, + 515, + 1407, + 731, + 296, + 731 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 298, + 1977, + 1402, + 1977, + 1402, + 2033, + 298, + 2033 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.761 + }, + { + "category_id": 13, + "poly": [ + 298, + 1490, + 457, + 1490, + 457, + 1527, + 298, + 1527 + ], + "score": 0.92, + "latex": "I ( X ^ { ( 1 ) } ; X ^ { ( 2 ) } )" + }, + { + "category_id": 13, + "poly": [ + 677, + 769, + 729, + 769, + 729, + 798, + 677, + 798 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 666, + 998, + 719, + 998, + 719, + 1028, + 666, + 1028 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { J } } } }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1633, + 1186, + 1633, + 1186, + 1663, + 1134, + 1663 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 564, + 998, + 616, + 998, + 616, + 1029, + 564, + 1029 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 891, + 639, + 942, + 639, + 942, + 668, + 891, + 668 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 558, + 517, + 610, + 517, + 610, + 547, + 558, + 547 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 630, + 548, + 683, + 548, + 683, + 578, + 630, + 578 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 523, + 639, + 574, + 639, + 574, + 668, + 523, + 668 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1493, + 1403, + 1493, + 1403, + 1527, + 1298, + 1527 + ], + "score": 0.9, + "latex": "g _ { 1 } ( X ^ { ( 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1456, + 1404, + 1456, + 1404, + 1493, + 1106, + 1493 + ], + "score": 0.89, + "latex": "I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) ) \\ =" + }, + { + "category_id": 13, + "poly": [ + 842, + 801, + 870, + 801, + 870, + 830, + 842, + 830 + ], + "score": 0.86, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 960, + 798, + 1012, + 798, + 1012, + 829, + 960, + 829 + ], + "score": 0.86, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 815, + 1464, + 845, + 1464, + 845, + 1492, + 815, + 1492 + ], + "score": 0.85, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 907, + 1463, + 937, + 1463, + 937, + 1492, + 907, + 1492 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 618, + 612, + 647, + 612, + 647, + 640, + 618, + 640 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 479, + 1864, + 507, + 1864, + 507, + 1894, + 479, + 1894 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 444, + 1983, + 471, + 1983, + 471, + 2007, + 444, + 2007 + ], + "score": 0.79, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 921, + 801, + 949, + 801, + 949, + 830, + 921, + 830 + ], + "score": 0.77, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 638, + 362, + 638, + 362, + 667, + 296, + 667 + ], + "score": 0.41, + "latex": "1 0 0 \\mathrm { { t h } }" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 211.0, + 353.0, + 211.0, + 353.0, + 259.0, + 337.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 212.0, + 724.0, + 212.0, + 724.0, + 264.0, + 680.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 208.0, + 1061.0, + 208.0, + 1061.0, + 404.0, + 1023.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 226.0, + 1318.0, + 226.0, + 1318.0, + 239.0, + 1308.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 254.0, + 1063.0, + 254.0, + 1063.0, + 278.0, + 1044.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 273.0, + 351.0, + 273.0, + 351.0, + 289.0, + 337.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 265.0, + 724.0, + 265.0, + 724.0, + 291.0, + 680.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 301.0, + 333.0, + 301.0, + 333.0, + 337.0, + 310.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 303.0, + 351.0, + 303.0, + 351.0, + 321.0, + 337.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 282.0, + 722.0, + 282.0, + 722.0, + 358.0, + 667.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 280.0, + 1061.0, + 280.0, + 1061.0, + 308.0, + 1044.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 332.0, + 354.0, + 332.0, + 354.0, + 353.0, + 335.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 320.0, + 724.0, + 320.0, + 724.0, + 346.0, + 680.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 326.0, + 1065.0, + 326.0, + 1065.0, + 409.0, + 1042.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 348.0, + 723.0, + 348.0, + 723.0, + 374.0, + 680.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 348.0, + 1223.0, + 348.0, + 1223.0, + 376.0, + 1147.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 349.0, + 1364.0, + 349.0, + 1364.0, + 374.0, + 1283.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 363.0, + 353.0, + 363.0, + 353.0, + 383.0, + 328.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 366.0, + 651.0, + 366.0, + 651.0, + 397.0, + 608.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 375.0, + 724.0, + 375.0, + 724.0, + 401.0, + 680.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 367.0, + 1009.0, + 367.0, + 1009.0, + 395.0, + 970.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 368.0, + 1230.0, + 368.0, + 1230.0, + 395.0, + 1146.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 369.0, + 1364.0, + 369.0, + 1364.0, + 394.0, + 1283.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 393.0, + 354.0, + 393.0, + 354.0, + 412.0, + 331.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 387.0, + 1230.0, + 387.0, + 1230.0, + 417.0, + 1147.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 387.0, + 1363.0, + 387.0, + 1363.0, + 417.0, + 1283.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 403.0, + 724.0, + 403.0, + 724.0, + 428.0, + 680.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 410.0, + 1064.0, + 410.0, + 1064.0, + 431.0, + 1044.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 424.0, + 367.0, + 424.0, + 367.0, + 445.0, + 348.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 422.0, + 441.0, + 422.0, + 441.0, + 445.0, + 421.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 421.0, + 522.0, + 421.0, + 522.0, + 445.0, + 492.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 421.0, + 595.0, + 421.0, + 595.0, + 445.0, + 566.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 421.0, + 670.0, + 421.0, + 670.0, + 446.0, + 640.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 421.0, + 735.0, + 421.0, + 735.0, + 442.0, + 716.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 420.0, + 806.0, + 420.0, + 806.0, + 442.0, + 788.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 420.0, + 885.0, + 420.0, + 885.0, + 442.0, + 855.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 420.0, + 957.0, + 420.0, + 957.0, + 442.0, + 928.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 421.0, + 1027.0, + 421.0, + 1027.0, + 441.0, + 1001.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 426.0, + 1076.0, + 426.0, + 1076.0, + 447.0, + 1056.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 425.0, + 1152.0, + 425.0, + 1152.0, + 447.0, + 1134.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 424.0, + 1234.0, + 424.0, + 1234.0, + 448.0, + 1206.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 424.0, + 1311.0, + 424.0, + 1311.0, + 448.0, + 1282.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 422.0, + 1390.0, + 422.0, + 1390.0, + 450.0, + 1356.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 436.0, + 610.0, + 436.0, + 610.0, + 464.0, + 402.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 435.0, + 971.0, + 435.0, + 971.0, + 462.0, + 768.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 440.0, + 1326.0, + 440.0, + 1326.0, + 468.0, + 1113.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 469.0, + 503.0, + 469.0, + 503.0, + 506.0, + 458.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 466.0, + 863.0, + 466.0, + 863.0, + 503.0, + 817.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 474.0, + 1222.0, + 474.0, + 1222.0, + 508.0, + 1179.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 303.5, + 1066.0, + 303.5, + 1066.0, + 329.0, + 1037.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 387.5, + 649.0, + 387.5, + 649.0, + 415.0, + 608.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 386.5, + 1007.0, + 386.5, + 1007.0, + 412.5, + 969.0, + 412.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 516.0, + 557.0, + 516.0, + 557.0, + 550.0, + 295.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 516.0, + 1407.0, + 516.0, + 1407.0, + 550.0, + 611.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 545.0, + 629.0, + 545.0, + 629.0, + 582.0, + 293.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 545.0, + 1409.0, + 545.0, + 1409.0, + 582.0, + 684.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 574.0, + 1407.0, + 574.0, + 1407.0, + 614.0, + 291.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 608.0, + 617.0, + 608.0, + 617.0, + 643.0, + 294.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 608.0, + 1400.0, + 608.0, + 1400.0, + 643.0, + 648.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 634.0, + 295.0, + 634.0, + 295.0, + 675.0, + 291.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 634.0, + 522.0, + 634.0, + 522.0, + 675.0, + 363.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 634.0, + 890.0, + 634.0, + 890.0, + 675.0, + 575.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 634.0, + 1407.0, + 634.0, + 1407.0, + 675.0, + 943.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 1404.0, + 666.0, + 1404.0, + 702.0, + 294.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 700.0, + 1076.0, + 700.0, + 1076.0, + 734.0, + 296.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1973.0, + 443.0, + 1973.0, + 443.0, + 2010.0, + 330.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2010.0, + 472.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 811.0, + 2004.0, + 811.0, + 2035.0, + 294.0, + 2035.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, + 1101.0, + 1406.0, + 1101.0, + 1406.0, + 1141.0, + 292.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1137.0, + 1405.0, + 1137.0, + 1405.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1166.0, + 1406.0, + 1166.0, + 1406.0, + 1202.0, + 295.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1198.0, + 1405.0, + 1198.0, + 1405.0, + 1230.0, + 296.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1260.0, + 295.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1326.0, + 291.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1377.0, + 1378.0, + 1377.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1773.0, + 296.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1799.0, + 1406.0, + 1799.0, + 1406.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1864.0, + 296.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 478.0, + 1859.0, + 478.0, + 1896.0, + 293.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1859.0, + 1406.0, + 1859.0, + 1406.0, + 1896.0, + 508.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1888.0, + 1406.0, + 1888.0, + 1406.0, + 1930.0, + 292.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1924.0, + 1405.0, + 1924.0, + 1405.0, + 1958.0, + 294.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1423.0, + 1406.0, + 1423.0, + 1406.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1452.0, + 814.0, + 1452.0, + 814.0, + 1499.0, + 292.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1452.0, + 906.0, + 1452.0, + 906.0, + 1499.0, + 846.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1452.0, + 1105.0, + 1452.0, + 1105.0, + 1499.0, + 938.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1452.0, + 1408.0, + 1452.0, + 1408.0, + 1499.0, + 1405.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1486.0, + 297.0, + 1486.0, + 297.0, + 1531.0, + 291.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1486.0, + 1297.0, + 1486.0, + 1297.0, + 1531.0, + 458.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1486.0, + 1409.0, + 1486.0, + 1409.0, + 1531.0, + 1404.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1520.0, + 1407.0, + 1520.0, + 1407.0, + 1561.0, + 292.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1552.0, + 1129.0, + 1552.0, + 1129.0, + 1593.0, + 291.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 935.0, + 1401.0, + 935.0, + 1401.0, + 968.0, + 297.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 966.0, + 1406.0, + 966.0, + 1406.0, + 1003.0, + 296.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 996.0, + 563.0, + 996.0, + 563.0, + 1033.0, + 294.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 996.0, + 665.0, + 996.0, + 665.0, + 1033.0, + 617.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 996.0, + 1404.0, + 996.0, + 1404.0, + 1033.0, + 720.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1064.0, + 293.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1057.0, + 1365.0, + 1057.0, + 1365.0, + 1093.0, + 292.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1601.0, + 1404.0, + 1601.0, + 1404.0, + 1634.0, + 296.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1630.0, + 1133.0, + 1630.0, + 1133.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1630.0, + 1405.0, + 1630.0, + 1405.0, + 1664.0, + 1187.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1663.0, + 1404.0, + 1663.0, + 1404.0, + 1699.0, + 293.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 716.0, + 1689.0, + 716.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 768.0, + 676.0, + 768.0, + 676.0, + 801.0, + 296.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 768.0, + 1404.0, + 768.0, + 1404.0, + 801.0, + 730.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 841.0, + 794.0, + 841.0, + 833.0, + 293.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 794.0, + 920.0, + 794.0, + 920.0, + 833.0, + 871.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 794.0, + 959.0, + 794.0, + 959.0, + 833.0, + 950.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 833.0, + 1013.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 829.0, + 1404.0, + 829.0, + 1404.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 858.0, + 1404.0, + 858.0, + 1404.0, + 891.0, + 296.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 891.0, + 1144.0, + 891.0, + 1144.0, + 920.0, + 297.0, + 920.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1169, + 1404, + 1169, + 1404, + 1475, + 297, + 1475 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 817, + 1405, + 817, + 1405, + 1062, + 298, + 1062 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1490, + 1404, + 1490, + 1404, + 1705, + 297, + 1705 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 609, + 1403, + 609, + 1403, + 802, + 298, + 802 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1720, + 1404, + 1720, + 1404, + 1936, + 297, + 1936 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 320, + 216, + 1378, + 216, + 1378, + 467, + 320, + 467 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 299, + 488, + 1404, + 488, + 1404, + 582, + 299, + 582 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 297, + 1973, + 1402, + 1973, + 1402, + 2034, + 297, + 2034 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 815, + 76, + 815, + 104, + 298, + 104 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.797 + }, + { + "category_id": 0, + "poly": [ + 300, + 1110, + 1312, + 1110, + 1312, + 1140, + 300, + 1140 + ], + "score": 0.769 + }, + { + "category_id": 0, + "poly": [ + 336, + 1111, + 1291, + 1111, + 1291, + 1140, + 336, + 1140 + ], + "score": 0.624 + }, + { + "category_id": 2, + "poly": [ + 299, + 1973, + 1402, + 1973, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 781, + 490, + 832, + 490, + 832, + 519, + 781, + 519 + ], + "score": 0.94, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 416, + 1352, + 520, + 1352, + 520, + 1386, + 416, + 1386 + ], + "score": 0.93, + "latex": "p ( x ) p ( y )" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1322, + 1133, + 1322, + 1133, + 1355, + 1052, + 1355 + ], + "score": 0.93, + "latex": "p ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 456, + 737, + 708, + 737, + 708, + 773, + 456, + 773 + ], + "score": 0.91, + "latex": "I ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 2 } ( X ^ { ( 2 ) } ) )" + }, + { + "category_id": 13, + "poly": [ + 890, + 1612, + 951, + 1612, + 951, + 1646, + 890, + 1646 + ], + "score": 0.91, + "latex": "[ x , y ]" + }, + { + "category_id": 13, + "poly": [ + 746, + 1874, + 798, + 1874, + 798, + 1904, + 746, + 1904 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N } \\bar { W } \\bar { J } }" + }, + { + "category_id": 13, + "poly": [ + 676, + 818, + 729, + 818, + 729, + 848, + 676, + 848 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1323, + 400, + 1323, + 400, + 1353, + 347, + 1353 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N W } } { \\boldsymbol { \\mathbf { \\mathit { I } } } }" + }, + { + "category_id": 13, + "poly": [ + 1073, + 490, + 1126, + 490, + 1126, + 520, + 1073, + 520 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 406, + 640, + 462, + 640, + 462, + 672, + 406, + 672 + ], + "score": 0.91, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 1044, + 1722, + 1096, + 1722, + 1096, + 1751, + 1044, + 1751 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 480, + 2001, + 533, + 2001, + 533, + 2030, + 480, + 2030 + ], + "score": 0.9, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 829, + 1843, + 882, + 1843, + 882, + 1873, + 829, + 1873 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 844, + 1519, + 1203, + 1519, + 1203, + 1555, + 844, + 1555 + ], + "score": 0.9, + "latex": "f ( x , y ) \\stackrel { \\mathrm { ~ } } { = } \\phi _ { 1 } ( x ) ^ { \\top } \\phi _ { 2 } ( y ) ( \\phi _ { 1 } , \\phi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 778, + 673, + 911, + 673, + 911, + 708, + 778, + 708 + ], + "score": 0.9, + "latex": "X ^ { ( 1 ) } , X ^ { ( 2 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1342, + 550, + 1393, + 550, + 1393, + 581, + 1342, + 581 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 579, + 2001, + 631, + 2001, + 631, + 2030, + 579, + 2030 + ], + "score": 0.9, + "latex": "X ^ { ( 2 ) }" + }, + { + "category_id": 13, + "poly": [ + 883, + 490, + 934, + 490, + 934, + 519, + 883, + 519 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 639, + 355, + 639, + 355, + 672, + 298, + 672 + ], + "score": 0.89, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1292, + 1401, + 1292, + 1401, + 1322, + 1349, + 1322 + ], + "score": 0.89, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 856, + 520, + 907, + 520, + 907, + 550, + 856, + 550 + ], + "score": 0.89, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1297, + 710, + 1364, + 710, + 1364, + 740, + 1297, + 740 + ], + "score": 0.89, + "latex": "g _ { 1 } , g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 523, + 364, + 523, + 364, + 551, + 297, + 551 + ], + "score": 0.88, + "latex": "g _ { 1 } , g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 771, + 853, + 800, + 853, + 800, + 880, + 771, + 880 + ], + "score": 0.86, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 767, + 1647, + 797, + 1647, + 797, + 1675, + 767, + 1675 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1447, + 638, + 1447, + 638, + 1476, + 609, + 1476 + ], + "score": 0.85, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 765, + 1415, + 785, + 1415, + 785, + 1446, + 765, + 1446 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 530, + 1447, + 559, + 1447, + 559, + 1476, + 530, + 1476 + ], + "score": 0.84, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 535, + 774, + 589, + 774, + 589, + 799, + 535, + 799 + ], + "score": 0.84, + "latex": "84 \\%" + }, + { + "category_id": 13, + "poly": [ + 689, + 1648, + 718, + 1648, + 718, + 1675, + 689, + 1675 + ], + "score": 0.83, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1583, + 474, + 1583, + 474, + 1612, + 428, + 1612 + ], + "score": 0.68, + "latex": "4 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1521, + 1203, + 1521, + 1203, + 1554, + 1122, + 1554 + ], + "score": 0.46, + "latex": "( \\phi _ { 1 } , \\phi _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 221.0, + 379.0, + 221.0, + 379.0, + 243.0, + 339.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 221.0, + 738.0, + 221.0, + 738.0, + 243.0, + 698.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 227.0, + 1070.0, + 227.0, + 1070.0, + 238.0, + 1059.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 256.0, + 379.0, + 256.0, + 379.0, + 400.0, + 318.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 256.0, + 738.0, + 256.0, + 738.0, + 399.0, + 678.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 260.0, + 1075.0, + 260.0, + 1075.0, + 281.0, + 1056.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 295.0, + 380.0, + 295.0, + 380.0, + 321.0, + 338.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 295.0, + 739.0, + 295.0, + 739.0, + 322.0, + 696.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 298.0, + 1073.0, + 298.0, + 1073.0, + 322.0, + 1056.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 309.0, + 1061.0, + 309.0, + 1061.0, + 349.0, + 1040.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 334.0, + 380.0, + 334.0, + 380.0, + 360.0, + 338.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 332.0, + 740.0, + 332.0, + 740.0, + 362.0, + 695.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 337.0, + 1075.0, + 337.0, + 1075.0, + 359.0, + 1056.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 357.0, + 625.0, + 357.0, + 625.0, + 379.0, + 587.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 357.0, + 984.0, + 357.0, + 984.0, + 379.0, + 947.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 357.0, + 1321.0, + 357.0, + 1321.0, + 379.0, + 1283.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 370.0, + 380.0, + 370.0, + 380.0, + 399.0, + 337.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 377.0, + 648.0, + 377.0, + 648.0, + 398.0, + 588.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 370.0, + 740.0, + 370.0, + 740.0, + 399.0, + 696.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 374.0, + 1006.0, + 374.0, + 1006.0, + 400.0, + 946.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 376.0, + 1075.0, + 376.0, + 1075.0, + 396.0, + 1056.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 374.0, + 1343.0, + 374.0, + 1343.0, + 400.0, + 1283.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 394.0, + 664.0, + 394.0, + 664.0, + 418.0, + 587.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 394.0, + 1023.0, + 394.0, + 1023.0, + 418.0, + 945.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 394.0, + 1360.0, + 394.0, + 1360.0, + 418.0, + 1283.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 411.0, + 380.0, + 411.0, + 380.0, + 437.0, + 338.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 413.0, + 738.0, + 413.0, + 738.0, + 435.0, + 697.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 413.0, + 1075.0, + 413.0, + 1075.0, + 435.0, + 1056.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 429.0, + 391.0, + 429.0, + 391.0, + 450.0, + 373.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 428.0, + 463.0, + 428.0, + 463.0, + 449.0, + 445.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 429.0, + 539.0, + 429.0, + 539.0, + 449.0, + 514.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 427.0, + 613.0, + 427.0, + 613.0, + 450.0, + 584.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 427.0, + 685.0, + 427.0, + 685.0, + 451.0, + 656.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 429.0, + 750.0, + 429.0, + 750.0, + 449.0, + 731.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 428.0, + 821.0, + 428.0, + 821.0, + 449.0, + 803.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 429.0, + 897.0, + 429.0, + 897.0, + 449.0, + 873.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 427.0, + 971.0, + 427.0, + 971.0, + 450.0, + 943.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 427.0, + 1043.0, + 427.0, + 1043.0, + 451.0, + 1014.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 429.0, + 1088.0, + 429.0, + 1088.0, + 449.0, + 1069.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 428.0, + 1159.0, + 428.0, + 1159.0, + 449.0, + 1140.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 429.0, + 1235.0, + 429.0, + 1235.0, + 449.0, + 1210.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 427.0, + 1309.0, + 427.0, + 1309.0, + 450.0, + 1280.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 429.0, + 1379.0, + 429.0, + 1379.0, + 449.0, + 1353.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 441.0, + 626.0, + 441.0, + 626.0, + 470.0, + 423.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 444.0, + 984.0, + 444.0, + 984.0, + 467.0, + 783.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 441.0, + 1323.0, + 441.0, + 1323.0, + 470.0, + 1119.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 488.0, + 780.0, + 488.0, + 780.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 488.0, + 882.0, + 488.0, + 882.0, + 525.0, + 833.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 488.0, + 1072.0, + 488.0, + 1072.0, + 525.0, + 935.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 488.0, + 1405.0, + 488.0, + 1405.0, + 525.0, + 1127.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 517.0, + 296.0, + 517.0, + 296.0, + 556.0, + 293.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 517.0, + 855.0, + 517.0, + 855.0, + 556.0, + 365.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 517.0, + 1405.0, + 517.0, + 1405.0, + 556.0, + 908.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 545.0, + 1341.0, + 545.0, + 1341.0, + 590.0, + 292.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 545.0, + 1405.0, + 545.0, + 1405.0, + 590.0, + 1394.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1964.0, + 1407.0, + 1964.0, + 1407.0, + 2010.0, + 329.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1997.0, + 479.0, + 1997.0, + 479.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1997.0, + 578.0, + 1997.0, + 578.0, + 2040.0, + 534.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1997.0, + 1219.0, + 1997.0, + 1219.0, + 2040.0, + 632.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1109.0, + 1318.0, + 1109.0, + 1318.0, + 1143.0, + 294.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1110.0, + 1297.0, + 1110.0, + 1297.0, + 1142.0, + 360.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1964.0, + 1407.0, + 1964.0, + 1407.0, + 2010.0, + 328.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1997.0, + 479.0, + 1997.0, + 479.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1997.0, + 578.0, + 1997.0, + 578.0, + 2040.0, + 534.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1997.0, + 1218.0, + 1997.0, + 1218.0, + 2040.0, + 632.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1168.0, + 1404.0, + 1168.0, + 1404.0, + 1204.0, + 294.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1200.0, + 1407.0, + 1200.0, + 1407.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 1405.0, + 1261.0, + 1405.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1286.0, + 1348.0, + 1286.0, + 1348.0, + 1331.0, + 292.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1286.0, + 1405.0, + 1286.0, + 1405.0, + 1331.0, + 1402.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 346.0, + 1322.0, + 346.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1322.0, + 1051.0, + 1322.0, + 1051.0, + 1358.0, + 401.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1358.0, + 1134.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1350.0, + 415.0, + 1350.0, + 415.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1350.0, + 1405.0, + 1350.0, + 1405.0, + 1391.0, + 521.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1404.0, + 1382.0, + 1404.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1415.0, + 764.0, + 1415.0, + 764.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1415.0, + 1404.0, + 1415.0, + 1404.0, + 1446.0, + 786.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1443.0, + 529.0, + 1443.0, + 529.0, + 1479.0, + 292.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1443.0, + 608.0, + 1443.0, + 608.0, + 1479.0, + 560.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1443.0, + 1160.0, + 1443.0, + 1160.0, + 1479.0, + 639.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 815.0, + 675.0, + 815.0, + 675.0, + 854.0, + 292.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 815.0, + 1406.0, + 815.0, + 1406.0, + 854.0, + 730.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 848.0, + 770.0, + 848.0, + 770.0, + 882.0, + 293.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 882.0, + 801.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1405.0, + 878.0, + 1405.0, + 912.0, + 295.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 908.0, + 1406.0, + 908.0, + 1406.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 971.0, + 296.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 972.0, + 1403.0, + 972.0, + 1403.0, + 1002.0, + 296.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1002.0, + 1408.0, + 1002.0, + 1408.0, + 1035.0, + 295.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1031.0, + 1012.0, + 1031.0, + 1012.0, + 1064.0, + 296.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 1405.0, + 1488.0, + 1405.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 843.0, + 1520.0, + 843.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1520.0, + 1407.0, + 1520.0, + 1407.0, + 1558.0, + 1204.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1407.0, + 1551.0, + 1407.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1583.0, + 427.0, + 1583.0, + 427.0, + 1617.0, + 295.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1583.0, + 1404.0, + 1583.0, + 1404.0, + 1617.0, + 475.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 889.0, + 1611.0, + 889.0, + 1648.0, + 292.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1611.0, + 1404.0, + 1611.0, + 1404.0, + 1648.0, + 952.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1644.0, + 688.0, + 1644.0, + 688.0, + 1679.0, + 295.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1644.0, + 766.0, + 1644.0, + 766.0, + 1679.0, + 719.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1644.0, + 1405.0, + 1644.0, + 1405.0, + 1679.0, + 798.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1674.0, + 1011.0, + 1674.0, + 1011.0, + 1709.0, + 294.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 606.0, + 1405.0, + 606.0, + 1405.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 636.0, + 297.0, + 636.0, + 297.0, + 682.0, + 293.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 636.0, + 405.0, + 636.0, + 405.0, + 682.0, + 356.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 636.0, + 1407.0, + 636.0, + 1407.0, + 682.0, + 463.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 671.0, + 777.0, + 671.0, + 777.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 671.0, + 1407.0, + 671.0, + 1407.0, + 712.0, + 912.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 703.0, + 1296.0, + 703.0, + 1296.0, + 745.0, + 292.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 703.0, + 1407.0, + 703.0, + 1407.0, + 745.0, + 1365.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 732.0, + 455.0, + 732.0, + 455.0, + 780.0, + 291.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 732.0, + 1409.0, + 732.0, + 1409.0, + 780.0, + 709.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 534.0, + 770.0, + 534.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 770.0, + 854.0, + 770.0, + 854.0, + 806.0, + 590.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1721.0, + 1043.0, + 1721.0, + 1043.0, + 1755.0, + 295.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1721.0, + 1404.0, + 1721.0, + 1404.0, + 1755.0, + 1097.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1781.0, + 1405.0, + 1781.0, + 1405.0, + 1816.0, + 295.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1846.0, + 293.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 828.0, + 1843.0, + 828.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1843.0, + 1405.0, + 1843.0, + 1405.0, + 1877.0, + 883.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1872.0, + 745.0, + 1872.0, + 745.0, + 1907.0, + 292.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1872.0, + 1404.0, + 1872.0, + 1404.0, + 1907.0, + 799.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1903.0, + 1405.0, + 1903.0, + 1405.0, + 1938.0, + 295.0, + 1938.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1814, + 1403, + 1814, + 1403, + 1939, + 298, + 1939 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1072, + 1405, + 1072, + 1405, + 1321, + 297, + 1321 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1333, + 1404, + 1333, + 1404, + 1548, + 297, + 1548 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1563, + 1403, + 1563, + 1403, + 1685, + 299, + 1685 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 309, + 218, + 1388, + 218, + 1388, + 506, + 309, + 506 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 873, + 1404, + 873, + 1404, + 965, + 298, + 965 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 531, + 1406, + 531, + 1406, + 751, + 297, + 751 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 298, + 795, + 1399, + 795, + 1399, + 857, + 298, + 857 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 295, + 1977, + 1405, + 1977, + 1405, + 2034, + 295, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1741, + 1258, + 1741, + 1258, + 1775, + 300, + 1775 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.775 + }, + { + "category_id": 0, + "poly": [ + 295, + 1014, + 1374, + 1014, + 1374, + 1043, + 295, + 1043 + ], + "score": 0.533 + }, + { + "category_id": 1, + "poly": [ + 295, + 1014, + 1374, + 1014, + 1374, + 1043, + 295, + 1043 + ], + "score": 0.393 + }, + { + "category_id": 4, + "poly": [ + 296, + 532, + 1406, + 532, + 1406, + 751, + 296, + 751 + ], + "score": 0.099 + }, + { + "category_id": 13, + "poly": [ + 1250, + 562, + 1403, + 562, + 1403, + 597, + 1250, + 597 + ], + "score": 0.92, + "latex": "L _ { t } ( g _ { 1 } , g _ { 2 } ) =" + }, + { + "category_id": 13, + "poly": [ + 374, + 1424, + 551, + 1424, + 551, + 1458, + 374, + 1458 + ], + "score": 0.92, + "latex": "L _ { t } ( g _ { 1 } , g _ { 2 } ) \\approx 0 )" + }, + { + "category_id": 13, + "poly": [ + 1073, + 1256, + 1125, + 1256, + 1125, + 1288, + 1073, + 1288 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 973, + 563, + 1026, + 563, + 1026, + 595, + 973, + 595 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 295, + 1284, + 796, + 1284, + 796, + 1321, + 295, + 1321 + ], + "score": 0.91, + "latex": "L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |" + }, + { + "category_id": 13, + "poly": [ + 689, + 689, + 742, + 689, + 742, + 720, + 689, + 720 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N } \\bar { W } \\bar { J } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 594, + 646, + 594, + 646, + 631, + 298, + 631 + ], + "score": 0.91, + "latex": "| I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t |" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1288, + 1398, + 1288, + 1398, + 1318, + 1308, + 1318 + ], + "score": 0.91, + "latex": "t = 2 , 4" + }, + { + "category_id": 13, + "poly": [ + 796, + 720, + 847, + 720, + 847, + 751, + 796, + 751 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 585, + 690, + 637, + 690, + 637, + 720, + 585, + 720 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1907, + 477, + 1907, + 477, + 1938, + 426, + 1938 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1486, + 349, + 1486, + 349, + 1517, + 297, + 1517 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1486, + 456, + 1486, + 456, + 1516, + 404, + 1516 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1846, + 1401, + 1846, + 1401, + 1877, + 1348, + 1877 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1135, + 1402, + 1135, + 1402, + 1164, + 1336, + 1164 + ], + "score": 0.89, + "latex": "5 \\times 5" + }, + { + "category_id": 13, + "poly": [ + 1169, + 1516, + 1223, + 1516, + 1223, + 1546, + 1169, + 1546 + ], + "score": 0.89, + "latex": "9 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1225, + 1337, + 1225, + 1337, + 1257, + 1285, + 1257 + ], + "score": 0.89, + "latex": "\\bar { I } _ { \\mathrm { N W } } ^ { \\mathrm { ~ ~ } } \\bar { J }" + }, + { + "category_id": 13, + "poly": [ + 297, + 797, + 350, + 797, + 350, + 826, + 297, + 826 + ], + "score": 0.88, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 1064, + 565, + 1078, + 565, + 1078, + 591, + 1064, + 591 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1427, + 312, + 1427, + 312, + 1453, + 297, + 1453 + ], + "score": 0.69, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 298, + 632, + 310, + 632, + 310, + 655, + 298, + 655 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 703, + 1909, + 721, + 1909, + 721, + 1934, + 703, + 1934 + ], + "score": 0.66, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1195, + 1165, + 1256, + 1165, + 1256, + 1194, + 1195, + 1194 + ], + "score": 0.28, + "latex": "2 2 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 219.0, + 370.0, + 219.0, + 370.0, + 244.0, + 327.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 219.0, + 728.0, + 219.0, + 728.0, + 244.0, + 685.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 235.0, + 1088.0, + 235.0, + 1088.0, + 258.0, + 1054.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 246.0, + 368.0, + 246.0, + 368.0, + 271.0, + 327.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 246.0, + 728.0, + 246.0, + 728.0, + 271.0, + 685.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 260.0, + 368.0, + 260.0, + 368.0, + 400.0, + 306.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 256.0, + 728.0, + 256.0, + 728.0, + 401.0, + 666.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 267.0, + 1088.0, + 267.0, + 1088.0, + 294.0, + 1052.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 271.0, + 1375.0, + 271.0, + 1375.0, + 290.0, + 1309.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 301.0, + 368.0, + 301.0, + 368.0, + 352.0, + 327.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 298.0, + 729.0, + 298.0, + 729.0, + 356.0, + 683.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 303.0, + 1089.0, + 303.0, + 1089.0, + 347.0, + 1029.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 332.0, + 1230.0, + 332.0, + 1230.0, + 345.0, + 1206.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 329.0, + 1286.0, + 329.0, + 1286.0, + 349.0, + 1232.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 344.0, + 654.0, + 344.0, + 654.0, + 367.0, + 530.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 344.0, + 1013.0, + 344.0, + 1013.0, + 367.0, + 889.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 338.0, + 1088.0, + 338.0, + 1088.0, + 363.0, + 1043.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 344.0, + 1371.0, + 344.0, + 1371.0, + 364.0, + 1230.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 353.0, + 369.0, + 353.0, + 369.0, + 383.0, + 327.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 359.0, + 655.0, + 359.0, + 655.0, + 385.0, + 531.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 355.0, + 728.0, + 355.0, + 728.0, + 381.0, + 685.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 359.0, + 1013.0, + 359.0, + 1013.0, + 386.0, + 888.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 361.0, + 1348.0, + 361.0, + 1348.0, + 381.0, + 1230.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 385.0, + 368.0, + 385.0, + 368.0, + 407.0, + 328.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 376.0, + 629.0, + 376.0, + 629.0, + 422.0, + 530.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 385.0, + 727.0, + 385.0, + 727.0, + 407.0, + 686.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 376.0, + 988.0, + 376.0, + 988.0, + 422.0, + 887.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 373.0, + 1089.0, + 373.0, + 1089.0, + 398.0, + 1043.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 378.0, + 1371.0, + 378.0, + 1371.0, + 415.0, + 1229.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 410.0, + 370.0, + 410.0, + 370.0, + 437.0, + 327.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 410.0, + 728.0, + 410.0, + 728.0, + 437.0, + 685.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 427.0, + 381.0, + 427.0, + 381.0, + 449.0, + 361.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 429.0, + 453.0, + 429.0, + 453.0, + 449.0, + 433.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 427.0, + 530.0, + 427.0, + 530.0, + 451.0, + 501.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 427.0, + 602.0, + 427.0, + 602.0, + 451.0, + 572.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 427.0, + 673.0, + 427.0, + 673.0, + 451.0, + 643.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 429.0, + 739.0, + 429.0, + 739.0, + 449.0, + 720.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 429.0, + 812.0, + 429.0, + 812.0, + 449.0, + 792.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 427.0, + 889.0, + 427.0, + 889.0, + 451.0, + 860.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 427.0, + 961.0, + 427.0, + 961.0, + 451.0, + 931.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 427.0, + 1033.0, + 427.0, + 1033.0, + 451.0, + 1003.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 425.0, + 1099.0, + 425.0, + 1099.0, + 446.0, + 1079.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 425.0, + 1171.0, + 425.0, + 1171.0, + 444.0, + 1152.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 425.0, + 1246.0, + 425.0, + 1246.0, + 444.0, + 1221.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 423.0, + 1320.0, + 423.0, + 1320.0, + 447.0, + 1291.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 424.0, + 1391.0, + 424.0, + 1391.0, + 447.0, + 1362.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 444.0, + 614.0, + 444.0, + 614.0, + 467.0, + 415.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 441.0, + 975.0, + 441.0, + 975.0, + 469.0, + 771.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 441.0, + 1332.0, + 441.0, + 1332.0, + 464.0, + 1135.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 474.0, + 508.0, + 474.0, + 508.0, + 511.0, + 462.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 474.0, + 867.0, + 474.0, + 867.0, + 511.0, + 820.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 470.0, + 1227.0, + 470.0, + 1227.0, + 508.0, + 1180.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.75, + 235.5, + 1380.75, + 235.5, + 1380.75, + 267.5, + 1099.75, + 267.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 532.0, + 1408.0, + 532.0, + 1408.0, + 567.0, + 295.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 561.0, + 972.0, + 561.0, + 972.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 561.0, + 1063.0, + 561.0, + 1063.0, + 600.0, + 1027.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 561.0, + 1249.0, + 561.0, + 1249.0, + 600.0, + 1079.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 592.0, + 297.0, + 592.0, + 297.0, + 633.0, + 294.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 592.0, + 1408.0, + 592.0, + 1408.0, + 633.0, + 647.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 625.0, + 297.0, + 625.0, + 297.0, + 664.0, + 292.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 625.0, + 1407.0, + 625.0, + 1407.0, + 664.0, + 311.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 1406.0, + 657.0, + 1406.0, + 694.0, + 294.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 686.0, + 584.0, + 686.0, + 584.0, + 727.0, + 292.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 686.0, + 688.0, + 686.0, + 688.0, + 727.0, + 638.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 686.0, + 1407.0, + 686.0, + 1407.0, + 727.0, + 743.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 720.0, + 795.0, + 720.0, + 795.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 720.0, + 1388.0, + 720.0, + 1388.0, + 755.0, + 848.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2012.0, + 330.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1125.0, + 2003.0, + 1125.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1738.0, + 1265.0, + 1738.0, + 1265.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 1379.0, + 1011.0, + 1379.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 1408.0, + 532.0, + 1408.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 563.0, + 972.0, + 563.0, + 972.0, + 598.0, + 294.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 563.0, + 1063.0, + 563.0, + 1063.0, + 598.0, + 1027.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 563.0, + 1249.0, + 563.0, + 1249.0, + 598.0, + 1079.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 297.0, + 593.0, + 297.0, + 635.0, + 294.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 593.0, + 1408.0, + 593.0, + 1408.0, + 635.0, + 647.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 625.0, + 297.0, + 625.0, + 297.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 625.0, + 1407.0, + 625.0, + 1407.0, + 664.0, + 311.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 694.0, + 294.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 684.0, + 584.0, + 684.0, + 584.0, + 729.0, + 291.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 684.0, + 688.0, + 684.0, + 688.0, + 729.0, + 638.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 684.0, + 1406.0, + 684.0, + 1406.0, + 729.0, + 743.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 720.0, + 795.0, + 720.0, + 795.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 720.0, + 1388.0, + 720.0, + 1388.0, + 755.0, + 848.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1813.0, + 1405.0, + 1813.0, + 1405.0, + 1850.0, + 293.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1844.0, + 1347.0, + 1844.0, + 1347.0, + 1882.0, + 292.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 1403.0, + 1875.0, + 1403.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1908.0, + 425.0, + 1908.0, + 425.0, + 1941.0, + 296.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1908.0, + 702.0, + 1908.0, + 702.0, + 1941.0, + 478.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1908.0, + 1356.0, + 1908.0, + 1356.0, + 1941.0, + 722.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1073.0, + 1403.0, + 1073.0, + 1403.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 1406.0, + 1102.0, + 1406.0, + 1137.0, + 294.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1132.0, + 1335.0, + 1132.0, + 1335.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1132.0, + 1407.0, + 1132.0, + 1407.0, + 1169.0, + 1403.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1163.0, + 1194.0, + 1163.0, + 1194.0, + 1200.0, + 292.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1163.0, + 1407.0, + 1163.0, + 1407.0, + 1200.0, + 1257.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1233.0, + 292.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1223.0, + 1284.0, + 1223.0, + 1284.0, + 1263.0, + 292.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1223.0, + 1356.0, + 1223.0, + 1356.0, + 1263.0, + 1338.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1256.0, + 1364.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1072.0, + 1256.0, + 1072.0, + 1290.0, + 295.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1256.0, + 1406.0, + 1256.0, + 1406.0, + 1290.0, + 1126.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1284.0, + 1307.0, + 1284.0, + 1307.0, + 1321.0, + 797.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1284.0, + 1410.0, + 1284.0, + 1410.0, + 1321.0, + 1399.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1333.0, + 1406.0, + 1333.0, + 1406.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1362.0, + 1409.0, + 1362.0, + 1409.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1429.0, + 294.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1425.0, + 296.0, + 1425.0, + 296.0, + 1459.0, + 292.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1425.0, + 373.0, + 1425.0, + 373.0, + 1459.0, + 313.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1425.0, + 1405.0, + 1425.0, + 1405.0, + 1459.0, + 552.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1455.0, + 1405.0, + 1455.0, + 1405.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1485.0, + 296.0, + 1485.0, + 296.0, + 1520.0, + 293.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1485.0, + 403.0, + 1485.0, + 403.0, + 1520.0, + 350.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1485.0, + 1406.0, + 1485.0, + 1406.0, + 1520.0, + 457.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1516.0, + 1168.0, + 1516.0, + 1168.0, + 1552.0, + 292.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1516.0, + 1235.0, + 1516.0, + 1235.0, + 1552.0, + 1224.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1559.0, + 1407.0, + 1559.0, + 1407.0, + 1599.0, + 292.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 1407.0, + 1623.0, + 1407.0, + 1659.0, + 293.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1653.0, + 732.0, + 1653.0, + 732.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 908.0, + 292.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 1406.0, + 900.0, + 1406.0, + 938.0, + 292.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 932.0, + 1185.0, + 932.0, + 1185.0, + 969.0, + 293.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 831.0, + 351.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 826.0, + 780.0, + 826.0, + 780.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 1379.0, + 1011.0, + 1379.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1666, + 1406, + 1666, + 1406, + 2035, + 296, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1406, + 228, + 1406, + 567, + 297, + 567 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1195, + 1405, + 1195, + 1405, + 1444, + 297, + 1444 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 996, + 1405, + 996, + 1405, + 1183, + 297, + 1183 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 741, + 1405, + 741, + 1405, + 866, + 299, + 866 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1456, + 1404, + 1456, + 1404, + 1551, + 299, + 1551 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 484, + 1562, + 1214, + 1562, + 1214, + 1658, + 484, + 1658 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 399, + 878, + 1292, + 878, + 1292, + 983, + 399, + 983 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 299, + 626, + 1407, + 626, + 1407, + 731, + 299, + 731 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 300, + 580, + 1180, + 580, + 1180, + 614, + 300, + 614 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 915, + 1400, + 915, + 1400, + 945, + 1366, + 945 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.805 + }, + { + "category_id": 14, + "poly": [ + 400, + 875, + 1299, + 875, + 1299, + 985, + 400, + 985 + ], + "score": 0.95, + "latex": "L _ { \\mathrm { K - p a i r r o c } } \\left( \\{ ( x _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { K } , \\phi \\right) = \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\sum _ { j \\ne i } e ^ { \\phi ( x _ { i } ) ^ { \\top } \\phi ( y _ { j } ) - \\phi ( x _ { i } ) ^ { \\top } \\phi ( y _ { i } ) } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 483, + 1561, + 1214, + 1561, + 1214, + 1658, + 483, + 1658 + ], + "score": 0.94, + "latex": "I ( X , Y ) \\geq \\mathbb { E } _ { \\prod _ { k } p ( x _ { k } , y _ { k } ) } { \\frac { 1 } { K } } \\sum _ { i = 1 } ^ { K } \\left[ \\log { \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \\frac { 1 } { K } } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\right] \\triangleq I _ { \\mathbb { N } \\mathbb { C } } ," + }, + { + "category_id": 13, + "poly": [ + 862, + 770, + 1108, + 770, + 1108, + 806, + 862, + 806 + ], + "score": 0.93, + "latex": "f ( x , y ) = \\phi ( x ) ^ { \\top } \\phi ( y )" + }, + { + "category_id": 13, + "poly": [ + 896, + 1759, + 1051, + 1759, + 1051, + 1792, + 896, + 1792 + ], + "score": 0.93, + "latex": "\\epsilon \\sim \\mathcal { N } ( 0 , \\Sigma _ { \\epsilon } )" + }, + { + "category_id": 13, + "poly": [ + 650, + 1944, + 702, + 1944, + 702, + 1973, + 650, + 1973 + ], + "score": 0.93, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 1159, + 995, + 1404, + 995, + 1404, + 1032, + 1159, + 1032 + ], + "score": 0.93, + "latex": "f ( x , y ) = \\phi ( x ) ^ { \\top } \\phi ( y )" + }, + { + "category_id": 14, + "poly": [ + 310, + 623, + 1411, + 623, + 1411, + 734, + 310, + 734 + ], + "score": 0.93, + "latex": "\\tilde { \\mathrm { \\Sigma } } _ { \\mathrm { N C E } } = \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] = \\log K - \\mathbb { E } \\left[ \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\sum _ { j \\ne i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1058, + 1821, + 1150, + 1821, + 1150, + 1854, + 1058, + 1854 + ], + "score": 0.92, + "latex": "( X _ { i } , Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 405, + 1759, + 590, + 1759, + 590, + 1792, + 405, + 1792 + ], + "score": 0.92, + "latex": "( X , Y ) = Z + \\epsilon ." + }, + { + "category_id": 13, + "poly": [ + 612, + 1729, + 707, + 1729, + 707, + 1761, + 612, + 1761 + ], + "score": 0.92, + "latex": "I ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 439, + 291, + 494, + 291, + 494, + 324, + 439, + 324 + ], + "score": 0.91, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 1126, + 291, + 1178, + 291, + 1178, + 325, + 1126, + 325 + ], + "score": 0.91, + "latex": "g ( z )" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1669, + 1403, + 1669, + 1403, + 1702, + 1320, + 1702 + ], + "score": 0.91, + "latex": "( x _ { i } , y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 546, + 291, + 599, + 291, + 599, + 324, + 546, + 324 + ], + "score": 0.91, + "latex": "g ( y )" + }, + { + "category_id": 13, + "poly": [ + 474, + 1033, + 616, + 1033, + 616, + 1061, + 474, + 1061 + ], + "score": 0.91, + "latex": "g = g _ { 1 } = g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 673, + 1759, + 844, + 1759, + 844, + 1791, + 673, + 1791 + ], + "score": 0.91, + "latex": "\\bar { Z } \\sim \\mathcal { N } ( 0 , \\Sigma _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1882, + 1229, + 1882, + 1229, + 1912, + 1177, + 1912 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1700, + 909, + 1700, + 909, + 1729, + 857, + 1729 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 294, + 1074, + 294, + 1074, + 324, + 1019, + 324 + ], + "score": 0.9, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 548, + 1944, + 599, + 1944, + 599, + 1973, + 548, + 1973 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 626, + 1791, + 837, + 1791, + 837, + 1823, + 626, + 1823 + ], + "score": 0.9, + "latex": "( X _ { i } , Y _ { i } ) = Z + \\epsilon _ { i }" + }, + { + "category_id": 13, + "poly": [ + 730, + 999, + 781, + 999, + 781, + 1030, + 730, + 1030 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 262, + 1083, + 262, + 1083, + 293, + 1029, + 293 + ], + "score": 0.89, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 479, + 774, + 499, + 774, + 499, + 805, + 479, + 805 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 979, + 1795, + 1003, + 1795, + 1003, + 1820, + 979, + 1820 + ], + "score": 0.86, + "latex": "\\epsilon _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1327, + 776, + 1345, + 776, + 1345, + 805, + 1327, + 805 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 575, + 1822, + 599, + 1822, + 599, + 1848, + 575, + 1848 + ], + "score": 0.82, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 1182, + 748, + 1201, + 748, + 1201, + 775, + 1182, + 775 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 298, + 268, + 315, + 268, + 315, + 293, + 298, + 293 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 819, + 419, + 837, + 419, + 837, + 446, + 819, + 446 + ], + "score": 0.78, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1270, + 806, + 1293, + 806, + 1293, + 831, + 1270, + 831 + ], + "score": 0.76, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1107, + 749, + 1127, + 749, + 1127, + 770, + 1107, + 770 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 297, + 294, + 325, + 294, + 325, + 322, + 297, + 322 + ], + "score": 0.74, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 540, + 1853, + 552, + 1853, + 552, + 1878, + 540, + 1878 + ], + "score": 0.7, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 595, + 268, + 613, + 268, + 613, + 289, + 595, + 289 + ], + "score": 0.68, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 1156, + 237, + 1175, + 237, + 1175, + 259, + 1156, + 259 + ], + "score": 0.68, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1913, + 1158, + 1913, + 1158, + 1940, + 1127, + 1940 + ], + "score": 0.29, + "latex": "_ \\mathrm { 4 c }" + }, + { + "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": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1664.0, + 1319.0, + 1664.0, + 1319.0, + 1706.0, + 291.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1664.0, + 1407.0, + 1664.0, + 1407.0, + 1706.0, + 1404.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 856.0, + 1698.0, + 856.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1698.0, + 1407.0, + 1698.0, + 1407.0, + 1736.0, + 910.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1730.0, + 611.0, + 1730.0, + 611.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1730.0, + 1406.0, + 1730.0, + 1406.0, + 1764.0, + 708.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 404.0, + 1758.0, + 404.0, + 1796.0, + 293.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1758.0, + 672.0, + 1758.0, + 672.0, + 1796.0, + 591.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1758.0, + 895.0, + 1758.0, + 895.0, + 1796.0, + 845.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1758.0, + 1409.0, + 1758.0, + 1409.0, + 1796.0, + 1052.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 625.0, + 1788.0, + 625.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1788.0, + 978.0, + 1788.0, + 978.0, + 1826.0, + 838.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1788.0, + 1407.0, + 1788.0, + 1407.0, + 1826.0, + 1004.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 574.0, + 1819.0, + 574.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1819.0, + 1057.0, + 1819.0, + 1057.0, + 1855.0, + 600.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1855.0, + 1151.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 539.0, + 1849.0, + 539.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1885.0, + 553.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1176.0, + 1882.0, + 1176.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1916.0, + 1230.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1126.0, + 1913.0, + 1126.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1913.0, + 1408.0, + 1913.0, + 1408.0, + 1947.0, + 1159.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 547.0, + 1941.0, + 547.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1941.0, + 649.0, + 1941.0, + 649.0, + 1979.0, + 600.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1979.0, + 703.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 935.0, + 2002.0, + 935.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1155.0, + 229.0, + 1155.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 268.0, + 1176.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 262.0, + 297.0, + 262.0, + 297.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 262.0, + 594.0, + 262.0, + 594.0, + 296.0, + 316.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 262.0, + 1028.0, + 262.0, + 1028.0, + 296.0, + 614.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 296.0, + 1084.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 290.0, + 438.0, + 290.0, + 438.0, + 329.0, + 326.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 290.0, + 545.0, + 290.0, + 545.0, + 329.0, + 495.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 290.0, + 1018.0, + 290.0, + 1018.0, + 329.0, + 600.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 290.0, + 1125.0, + 290.0, + 1125.0, + 329.0, + 1075.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 329.0, + 1179.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1404.0, + 321.0, + 1404.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 351.0, + 1406.0, + 351.0, + 1406.0, + 389.0, + 291.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 380.0, + 1406.0, + 380.0, + 1406.0, + 421.0, + 292.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 414.0, + 818.0, + 414.0, + 818.0, + 449.0, + 295.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 414.0, + 1406.0, + 414.0, + 1406.0, + 449.0, + 838.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 441.0, + 1409.0, + 441.0, + 1409.0, + 482.0, + 292.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 475.0, + 1406.0, + 475.0, + 1406.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 1407.0, + 505.0, + 1407.0, + 540.0, + 295.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 535.0, + 746.0, + 535.0, + 746.0, + 570.0, + 294.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1232.0, + 294.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1229.0, + 1406.0, + 1229.0, + 1406.0, + 1263.0, + 295.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1259.0, + 1403.0, + 1259.0, + 1403.0, + 1292.0, + 295.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1292.0, + 1403.0, + 1292.0, + 1403.0, + 1322.0, + 296.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1321.0, + 1402.0, + 1321.0, + 1402.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1383.0, + 295.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1381.0, + 1406.0, + 1381.0, + 1406.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 1407.0, + 1412.0, + 1407.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 729.0, + 995.0, + 729.0, + 1034.0, + 294.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 995.0, + 1158.0, + 995.0, + 1158.0, + 1034.0, + 782.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1028.0, + 473.0, + 1028.0, + 473.0, + 1064.0, + 295.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1028.0, + 1408.0, + 1028.0, + 1408.0, + 1064.0, + 617.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1060.0, + 1406.0, + 1060.0, + 1406.0, + 1092.0, + 296.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1084.0, + 1406.0, + 1084.0, + 1406.0, + 1127.0, + 291.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 981.0, + 1150.0, + 981.0, + 1186.0, + 295.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 740.0, + 1106.0, + 740.0, + 1106.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 740.0, + 1181.0, + 740.0, + 1181.0, + 777.0, + 1128.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 740.0, + 1403.0, + 740.0, + 1403.0, + 777.0, + 1202.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 478.0, + 770.0, + 478.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 770.0, + 861.0, + 770.0, + 861.0, + 808.0, + 500.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 770.0, + 1326.0, + 770.0, + 1326.0, + 808.0, + 1109.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 808.0, + 1346.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 1269.0, + 805.0, + 1269.0, + 837.0, + 295.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 805.0, + 1403.0, + 805.0, + 1403.0, + 837.0, + 1294.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 832.0, + 700.0, + 832.0, + 700.0, + 869.0, + 292.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1456.0, + 1405.0, + 1456.0, + 1405.0, + 1494.0, + 294.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1490.0, + 1403.0, + 1490.0, + 1403.0, + 1521.0, + 297.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1518.0, + 1267.0, + 1518.0, + 1267.0, + 1555.0, + 293.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 578.0, + 1182.0, + 578.0, + 1182.0, + 619.0, + 296.0, + 619.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 903, + 1404, + 903, + 1404, + 1270, + 298, + 1270 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1286, + 1404, + 1286, + 1404, + 1651, + 298, + 1651 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 506, + 298, + 506 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 521, + 1404, + 521, + 1404, + 735, + 298, + 735 + ], + "score": 0.981 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 814, + 543, + 814, + 543, + 849, + 300, + 849 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.793 + }, + { + "category_id": 0, + "poly": [ + 300, + 813, + 543, + 813, + 543, + 849, + 300, + 849 + ], + "score": 0.147 + }, + { + "category_id": 13, + "poly": [ + 941, + 1560, + 1022, + 1560, + 1022, + 1594, + 941, + 1594 + ], + "score": 0.93, + "latex": "p ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1560, + 1176, + 1560, + 1176, + 1594, + 1072, + 1594 + ], + "score": 0.92, + "latex": "p ( x ) p ( y )" + }, + { + "category_id": 13, + "poly": [ + 1349, + 553, + 1401, + 553, + 1401, + 583, + 1349, + 583 + ], + "score": 0.88, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1531, + 596, + 1531, + 596, + 1558, + 570, + 1558 + ], + "score": 0.84, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1530, + 784, + 1530, + 784, + 1559, + 744, + 1559 + ], + "score": 0.36, + "latex": "\\mathrm { X u }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 810.0, + 549.0, + 810.0, + 549.0, + 858.0, + 292.0, + 858.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": [ + 291.0, + 810.0, + 549.0, + 810.0, + 549.0, + 858.0, + 291.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1707.0, + 291.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1699.0, + 1405.0, + 1699.0, + 1405.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1406.0, + 1727.0, + 1406.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1408.0, + 1758.0, + 1408.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1792.0, + 1405.0, + 1792.0, + 1405.0, + 1822.0, + 296.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1822.0, + 1406.0, + 1822.0, + 1406.0, + 1856.0, + 296.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1060.0, + 2003.0, + 1060.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 1405.0, + 905.0, + 1405.0, + 939.0, + 294.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1406.0, + 933.0, + 1406.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 1404.0, + 966.0, + 1404.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 997.0, + 1405.0, + 997.0, + 1405.0, + 1031.0, + 296.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 1406.0, + 1027.0, + 1406.0, + 1061.0, + 294.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1056.0, + 1407.0, + 1056.0, + 1407.0, + 1093.0, + 291.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1084.0, + 1405.0, + 1084.0, + 1405.0, + 1124.0, + 292.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1117.0, + 1407.0, + 1117.0, + 1407.0, + 1153.0, + 292.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1405.0, + 1149.0, + 1405.0, + 1181.0, + 293.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1178.0, + 1406.0, + 1178.0, + 1406.0, + 1213.0, + 292.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": [ + 292.0, + 1236.0, + 1190.0, + 1236.0, + 1190.0, + 1277.0, + 292.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1284.0, + 1405.0, + 1284.0, + 1405.0, + 1321.0, + 293.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1318.0, + 1404.0, + 1318.0, + 1404.0, + 1349.0, + 296.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1409.0, + 1347.0, + 1409.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1409.0, + 294.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1475.0, + 292.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1406.0, + 1470.0, + 1406.0, + 1501.0, + 293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 569.0, + 1528.0, + 569.0, + 1565.0, + 293.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1528.0, + 743.0, + 1528.0, + 743.0, + 1565.0, + 597.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1528.0, + 1408.0, + 1528.0, + 1408.0, + 1565.0, + 785.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1558.0, + 940.0, + 1558.0, + 940.0, + 1598.0, + 292.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1558.0, + 1071.0, + 1558.0, + 1071.0, + 1598.0, + 1023.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1558.0, + 1405.0, + 1558.0, + 1405.0, + 1598.0, + 1177.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1404.0, + 1590.0, + 1404.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1622.0, + 828.0, + 1622.0, + 828.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1403.0, + 230.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1408.0, + 258.0, + 1408.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 286.0, + 1406.0, + 286.0, + 1406.0, + 332.0, + 292.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 390.0, + 292.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 384.0, + 1402.0, + 384.0, + 1402.0, + 416.0, + 296.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 414.0, + 1405.0, + 414.0, + 1405.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 1404.0, + 444.0, + 1404.0, + 478.0, + 293.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 475.0, + 909.0, + 475.0, + 909.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 554.0, + 293.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 546.0, + 1348.0, + 546.0, + 1348.0, + 589.0, + 292.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 546.0, + 1405.0, + 546.0, + 1405.0, + 589.0, + 1402.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 616.0, + 294.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 612.0, + 1405.0, + 612.0, + 1405.0, + 645.0, + 295.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1404.0, + 640.0, + 1404.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 675.0, + 1402.0, + 675.0, + 1402.0, + 705.0, + 296.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1095.0, + 703.0, + 1095.0, + 740.0, + 295.0, + 740.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 490, + 1404, + 490, + 1404, + 705, + 298, + 705 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 474, + 298, + 474 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 823, + 1404, + 823, + 1404, + 916, + 300, + 916 + ], + "score": 0.963 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 301, + 756, + 607, + 756, + 607, + 788, + 301, + 788 + ], + "score": 0.87 + }, + { + "category_id": 0, + "poly": [ + 300, + 966, + 488, + 966, + 488, + 1000, + 300, + 1000 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 297, + 1316, + 1401, + 1316, + 1401, + 1379, + 297, + 1379 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 297, + 1019, + 1400, + 1019, + 1400, + 1083, + 297, + 1083 + ], + "score": 0.704 + }, + { + "category_id": 1, + "poly": [ + 297, + 1583, + 1401, + 1583, + 1401, + 1648, + 297, + 1648 + ], + "score": 0.682 + }, + { + "category_id": 1, + "poly": [ + 297, + 1405, + 1403, + 1405, + 1403, + 1470, + 297, + 1470 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 295, + 1793, + 1401, + 1793, + 1401, + 1856, + 295, + 1856 + ], + "score": 0.668 + }, + { + "category_id": 1, + "poly": [ + 300, + 1196, + 1401, + 1196, + 1401, + 1291, + 300, + 1291 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 294, + 1107, + 1404, + 1107, + 1404, + 1173, + 294, + 1173 + ], + "score": 0.623 + }, + { + "category_id": 1, + "poly": [ + 294, + 1494, + 1400, + 1494, + 1400, + 1559, + 294, + 1559 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 295, + 1881, + 1402, + 1881, + 1402, + 1946, + 295, + 1946 + ], + "score": 0.6 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1400, + 1971, + 1400, + 2034, + 299, + 2034 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 298, + 1672, + 1404, + 1672, + 1404, + 1767, + 298, + 1767 + ], + "score": 0.53 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 753.0, + 612.0, + 753.0, + 612.0, + 796.0, + 297.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 966.0, + 490.0, + 966.0, + 490.0, + 1003.0, + 296.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 489.0, + 1402.0, + 489.0, + 1402.0, + 524.0, + 296.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 517.0, + 1405.0, + 517.0, + 1405.0, + 559.0, + 292.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1404.0, + 552.0, + 1404.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 584.0, + 1404.0, + 584.0, + 1404.0, + 616.0, + 293.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1405.0, + 612.0, + 1405.0, + 647.0, + 294.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 639.0, + 1405.0, + 639.0, + 1405.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 1279.0, + 674.0, + 1279.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 1407.0, + 322.0, + 1407.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1404.0, + 353.0, + 1404.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1406.0, + 383.0, + 1406.0, + 416.0, + 294.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 1404.0, + 414.0, + 1404.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 444.0, + 1051.0, + 444.0, + 1051.0, + 477.0, + 296.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 819.0, + 1404.0, + 819.0, + 1404.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 1403.0, + 854.0, + 1403.0, + 890.0, + 295.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 884.0, + 895.0, + 884.0, + 895.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1346.0, + 612.0, + 1346.0, + 612.0, + 1381.0, + 321.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1015.0, + 1405.0, + 1015.0, + 1405.0, + 1059.0, + 293.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1048.0, + 1142.0, + 1048.0, + 1142.0, + 1084.0, + 322.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1585.0, + 1405.0, + 1585.0, + 1405.0, + 1621.0, + 297.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1617.0, + 770.0, + 1617.0, + 770.0, + 1649.0, + 323.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1404.0, + 1404.0, + 1404.0, + 1404.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1439.0, + 1396.0, + 1439.0, + 1396.0, + 1471.0, + 324.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1403.0, + 1790.0, + 1403.0, + 1831.0, + 295.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1825.0, + 912.0, + 1825.0, + 912.0, + 1856.0, + 324.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 1406.0, + 1196.0, + 1406.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1230.0, + 1405.0, + 1230.0, + 1405.0, + 1264.0, + 324.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1259.0, + 779.0, + 1259.0, + 779.0, + 1293.0, + 325.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1105.0, + 1407.0, + 1105.0, + 1407.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1139.0, + 965.0, + 1139.0, + 965.0, + 1174.0, + 321.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1497.0, + 1402.0, + 1497.0, + 1402.0, + 1529.0, + 297.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1525.0, + 1187.0, + 1525.0, + 1187.0, + 1560.0, + 321.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1883.0, + 1404.0, + 1883.0, + 1404.0, + 1919.0, + 297.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1912.0, + 1067.0, + 1912.0, + 1067.0, + 1947.0, + 322.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 1394.0, + 2003.0, + 1394.0, + 2034.0, + 324.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1672.0, + 1403.0, + 1672.0, + 1403.0, + 1709.0, + 293.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1704.0, + 1404.0, + 1704.0, + 1404.0, + 1740.0, + 322.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1735.0, + 647.0, + 1735.0, + 647.0, + 1768.0, + 322.0, + 1768.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 296, + 1160, + 1403, + 1160, + 1403, + 1224, + 296, + 1224 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 323, + 299, + 323 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 298, + 1420, + 1405, + 1420, + 1405, + 1485, + 298, + 1485 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 298, + 1507, + 1138, + 1507, + 1138, + 1541, + 298, + 1541 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 300, + 1564, + 1405, + 1564, + 1405, + 1628, + 300, + 1628 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 297, + 1333, + 1402, + 1333, + 1402, + 1398, + 297, + 1398 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 294, + 754, + 1402, + 754, + 1402, + 818, + 294, + 818 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 299, + 1073, + 1404, + 1073, + 1404, + 1139, + 299, + 1139 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 297, + 1650, + 1404, + 1650, + 1404, + 1714, + 297, + 1714 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 292, + 1247, + 1404, + 1247, + 1404, + 1312, + 292, + 1312 + ], + "score": 0.824 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 299, + 1737, + 1404, + 1737, + 1404, + 1830, + 299, + 1830 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 298, + 839, + 1405, + 839, + 1405, + 934, + 298, + 934 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 303, + 635, + 1403, + 635, + 1403, + 732, + 303, + 732 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 294, + 1854, + 1404, + 1854, + 1404, + 1918, + 294, + 1918 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 296, + 549, + 1398, + 549, + 1398, + 615, + 296, + 615 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1405, + 1941, + 1405, + 2033, + 299, + 2033 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 298, + 957, + 1406, + 957, + 1406, + 1050, + 298, + 1050 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 299, + 462, + 1401, + 462, + 1401, + 528, + 299, + 528 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 296, + 345, + 1406, + 345, + 1406, + 441, + 296, + 441 + ], + "score": 0.561 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1159.0, + 1403.0, + 1159.0, + 1403.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1192.0, + 719.0, + 1192.0, + 719.0, + 1225.0, + 321.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 298.0, + 323.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 291.0, + 625.0, + 291.0, + 625.0, + 324.0, + 322.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1458.0, + 296.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1452.0, + 1323.0, + 1452.0, + 1323.0, + 1485.0, + 325.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1505.0, + 1138.0, + 1505.0, + 1138.0, + 1545.0, + 295.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1600.0, + 296.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1593.0, + 1296.0, + 1593.0, + 1296.0, + 1629.0, + 323.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1332.0, + 1408.0, + 1332.0, + 1408.0, + 1372.0, + 295.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1367.0, + 605.0, + 1367.0, + 605.0, + 1399.0, + 322.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 791.0, + 294.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 786.0, + 823.0, + 786.0, + 823.0, + 818.0, + 323.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1110.0, + 295.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1105.0, + 850.0, + 1105.0, + 850.0, + 1140.0, + 324.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1683.0, + 297.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1682.0, + 774.0, + 1682.0, + 774.0, + 1714.0, + 324.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1249.0, + 1406.0, + 1249.0, + 1406.0, + 1285.0, + 296.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1278.0, + 1074.0, + 1278.0, + 1074.0, + 1313.0, + 322.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1771.0, + 295.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1764.0, + 1409.0, + 1764.0, + 1409.0, + 1806.0, + 319.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1794.0, + 399.0, + 1794.0, + 399.0, + 1835.0, + 321.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 836.0, + 1403.0, + 836.0, + 1403.0, + 879.0, + 295.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 873.0, + 1403.0, + 873.0, + 1403.0, + 907.0, + 325.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 901.0, + 781.0, + 901.0, + 781.0, + 939.0, + 323.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 637.0, + 1403.0, + 637.0, + 1403.0, + 671.0, + 295.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 666.0, + 1404.0, + 666.0, + 1404.0, + 703.0, + 323.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 698.0, + 1261.0, + 698.0, + 1261.0, + 733.0, + 324.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1846.0, + 1411.0, + 1846.0, + 1411.0, + 1896.0, + 292.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1882.0, + 1019.0, + 1882.0, + 1019.0, + 1921.0, + 321.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 548.0, + 1404.0, + 548.0, + 1404.0, + 586.0, + 296.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 581.0, + 1375.0, + 581.0, + 1375.0, + 616.0, + 322.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1970.0, + 1410.0, + 1970.0, + 1410.0, + 2009.0, + 321.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1996.0, + 398.0, + 1996.0, + 398.0, + 2037.0, + 321.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 955.0, + 1406.0, + 955.0, + 1406.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 987.0, + 1408.0, + 987.0, + 1408.0, + 1026.0, + 321.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1014.0, + 400.0, + 1014.0, + 400.0, + 1055.0, + 320.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1403.0, + 461.0, + 1403.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 496.0, + 707.0, + 496.0, + 707.0, + 527.0, + 319.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 343.0, + 1406.0, + 343.0, + 1406.0, + 384.0, + 293.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 377.0, + 1404.0, + 377.0, + 1404.0, + 413.0, + 323.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 408.0, + 1409.0, + 408.0, + 1409.0, + 446.0, + 325.0, + 446.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 302, + 229, + 1402, + 229, + 1402, + 322, + 302, + 322 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 302, + 342, + 1400, + 342, + 1400, + 437, + 302, + 437 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 293, + 1105, + 1402, + 1105, + 1402, + 1171, + 293, + 1171 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 295, + 1717, + 1404, + 1717, + 1404, + 1811, + 295, + 1811 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 293, + 1521, + 1403, + 1521, + 1403, + 1586, + 293, + 1586 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 300, + 1603, + 1402, + 1603, + 1402, + 1698, + 300, + 1698 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 299, + 765, + 1405, + 765, + 1405, + 860, + 299, + 860 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 299, + 651, + 1407, + 651, + 1407, + 746, + 299, + 746 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 298, + 455, + 1406, + 455, + 1406, + 551, + 298, + 551 + ], + "score": 0.839 + }, + { + "category_id": 1, + "poly": [ + 302, + 992, + 1403, + 992, + 1403, + 1088, + 302, + 1088 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 296, + 568, + 1400, + 568, + 1400, + 633, + 296, + 633 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 298, + 1831, + 1405, + 1831, + 1405, + 1925, + 298, + 1925 + ], + "score": 0.815 + }, + { + "category_id": 1, + "poly": [ + 295, + 1188, + 1402, + 1188, + 1402, + 1255, + 295, + 1255 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 297, + 878, + 1406, + 878, + 1406, + 972, + 297, + 972 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 295, + 1354, + 1402, + 1354, + 1402, + 1420, + 295, + 1420 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 296, + 1271, + 1401, + 1271, + 1401, + 1336, + 296, + 1336 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 292, + 1438, + 1404, + 1438, + 1404, + 1503, + 292, + 1503 + ], + "score": 0.753 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 291.0, + 625.0, + 291.0, + 625.0, + 326.0, + 322.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 342.0, + 1406.0, + 342.0, + 1406.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 375.0, + 1406.0, + 375.0, + 1406.0, + 409.0, + 324.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 405.0, + 1165.0, + 405.0, + 1165.0, + 439.0, + 323.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1104.0, + 1405.0, + 1104.0, + 1405.0, + 1143.0, + 295.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1137.0, + 845.0, + 1137.0, + 845.0, + 1173.0, + 321.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1785.0, + 321.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1779.0, + 397.0, + 1779.0, + 397.0, + 1813.0, + 322.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1521.0, + 1408.0, + 1521.0, + 1408.0, + 1557.0, + 295.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1551.0, + 1013.0, + 1551.0, + 1013.0, + 1587.0, + 321.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1603.0, + 1407.0, + 1603.0, + 1407.0, + 1641.0, + 296.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1631.0, + 1406.0, + 1631.0, + 1406.0, + 1675.0, + 320.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1666.0, + 582.0, + 1666.0, + 582.0, + 1700.0, + 321.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 766.0, + 1403.0, + 766.0, + 1403.0, + 800.0, + 295.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 797.0, + 1405.0, + 797.0, + 1405.0, + 833.0, + 319.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 827.0, + 647.0, + 827.0, + 647.0, + 862.0, + 324.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 652.0, + 1405.0, + 652.0, + 1405.0, + 686.0, + 296.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 719.0, + 323.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 714.0, + 648.0, + 714.0, + 648.0, + 747.0, + 322.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 1406.0, + 455.0, + 1406.0, + 493.0, + 293.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 523.0, + 322.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 515.0, + 1409.0, + 515.0, + 1409.0, + 556.0, + 322.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 990.0, + 1404.0, + 990.0, + 1404.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1058.0, + 323.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1055.0, + 858.0, + 1055.0, + 858.0, + 1089.0, + 325.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 568.0, + 1404.0, + 568.0, + 1404.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 602.0, + 1311.0, + 602.0, + 1311.0, + 634.0, + 324.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1829.0, + 1406.0, + 1829.0, + 1406.0, + 1867.0, + 292.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1860.0, + 1406.0, + 1860.0, + 1406.0, + 1899.0, + 321.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1893.0, + 538.0, + 1893.0, + 538.0, + 1928.0, + 323.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1225.0, + 297.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1220.0, + 1193.0, + 1220.0, + 1193.0, + 1257.0, + 322.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 1403.0, + 880.0, + 1403.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 910.0, + 1408.0, + 910.0, + 1408.0, + 947.0, + 320.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 940.0, + 397.0, + 940.0, + 397.0, + 974.0, + 321.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1403.0, + 1353.0, + 1403.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1387.0, + 1045.0, + 1387.0, + 1045.0, + 1421.0, + 323.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1269.0, + 1405.0, + 1269.0, + 1405.0, + 1311.0, + 295.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1302.0, + 611.0, + 1302.0, + 611.0, + 1337.0, + 321.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1438.0, + 1403.0, + 1438.0, + 1403.0, + 1474.0, + 296.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1471.0, + 868.0, + 1471.0, + 868.0, + 1504.0, + 323.0, + 1504.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 886, + 1406, + 886, + 1406, + 1172, + 296, + 1172 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1828, + 1404, + 1828, + 1404, + 1989, + 296, + 1989 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 567, + 1404, + 567, + 1404, + 695, + 299, + 695 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 460, + 1404, + 460, + 1404, + 554, + 298, + 554 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 493, + 1317, + 1204, + 1317, + 1204, + 1732, + 493, + 1732 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 289, + 364, + 1403, + 364, + 1403, + 431, + 289, + 431 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 300, + 705, + 1205, + 705, + 1205, + 743, + 300, + 743 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 299, + 1281, + 662, + 1281, + 662, + 1312, + 299, + 1312 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 391, + 1996, + 1307, + 1996, + 1307, + 2041, + 391, + 2041 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 296, + 1214, + 1195, + 1214, + 1195, + 1250, + 296, + 1250 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 298, + 782, + 1223, + 782, + 1223, + 857, + 298, + 857 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 296, + 1761, + 926, + 1761, + 926, + 1798, + 296, + 1798 + ], + "score": 0.862 + }, + { + "category_id": 9, + "poly": [ + 1366, + 2004, + 1400, + 2004, + 1400, + 2034, + 1366, + 2034 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 1375, + 708, + 1402, + 708, + 1402, + 737, + 1375, + 737 + ], + "score": 0.783 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 450, + 227, + 450, + 262, + 301, + 262 + ], + "score": 0.757 + }, + { + "category_id": 0, + "poly": [ + 301, + 297, + 1154, + 297, + 1154, + 335, + 301, + 335 + ], + "score": 0.516 + }, + { + "category_id": 1, + "poly": [ + 301, + 297, + 1154, + 297, + 1154, + 335, + 301, + 335 + ], + "score": 0.477 + }, + { + "category_id": 1, + "poly": [ + 301, + 227, + 450, + 227, + 450, + 262, + 301, + 262 + ], + "score": 0.146 + }, + { + "category_id": 14, + "poly": [ + 486, + 1315, + 1208, + 1315, + 1208, + 1736, + 486, + 1736 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { I _ { \\mathrm { R e x s } } = \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { e ^ { f ( x _ { i } , y _ { j } ) } } { \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) } } \\right] } \\\\ & { \\quad = \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { 1 } { \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } } \\right] } \\\\ & { \\quad = \\mathbb { E } \\left[ - \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\frac { 1 } { K } \\displaystyle \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right] } \\\\ & { \\quad = \\log K - \\mathbb { E } \\left[ \\displaystyle \\frac { 1 } { K } \\displaystyle \\sum _ { i = 1 } ^ { K } \\log \\left( 1 + \\displaystyle \\sum _ { j \\neq i } e ^ { f ( x _ { i } , y _ { j } ) - f ( x _ { i } , y _ { i } ) } \\right) \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 914, + 366, + 1061, + 366, + 1061, + 400, + 914, + 400 + ], + "score": 0.93, + "latex": "X _ { 1 } = g _ { 1 } ( X )" + }, + { + "category_id": 13, + "poly": [ + 298, + 661, + 551, + 661, + 551, + 695, + 298, + 695 + ], + "score": 0.93, + "latex": "X ( X _ { 1 } , X _ { 2 } ) X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 368, + 951, + 472, + 951, + 472, + 986, + 368, + 986 + ], + "score": 0.93, + "latex": "g _ { 1 } ( X ^ { ( 1 ) } )" + }, + { + "category_id": 13, + "poly": [ + 1113, + 366, + 1260, + 366, + 1260, + 400, + 1113, + 400 + ], + "score": 0.92, + "latex": "X _ { 2 } = g _ { 2 } ( X )" + }, + { + "category_id": 13, + "poly": [ + 298, + 522, + 395, + 522, + 395, + 556, + 298, + 556 + ], + "score": 0.92, + "latex": "I ( X ; Y )" + }, + { + "category_id": 13, + "poly": [ + 1270, + 492, + 1404, + 492, + 1404, + 526, + 1270, + 526 + ], + "score": 0.92, + "latex": "I ( X ; Z ) \\ \\leq" + }, + { + "category_id": 13, + "poly": [ + 551, + 601, + 749, + 601, + 749, + 631, + 551, + 631 + ], + "score": 0.92, + "latex": "X _ { 1 } X X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1078, + 570, + 1285, + 570, + 1285, + 601, + 1078, + 601 + ], + "score": 0.91, + "latex": "X _ { 1 } \\left. X \\right. X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1077, + 1033, + 1077, + 1033, + 1107, + 973, + 1107 + ], + "score": 0.91, + "latex": "1 0 ^ { - 6 }" + }, + { + "category_id": 13, + "poly": [ + 488, + 1077, + 548, + 1077, + 548, + 1107, + 488, + 1107 + ], + "score": 0.91, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 916, + 493, + 1091, + 493, + 1091, + 521, + 916, + 521 + ], + "score": 0.91, + "latex": "X Y Z" + }, + { + "category_id": 13, + "poly": [ + 726, + 707, + 1060, + 707, + 1060, + 742, + 726, + 742 + ], + "score": 0.91, + "latex": "I ( X _ { 1 } ; X _ { 2 } ) \\leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )" + }, + { + "category_id": 13, + "poly": [ + 538, + 396, + 875, + 396, + 875, + 430, + 538, + 430 + ], + "score": 0.9, + "latex": "I ( X _ { 1 } ; X _ { 2 } ) \\leq I \\left( X ; ( X _ { 1 } , X _ { 2 } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 297, + 1283, + 349, + 1283, + 349, + 1312, + 297, + 1312 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 809, + 570, + 847, + 570, + 847, + 601, + 809, + 601 + ], + "score": 0.89, + "latex": "X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 602, + 1053, + 602, + 1053, + 631, + 1014, + 631 + ], + "score": 0.89, + "latex": "X _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1346, + 983, + 1402, + 983, + 1402, + 1014, + 1346, + 1014 + ], + "score": 0.89, + "latex": "X ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 709, + 663, + 1033, + 663, + 1033, + 695, + 709, + 695 + ], + "score": 0.88, + "latex": "I ( X ; X _ { 1 } ) \\leq I ( X ; ( X _ { 1 } , X _ { 2 } ) )" + }, + { + "category_id": 14, + "poly": [ + 391, + 1992, + 1306, + 1992, + 1306, + 2040, + 391, + 2040 + ], + "score": 0.88, + "latex": "I ( X ; Y ) = D _ { K L } ( p ( x , y ) | | p ( x ) p ( y ) ) \\geq \\mathbb { E } _ { p ( x , y ) } [ \\tilde { f } ( x , y ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( x ) p ( y ) } [ e ^ { \\tilde { f } ( x , y ) } ] ." + }, + { + "category_id": 13, + "poly": [ + 921, + 602, + 958, + 602, + 958, + 631, + 921, + 631 + ], + "score": 0.88, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 709, + 631, + 983, + 631, + 983, + 662, + 709, + 662 + ], + "score": 0.87, + "latex": "I ( X _ { 1 } ; X _ { 2 } ) \\leq I ( X ; X _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 902, + 1022, + 930, + 1022, + 930, + 1049, + 902, + 1049 + ], + "score": 0.86, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1923, + 1182, + 1923, + 1182, + 1959, + 1162, + 1959 + ], + "score": 0.85, + "latex": "\\tilde { f }" + }, + { + "category_id": 13, + "poly": [ + 1323, + 923, + 1351, + 923, + 1351, + 952, + 1323, + 952 + ], + "score": 0.84, + "latex": "g _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 530, + 494, + 555, + 494, + 555, + 520, + 530, + 520 + ], + "score": 0.83, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 412, + 922, + 441, + 922, + 441, + 951, + 412, + 951 + ], + "score": 0.82, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1183, + 987, + 1212, + 987, + 1212, + 1014, + 1183, + 1014 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 712, + 570, + 750, + 570, + 750, + 601, + 712, + 601 + ], + "score": 0.78, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 435, + 398, + 461, + 398, + 461, + 424, + 435, + 424 + ], + "score": 0.74, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 518, + 368, + 545, + 368, + 545, + 394, + 518, + 394 + ], + "score": 0.74, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 368, + 632, + 397, + 632, + 397, + 658, + 368, + 658 + ], + "score": 0.74, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 670, + 571, + 697, + 571, + 697, + 598, + 670, + 598 + ], + "score": 0.67, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 408, + 493, + 435, + 493, + 435, + 520, + 408, + 520 + ], + "score": 0.52, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 448, + 493, + 475, + 493, + 475, + 520, + 448, + 520 + ], + "score": 0.51, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 407, + 493, + 475, + 493, + 475, + 521, + 407, + 521 + ], + "score": 0.29, + "latex": "X , Y" + }, + { + "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": [ + 295.0, + 1211.0, + 1198.0, + 1211.0, + 1198.0, + 1254.0, + 295.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 781.0, + 1226.0, + 781.0, + 1226.0, + 821.0, + 294.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 820.0, + 567.0, + 820.0, + 567.0, + 860.0, + 350.0, + 860.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": [ + 295.0, + 1760.0, + 928.0, + 1760.0, + 928.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 713.0, + 1401.0, + 713.0, + 1401.0, + 736.0, + 1380.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 453.0, + 225.0, + 453.0, + 269.0, + 296.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 297.0, + 1157.0, + 297.0, + 1157.0, + 338.0, + 295.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 885.0, + 1409.0, + 885.0, + 1409.0, + 924.0, + 291.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 918.0, + 411.0, + 918.0, + 411.0, + 954.0, + 294.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 918.0, + 1322.0, + 918.0, + 1322.0, + 954.0, + 442.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 918.0, + 1406.0, + 918.0, + 1406.0, + 954.0, + 1352.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 949.0, + 367.0, + 949.0, + 367.0, + 990.0, + 293.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 949.0, + 1408.0, + 949.0, + 1408.0, + 990.0, + 473.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 983.0, + 1182.0, + 983.0, + 1182.0, + 1020.0, + 291.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 983.0, + 1345.0, + 983.0, + 1345.0, + 1020.0, + 1213.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 983.0, + 1407.0, + 983.0, + 1407.0, + 1020.0, + 1403.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1014.0, + 901.0, + 1014.0, + 901.0, + 1054.0, + 291.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1014.0, + 1406.0, + 1014.0, + 1406.0, + 1054.0, + 931.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1048.0, + 1404.0, + 1048.0, + 1404.0, + 1082.0, + 294.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1078.0, + 487.0, + 1078.0, + 487.0, + 1112.0, + 294.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1078.0, + 972.0, + 1078.0, + 972.0, + 1112.0, + 549.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1078.0, + 1407.0, + 1078.0, + 1407.0, + 1112.0, + 1034.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1110.0, + 1406.0, + 1110.0, + 1406.0, + 1144.0, + 296.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1138.0, + 1301.0, + 1138.0, + 1301.0, + 1175.0, + 294.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1830.0, + 1405.0, + 1830.0, + 1405.0, + 1864.0, + 295.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1861.0, + 1402.0, + 1861.0, + 1402.0, + 1895.0, + 296.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1892.0, + 1405.0, + 1892.0, + 1405.0, + 1926.0, + 295.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1922.0, + 1161.0, + 1922.0, + 1161.0, + 1963.0, + 294.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1922.0, + 1406.0, + 1922.0, + 1406.0, + 1963.0, + 1183.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1955.0, + 933.0, + 1955.0, + 933.0, + 1989.0, + 295.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 567.0, + 669.0, + 567.0, + 669.0, + 604.0, + 294.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 567.0, + 711.0, + 567.0, + 711.0, + 604.0, + 698.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 567.0, + 808.0, + 567.0, + 808.0, + 604.0, + 751.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 567.0, + 1077.0, + 567.0, + 1077.0, + 604.0, + 848.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 567.0, + 1405.0, + 567.0, + 1405.0, + 604.0, + 1286.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 550.0, + 600.0, + 550.0, + 633.0, + 294.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 600.0, + 920.0, + 600.0, + 920.0, + 633.0, + 750.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 600.0, + 1013.0, + 600.0, + 1013.0, + 633.0, + 959.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 633.0, + 1054.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 631.0, + 367.0, + 631.0, + 367.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 631.0, + 708.0, + 631.0, + 708.0, + 664.0, + 398.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 631.0, + 1404.0, + 631.0, + 1404.0, + 664.0, + 984.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 658.0, + 297.0, + 658.0, + 297.0, + 698.0, + 293.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 658.0, + 708.0, + 658.0, + 708.0, + 698.0, + 552.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 658.0, + 1046.0, + 658.0, + 1046.0, + 698.0, + 1034.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1404.0, + 460.0, + 1404.0, + 497.0, + 293.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 406.0, + 488.0, + 406.0, + 529.0, + 292.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 488.0, + 529.0, + 488.0, + 529.0, + 529.0, + 476.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 488.0, + 915.0, + 488.0, + 915.0, + 529.0, + 556.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 488.0, + 1269.0, + 488.0, + 1269.0, + 529.0, + 1092.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 522.0, + 475.0, + 522.0, + 475.0, + 557.0, + 396.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 360.0, + 517.0, + 360.0, + 517.0, + 404.0, + 292.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 360.0, + 913.0, + 360.0, + 913.0, + 404.0, + 546.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 360.0, + 1112.0, + 360.0, + 1112.0, + 404.0, + 1062.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 360.0, + 1405.0, + 360.0, + 1405.0, + 404.0, + 1261.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 395.0, + 434.0, + 395.0, + 434.0, + 431.0, + 291.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 395.0, + 537.0, + 395.0, + 537.0, + 431.0, + 462.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 395.0, + 889.0, + 395.0, + 889.0, + 431.0, + 876.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 725.0, + 702.0, + 725.0, + 748.0, + 294.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 702.0, + 1209.0, + 702.0, + 1209.0, + 748.0, + 1061.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1279.0, + 665.0, + 1279.0, + 665.0, + 1316.0, + 350.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 297.0, + 1157.0, + 297.0, + 1157.0, + 338.0, + 295.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 225.0, + 453.0, + 225.0, + 453.0, + 269.0, + 296.0, + 269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 966, + 1406, + 966, + 1406, + 1124, + 296, + 1124 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1879, + 1404, + 1879, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 694, + 1406, + 694, + 1406, + 791, + 297, + 791 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1582, + 1406, + 1582, + 1406, + 1733, + 297, + 1733 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 411, + 1406, + 411, + 1406, + 503, + 297, + 503 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 484, + 844, + 1213, + 844, + 1213, + 942, + 484, + 942 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 395, + 1177, + 1298, + 1177, + 1298, + 1275, + 395, + 1275 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 656, + 1729, + 1041, + 1729, + 1041, + 1796, + 656, + 1796 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1801, + 1404, + 1801, + 1404, + 1868, + 299, + 1868 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 293, + 226, + 1406, + 226, + 1406, + 296, + 293, + 296 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 526, + 1493, + 1166, + 1493, + 1166, + 1571, + 526, + 1571 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 297, + 539, + 1406, + 539, + 1406, + 637, + 297, + 637 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 299, + 1444, + 1173, + 1444, + 1173, + 1482, + 299, + 1482 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 292, + 1301, + 1407, + 1301, + 1407, + 1337, + 292, + 1337 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.922 + }, + { + "category_id": 9, + "poly": [ + 1365, + 876, + 1400, + 876, + 1400, + 907, + 1365, + 907 + ], + "score": 0.89 + }, + { + "category_id": 8, + "poly": [ + 316, + 349, + 1373, + 349, + 1373, + 398, + 316, + 398 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1365, + 634, + 1400, + 634, + 1400, + 662, + 1365, + 662 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 297, + 1377, + 1195, + 1377, + 1195, + 1416, + 297, + 1416 + ], + "score": 0.486 + }, + { + "category_id": 0, + "poly": [ + 297, + 1377, + 1195, + 1377, + 1195, + 1416, + 297, + 1416 + ], + "score": 0.482 + }, + { + "category_id": 14, + "poly": [ + 654, + 1725, + 1045, + 1725, + 1045, + 1797, + 654, + 1797 + ], + "score": 0.94, + "latex": "I ( X , Y ) = - \\frac { 1 } { 2 } \\log ( 1 - \\frac { \\Sigma _ { 1 2 } \\Sigma _ { 2 1 } } { \\Sigma _ { 1 1 } \\Sigma _ { 2 2 } } ) ." + }, + { + "category_id": 14, + "poly": [ + 483, + 843, + 1216, + 843, + 1216, + 941, + 483, + 941 + ], + "score": 0.94, + "latex": "I ( X , Y ) \\geq \\mathbb { E } _ { \\prod _ { k } p ( x _ { k } , y _ { k } ) } { \\frac { 1 } { K } } \\sum _ { i = 1 } ^ { K } \\left[ \\log { \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { { \\frac { 1 } { K } } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\right] = I _ { \\mathbb { N } \\mathbb { C } } ." + }, + { + "category_id": 13, + "poly": [ + 1311, + 727, + 1403, + 727, + 1403, + 760, + 1311, + 760 + ], + "score": 0.94, + "latex": "( X _ { i } , Y _ { i } )" + }, + { + "category_id": 14, + "poly": [ + 396, + 1176, + 1302, + 1176, + 1302, + 1274, + 396, + 1274 + ], + "score": 0.94, + "latex": "I ( X , Y ) \\leq \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } I ( X _ { 1 : K } ; Y _ { i } ) \\geq \\mathbb { E } _ { p ( x _ { 1 : K } , y _ { 1 : K } ) } \\frac { 1 } { K } \\sum _ { i = 1 } ^ { K } \\left[ \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 785, + 1803, + 1223, + 1803, + 1223, + 1837, + 785, + 1837 + ], + "score": 0.93, + "latex": "I ( X , Y ) = H ( X ) + H ( Y ) - H ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 911, + 412, + 1040, + 412, + 1040, + 449, + 911, + 449 + ], + "score": 0.93, + "latex": "( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }" + }, + { + "category_id": 13, + "poly": [ + 817, + 231, + 897, + 231, + 897, + 263, + 817, + 263 + ], + "score": 0.93, + "latex": "p ( x , y )" + }, + { + "category_id": 13, + "poly": [ + 449, + 228, + 578, + 228, + 578, + 264, + 449, + 264 + ], + "score": 0.93, + "latex": "( X _ { i } , Y _ { i } ) _ { i = 1 } ^ { K }" + }, + { + "category_id": 14, + "poly": [ + 310, + 538, + 1411, + 538, + 1411, + 636, + 310, + 636 + ], + "score": 0.93, + "latex": "\\textmd { ( X , Y ) \\geq 1 + } \\mathbb { E } _ { p ( x _ { i } , y _ { i } ) \\prod _ { k \\geqslant i } p ( x _ { k } ) } \\left[ \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] - \\mathbb { E } _ { p ( y _ { i } ) \\prod _ { k } p ( x _ { k } ) } \\left[ \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 650, + 1583, + 854, + 1583, + 854, + 1618, + 650, + 1618 + ], + "score": 0.92, + "latex": "( X _ { i } , Y _ { i } ) = Z + \\epsilon _ { i }" + }, + { + "category_id": 13, + "poly": [ + 709, + 1448, + 880, + 1448, + 880, + 1482, + 709, + 1482 + ], + "score": 0.92, + "latex": "Z \\sim { \\mathcal { N } } ( 0 , \\Sigma _ { Z } )" + }, + { + "category_id": 13, + "poly": [ + 932, + 1448, + 1087, + 1448, + 1087, + 1482, + 932, + 1482 + ], + "score": 0.92, + "latex": "\\epsilon \\sim \\mathcal { N } ( 0 , \\Sigma _ { \\epsilon } )" + }, + { + "category_id": 13, + "poly": [ + 791, + 447, + 1224, + 447, + 1224, + 504, + 791, + 504 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\tilde { f } ( x _ { 1 : K } , y _ { i } ) = 1 + \\log \\frac { e ^ { f ( x _ { i } , y _ { i } ) } } { \\frac { 1 } { K } \\sum _ { j = 1 } ^ { K } e ^ { f ( x _ { j } , y _ { i } ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 980, + 1882, + 1071, + 1882, + 1071, + 1915, + 980, + 1915 + ], + "score": 0.92, + "latex": "( X _ { i } , Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 395, + 999, + 675, + 999, + 675, + 1032, + 395, + 1032 + ], + "score": 0.92, + "latex": "I ( X _ { i } , Y _ { i } ) = I ( X _ { 1 : K } , Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1090, + 435, + 1090, + 435, + 1123, + 299, + 1123 + ], + "score": 0.92, + "latex": "I ( X _ { 1 : K } , Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 541, + 1061, + 632, + 1061, + 632, + 1093, + 541, + 1093 + ], + "score": 0.92, + "latex": "( X _ { i } , Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 547, + 261, + 959, + 261, + 959, + 295, + 547, + 295 + ], + "score": 0.92, + "latex": "I ( X _ { 1 : K } ; Y _ { i } ) = I ( X _ { i } ; Y _ { i } ) = I ( X ; Y )" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1614, + 1202, + 1614, + 1202, + 1647, + 1106, + 1647 + ], + "score": 0.92, + "latex": "I ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 606, + 1677, + 686, + 1677, + 686, + 1709, + 606, + 1709 + ], + "score": 0.92, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1301, + 1302, + 1397, + 1302, + 1397, + 1336, + 1301, + 1336 + ], + "score": 0.92, + "latex": "I ( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1013, + 230, + 1325, + 230, + 1325, + 264, + 1013, + 264 + ], + "score": 0.92, + "latex": "X _ { 1 : K } = ( X _ { 1 } , X _ { 2 } , \\dots , X _ { K } )" + }, + { + "category_id": 13, + "poly": [ + 415, + 453, + 551, + 453, + 551, + 488, + 415, + 488 + ], + "score": 0.92, + "latex": "I ( X _ { 1 : K } ; Y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 2002, + 497, + 2002, + 497, + 2036, + 298, + 2036 + ], + "score": 0.92, + "latex": "I ( X , Y ) \\leq \\log K" + }, + { + "category_id": 14, + "poly": [ + 530, + 1493, + 1170, + 1493, + 1170, + 1571, + 530, + 1571 + ], + "score": 0.92, + "latex": "\\Sigma _ { Z } = \\left( { \\begin{array} { c c } { 1 } & { - 0 . 5 } \\\\ { - 0 . 5 } & { 1 } \\end{array} } \\right) \\qquad { \\mathrm { a n d } } \\qquad \\Sigma _ { \\epsilon } = \\left( { \\begin{array} { c c } { 1 } & { 0 . 9 } \\\\ { 0 . 9 } & { 1 } \\end{array} } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 684, + 1973, + 837, + 1973, + 837, + 2004, + 684, + 2004 + ], + "score": 0.92, + "latex": "I _ { \\mathrm { N C E } } \\leq \\log K" + }, + { + "category_id": 13, + "poly": [ + 425, + 1448, + 609, + 1448, + 609, + 1482, + 425, + 1482 + ], + "score": 0.91, + "latex": "( X , Y ) = Z + \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 508, + 1647, + 588, + 1647, + 588, + 1679, + 508, + 1679 + ], + "score": 0.91, + "latex": "( X , Y )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1060, + 1404, + 1060, + 1404, + 1093, + 1264, + 1093 + ], + "score": 0.91, + "latex": "I ( X _ { i } , Y _ { i } ) \\leq" + }, + { + "category_id": 13, + "poly": [ + 597, + 2004, + 648, + 2004, + 648, + 2034, + 597, + 2034 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1646, + 1288, + 1646, + 1288, + 1676, + 1179, + 1676 + ], + "score": 0.91, + "latex": "\\Sigma _ { Z } + \\Sigma _ { \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 863, + 759, + 914, + 759, + 914, + 789, + 863, + 789 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 603, + 1944, + 654, + 1944, + 654, + 1973, + 603, + 1973 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 555, + 1304, + 606, + 1304, + 606, + 1334, + 555, + 1334 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 14, + "poly": [ + 327, + 346, + 1369, + 346, + 1369, + 398, + 327, + 398 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { I ( \\boldsymbol { X } ; \\boldsymbol { Y } ) = I ( X _ { 1 : K } ; Y _ { i } ) \\ge \\mathbb { E } _ { p ( x _ { i } , y _ { i } ) \\prod _ { k \\geqslant i } p ( x _ { k } ) } [ \\tilde { f } ( x _ { 1 : K } , y _ { i } ) ] - e ^ { - 1 } \\mathbb { E } _ { p ( y _ { i } ) \\prod _ { k } p ( x _ { k } ) } [ e ^ { \\tilde { f } ( x _ { 1 : K } , y _ { i } ) } ] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 776, + 698, + 804, + 698, + 804, + 727, + 776, + 727 + ], + "score": 0.86, + "latex": "Y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 634, + 731, + 659, + 731, + 659, + 759, + 634, + 759 + ], + "score": 0.86, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 991, + 1590, + 1015, + 1590, + 1015, + 1615, + 991, + 1615 + ], + "score": 0.85, + "latex": "\\epsilon _ { i }" + }, + { + "category_id": 13, + "poly": [ + 444, + 1974, + 473, + 1974, + 473, + 2000, + 444, + 2000 + ], + "score": 0.84, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1163, + 730, + 1191, + 730, + 1191, + 759, + 1163, + 759 + ], + "score": 0.84, + "latex": "y _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 594, + 1836, + 621, + 1836, + 621, + 1862, + 594, + 1862 + ], + "score": 0.84, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 580, + 1616, + 602, + 1616, + 602, + 1642, + 580, + 1642 + ], + "score": 0.83, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 644, + 698, + 673, + 698, + 673, + 724, + 644, + 724 + ], + "score": 0.83, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1974, + 1129, + 1974, + 1129, + 2000, + 1100, + 2000 + ], + "score": 0.82, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1677, + 1162, + 1677, + 1162, + 1703, + 1139, + 1703 + ], + "score": 0.81, + "latex": "\\Sigma" + }, + { + "category_id": 13, + "poly": [ + 383, + 264, + 395, + 264, + 395, + 289, + 383, + 289 + ], + "score": 0.78, + "latex": "i" + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1373.0, + 1196.0, + 1373.0, + 1196.0, + 1422.0, + 291.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 968.0, + 1404.0, + 968.0, + 1404.0, + 1002.0, + 296.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 394.0, + 995.0, + 394.0, + 1036.0, + 293.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 995.0, + 1406.0, + 995.0, + 1406.0, + 1036.0, + 676.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1028.0, + 1404.0, + 1028.0, + 1404.0, + 1064.0, + 294.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1056.0, + 540.0, + 1056.0, + 540.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1056.0, + 1263.0, + 1056.0, + 1263.0, + 1096.0, + 633.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1088.0, + 298.0, + 1088.0, + 298.0, + 1126.0, + 295.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1088.0, + 1083.0, + 1088.0, + 1083.0, + 1126.0, + 436.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 979.0, + 1880.0, + 979.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1917.0, + 1072.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 602.0, + 1940.0, + 602.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1978.0, + 655.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 443.0, + 1972.0, + 443.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1972.0, + 683.0, + 1972.0, + 683.0, + 2006.0, + 474.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1972.0, + 1099.0, + 1972.0, + 1099.0, + 2006.0, + 838.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2006.0, + 1130.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 2002.0, + 596.0, + 2002.0, + 596.0, + 2035.0, + 498.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 2002.0, + 1063.0, + 2002.0, + 1063.0, + 2035.0, + 649.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 696.0, + 643.0, + 696.0, + 643.0, + 730.0, + 295.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 696.0, + 775.0, + 696.0, + 775.0, + 730.0, + 674.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 696.0, + 1404.0, + 696.0, + 1404.0, + 730.0, + 805.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 633.0, + 726.0, + 633.0, + 761.0, + 295.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 726.0, + 1162.0, + 726.0, + 1162.0, + 761.0, + 660.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 726.0, + 1310.0, + 726.0, + 1310.0, + 761.0, + 1192.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 757.0, + 862.0, + 757.0, + 862.0, + 792.0, + 295.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 757.0, + 1071.0, + 757.0, + 1071.0, + 792.0, + 915.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1583.0, + 649.0, + 1583.0, + 649.0, + 1620.0, + 295.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1583.0, + 990.0, + 1583.0, + 990.0, + 1620.0, + 855.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1583.0, + 1404.0, + 1583.0, + 1404.0, + 1620.0, + 1016.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1613.0, + 579.0, + 1613.0, + 579.0, + 1650.0, + 295.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1613.0, + 1105.0, + 1613.0, + 1105.0, + 1650.0, + 603.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1613.0, + 1406.0, + 1613.0, + 1406.0, + 1650.0, + 1203.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1644.0, + 507.0, + 1644.0, + 507.0, + 1681.0, + 295.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1644.0, + 1178.0, + 1644.0, + 1178.0, + 1681.0, + 589.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1644.0, + 1406.0, + 1644.0, + 1406.0, + 1681.0, + 1289.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1676.0, + 605.0, + 1676.0, + 605.0, + 1708.0, + 296.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1676.0, + 1138.0, + 1676.0, + 1138.0, + 1708.0, + 687.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1676.0, + 1403.0, + 1676.0, + 1403.0, + 1708.0, + 1163.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1710.0, + 329.0, + 1710.0, + 329.0, + 1739.0, + 294.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 408.0, + 910.0, + 408.0, + 910.0, + 452.0, + 292.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 408.0, + 1408.0, + 408.0, + 1408.0, + 452.0, + 1041.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 442.0, + 414.0, + 442.0, + 414.0, + 512.0, + 294.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 442.0, + 790.0, + 442.0, + 790.0, + 512.0, + 552.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 456.0, + 1307.0, + 456.0, + 1307.0, + 496.0, + 1120.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1802.0, + 784.0, + 1802.0, + 784.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1802.0, + 1403.0, + 1802.0, + 1403.0, + 1838.0, + 1224.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 593.0, + 1835.0, + 593.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1835.0, + 790.0, + 1835.0, + 790.0, + 1870.0, + 622.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 448.0, + 221.0, + 448.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 221.0, + 816.0, + 221.0, + 816.0, + 270.0, + 579.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 221.0, + 1012.0, + 221.0, + 1012.0, + 270.0, + 898.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 221.0, + 1412.0, + 221.0, + 1412.0, + 270.0, + 1326.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 382.0, + 260.0, + 382.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 260.0, + 546.0, + 260.0, + 546.0, + 297.0, + 396.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 260.0, + 1126.0, + 260.0, + 1126.0, + 297.0, + 960.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 424.0, + 1443.0, + 424.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1443.0, + 708.0, + 1443.0, + 708.0, + 1487.0, + 610.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1443.0, + 931.0, + 1443.0, + 931.0, + 1487.0, + 881.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1443.0, + 1174.0, + 1443.0, + 1174.0, + 1487.0, + 1088.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 554.0, + 1295.0, + 554.0, + 1342.0, + 293.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1295.0, + 1300.0, + 1295.0, + 1300.0, + 1342.0, + 607.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1295.0, + 1410.0, + 1295.0, + 1410.0, + 1342.0, + 1398.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1373.0, + 1196.0, + 1373.0, + 1196.0, + 1422.0, + 291.0, + 1422.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1711, + 1406, + 1711, + 1406, + 1867, + 297, + 1867 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1404, + 1880, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 433, + 1180, + 1266, + 1180, + 1266, + 1456, + 433, + 1456 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 300, + 1477, + 1401, + 1477, + 1401, + 1576, + 300, + 1576 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 654, + 777, + 1042, + 777, + 1042, + 1053, + 654, + 1053 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 298, + 1074, + 1399, + 1074, + 1399, + 1137, + 298, + 1137 + ], + "score": 0.951 + }, + { + "category_id": 3, + "poly": [ + 669, + 302, + 1027, + 302, + 1027, + 559, + 669, + 559 + ], + "score": 0.951 + }, + { + "category_id": 4, + "poly": [ + 295, + 580, + 1406, + 580, + 1406, + 735, + 295, + 735 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 294, + 1641, + 1370, + 1641, + 1370, + 1678, + 294, + 1678 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 817, + 75, + 817, + 105, + 298, + 105 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 0, + "poly": [ + 298, + 226, + 676, + 226, + 676, + 262, + 298, + 262 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 298, + 226, + 676, + 226, + 676, + 262, + 298, + 262 + ], + "score": 0.126 + }, + { + "category_id": 13, + "poly": [ + 995, + 1509, + 1048, + 1509, + 1048, + 1540, + 995, + 1540 + ], + "score": 0.92, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1508, + 1405, + 1508, + 1405, + 1542, + 1255, + 1542 + ], + "score": 0.92, + "latex": "L _ { t } ( g _ { 1 } , g _ { 2 } ) =" + }, + { + "category_id": 13, + "poly": [ + 801, + 1077, + 853, + 1077, + 853, + 1107, + 801, + 1107 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 874, + 1774, + 1018, + 1774, + 1018, + 1803, + 874, + 1803 + ], + "score": 0.91, + "latex": "3 2 \\times 1 4 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 882, + 643, + 934, + 643, + 934, + 674, + 882, + 674 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1974, + 813, + 1974, + 813, + 2004, + 762, + 2004 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 671, + 1802, + 731, + 1802, + 731, + 1833, + 671, + 1833 + ], + "score": 0.9, + "latex": "1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 764, + 1802, + 824, + 1802, + 824, + 1832, + 764, + 1832 + ], + "score": 0.89, + "latex": "1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1081, + 1192, + 1081, + 1192, + 1108, + 1125, + 1108 + ], + "score": 0.89, + "latex": "g _ { 1 } , g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1538, + 654, + 1538, + 654, + 1577, + 297, + 1577 + ], + "score": 0.89, + "latex": "| I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1834, + 1389, + 1834, + 1389, + 1864, + 1335, + 1864 + ], + "score": 0.87, + "latex": "2 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 965, + 615, + 994, + 615, + 994, + 644, + 965, + 644 + ], + "score": 0.86, + "latex": "g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1511, + 1095, + 1511, + 1095, + 1537, + 1081, + 1537 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1206, + 1237, + 1206, + 1237, + 1223, + 1160, + 1223 + ], + "score": 0.34, + "latex": "( I _ { N W J } , t = 2 )" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1177.0, + 491.0, + 1177.0, + 491.0, + 1210.0, + 447.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1182.0, + 925.0, + 1182.0, + 925.0, + 1204.0, + 905.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1200.0, + 509.0, + 1200.0, + 509.0, + 1376.0, + 412.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1196.0, + 808.0, + 1196.0, + 808.0, + 1276.0, + 647.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1244.0, + 901.0, + 1244.0, + 901.0, + 1356.0, + 872.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1212.0, + 925.0, + 1212.0, + 925.0, + 1265.0, + 905.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1199.0, + 1159.0, + 1199.0, + 1159.0, + 1277.0, + 1084.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1199.0, + 1249.0, + 1199.0, + 1249.0, + 1277.0, + 1238.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1263.0, + 492.0, + 1263.0, + 492.0, + 1307.0, + 447.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1265.0, + 775.0, + 1265.0, + 775.0, + 1299.0, + 647.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1274.0, + 925.0, + 1274.0, + 925.0, + 1297.0, + 905.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1264.0, + 1216.0, + 1264.0, + 1216.0, + 1298.0, + 1085.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1294.0, + 490.0, + 1294.0, + 490.0, + 1329.0, + 448.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1306.0, + 922.0, + 1306.0, + 922.0, + 1326.0, + 906.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1344.0, + 491.0, + 1344.0, + 491.0, + 1402.0, + 447.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1338.0, + 925.0, + 1338.0, + 925.0, + 1389.0, + 905.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1361.0, + 1182.0, + 1361.0, + 1182.0, + 1377.0, + 1164.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1392.0, + 492.0, + 1392.0, + 492.0, + 1425.0, + 447.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1396.0, + 926.0, + 1396.0, + 926.0, + 1422.0, + 893.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1412.0, + 502.0, + 1412.0, + 502.0, + 1439.0, + 479.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1413.0, + 582.0, + 1413.0, + 582.0, + 1438.0, + 559.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1410.0, + 670.0, + 1410.0, + 670.0, + 1440.0, + 634.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1410.0, + 750.0, + 1410.0, + 750.0, + 1440.0, + 715.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1410.0, + 830.0, + 1410.0, + 830.0, + 1440.0, + 795.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1414.0, + 939.0, + 1414.0, + 939.0, + 1436.0, + 920.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1412.0, + 1021.0, + 1412.0, + 1021.0, + 1438.0, + 998.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1410.0, + 1110.0, + 1410.0, + 1110.0, + 1440.0, + 1074.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1409.0, + 1191.0, + 1409.0, + 1191.0, + 1440.0, + 1154.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1410.0, + 1271.0, + 1410.0, + 1271.0, + 1440.0, + 1236.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1431.0, + 763.0, + 1431.0, + 763.0, + 1458.0, + 539.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1431.0, + 1203.0, + 1431.0, + 1203.0, + 1458.0, + 980.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1474.0, + 1406.0, + 1474.0, + 1406.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1509.0, + 994.0, + 1509.0, + 994.0, + 1544.0, + 296.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1509.0, + 1080.0, + 1509.0, + 1080.0, + 1544.0, + 1049.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1509.0, + 1254.0, + 1509.0, + 1254.0, + 1544.0, + 1096.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1538.0, + 666.0, + 1538.0, + 666.0, + 1579.0, + 655.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 773.0, + 710.0, + 773.0, + 710.0, + 807.0, + 667.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 809.0, + 711.0, + 809.0, + 711.0, + 844.0, + 667.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 845.0, + 710.0, + 845.0, + 710.0, + 879.0, + 666.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 874.0, + 684.0, + 874.0, + 684.0, + 925.0, + 655.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 878.0, + 711.0, + 878.0, + 711.0, + 917.0, + 665.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 917.0, + 711.0, + 917.0, + 711.0, + 952.0, + 667.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 928.0, + 986.0, + 928.0, + 986.0, + 959.0, + 935.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 954.0, + 710.0, + 954.0, + 710.0, + 988.0, + 666.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 949.0, + 1012.0, + 949.0, + 1012.0, + 979.0, + 937.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 968.0, + 1030.0, + 968.0, + 1030.0, + 1003.0, + 936.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 988.0, + 712.0, + 988.0, + 712.0, + 1022.0, + 666.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1010.0, + 721.0, + 1010.0, + 721.0, + 1036.0, + 698.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1009.0, + 802.0, + 1009.0, + 802.0, + 1035.0, + 779.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1007.0, + 890.0, + 1007.0, + 890.0, + 1037.0, + 853.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1006.0, + 971.0, + 1006.0, + 971.0, + 1037.0, + 933.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1007.0, + 1051.0, + 1007.0, + 1051.0, + 1038.0, + 1015.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1027.0, + 984.0, + 1027.0, + 984.0, + 1057.0, + 758.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 800.0, + 1074.0, + 800.0, + 1109.0, + 294.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1074.0, + 1124.0, + 1074.0, + 1124.0, + 1109.0, + 854.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1074.0, + 1404.0, + 1074.0, + 1404.0, + 1109.0, + 1193.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1106.0, + 452.0, + 1106.0, + 452.0, + 1139.0, + 296.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 302.0, + 706.0, + 302.0, + 706.0, + 322.0, + 690.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 317.0, + 831.0, + 317.0, + 831.0, + 343.0, + 755.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 319.0, + 974.0, + 319.0, + 974.0, + 342.0, + 892.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 320.0, + 707.0, + 320.0, + 707.0, + 349.0, + 690.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 324.0, + 748.0, + 324.0, + 748.0, + 334.0, + 729.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 327.0, + 699.0, + 327.0, + 699.0, + 501.0, + 666.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 335.0, + 839.0, + 335.0, + 839.0, + 365.0, + 755.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 335.0, + 974.0, + 335.0, + 974.0, + 366.0, + 891.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 345.0, + 707.0, + 345.0, + 707.0, + 374.0, + 689.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 355.0, + 839.0, + 355.0, + 839.0, + 385.0, + 755.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 357.0, + 973.0, + 357.0, + 973.0, + 384.0, + 891.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 373.0, + 707.0, + 373.0, + 707.0, + 400.0, + 689.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 402.0, + 707.0, + 402.0, + 707.0, + 424.0, + 687.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 423.0, + 708.0, + 423.0, + 708.0, + 502.0, + 688.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 505.0, + 706.0, + 505.0, + 706.0, + 524.0, + 690.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 521.0, + 720.0, + 521.0, + 720.0, + 540.0, + 703.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 519.0, + 798.0, + 519.0, + 798.0, + 542.0, + 777.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 517.0, + 882.0, + 517.0, + 882.0, + 543.0, + 848.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 518.0, + 956.0, + 518.0, + 956.0, + 542.0, + 926.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 517.0, + 1033.0, + 517.0, + 1033.0, + 544.0, + 1001.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 535.0, + 970.0, + 535.0, + 970.0, + 561.0, + 757.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1404.0, + 582.0, + 1404.0, + 615.0, + 295.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 964.0, + 611.0, + 964.0, + 644.0, + 294.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 611.0, + 1403.0, + 611.0, + 1403.0, + 644.0, + 995.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 881.0, + 642.0, + 881.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 642.0, + 1404.0, + 642.0, + 1404.0, + 679.0, + 935.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 1404.0, + 671.0, + 1404.0, + 709.0, + 292.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 705.0, + 798.0, + 705.0, + 798.0, + 739.0, + 297.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1637.0, + 1375.0, + 1637.0, + 1375.0, + 1682.0, + 293.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 677.0, + 224.0, + 677.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1709.0, + 1407.0, + 1709.0, + 1407.0, + 1748.0, + 294.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1769.0, + 873.0, + 1769.0, + 873.0, + 1813.0, + 292.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1769.0, + 1409.0, + 1769.0, + 1409.0, + 1813.0, + 1019.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1797.0, + 670.0, + 1797.0, + 670.0, + 1842.0, + 291.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1797.0, + 763.0, + 1797.0, + 763.0, + 1842.0, + 732.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1797.0, + 1407.0, + 1797.0, + 1407.0, + 1842.0, + 825.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1334.0, + 1832.0, + 1334.0, + 1872.0, + 292.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 1832.0, + 1402.0, + 1832.0, + 1402.0, + 1872.0, + 1390.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1913.0, + 295.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 761.0, + 1972.0, + 761.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2009.0, + 814.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 972.0, + 2003.0, + 972.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 677.0, + 224.0, + 677.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 373, + 1184, + 1325, + 1184, + 1325, + 1824, + 373, + 1824 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 375, + 275, + 1327, + 275, + 1327, + 907, + 375, + 907 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 296, + 929, + 1406, + 929, + 1406, + 1056, + 296, + 1056 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 1845, + 1408, + 1845, + 1408, + 1972, + 296, + 1972 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.85 + }, + { + "category_id": 13, + "poly": [ + 781, + 932, + 832, + 932, + 832, + 961, + 781, + 961 + ], + "score": 0.92, + "latex": "I _ { \\mathrm { N C E } }" + }, + { + "category_id": 13, + "poly": [ + 1229, + 992, + 1281, + 992, + 1281, + 1022, + 1229, + 1022 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { N } \\bar { W } \\bar { J } }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1877, + 1371, + 1877, + 1371, + 1908, + 1319, + 1908 + ], + "score": 0.91, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 472, + 1906, + 979, + 1906, + 979, + 1943, + 472, + 1943 + ], + "score": 0.91, + "latex": "L _ { t } ( g _ { 1 } , g _ { 2 } ) = | I _ { \\mathrm { E S T } } ( g _ { 1 } ( X ^ { ( 1 ) } ) ; g _ { 1 } ( X ^ { ( 2 ) } ) ) - t | )" + }, + { + "category_id": 13, + "poly": [ + 718, + 967, + 785, + 967, + 785, + 994, + 718, + 994 + ], + "score": 0.9, + "latex": "g _ { 1 } , g _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1023, + 996, + 1023, + 996, + 1054, + 943, + 1054 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 1349, + 931, + 1401, + 931, + 1401, + 962, + 1349, + 962 + ], + "score": 0.9, + "latex": "I _ { \\mathrm { E S T } }" + }, + { + "category_id": 13, + "poly": [ + 883, + 932, + 936, + 932, + 936, + 962, + 883, + 962 + ], + "score": 0.89, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1023, + 350, + 1023, + 350, + 1054, + 297, + 1054 + ], + "score": 0.89, + "latex": "I _ { \\mathrm { N } \\bar { w } \\bar { s } }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1912, + 1290, + 1912, + 1290, + 1938, + 1276, + 1938 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 297, + 1911, + 312, + 1911, + 312, + 1938, + 297, + 1938 + ], + "score": 0.65, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1567, + 1300, + 1567, + 1300, + 1589, + 1212, + 1589 + ], + "score": 0.65, + "latex": "( I _ { N W J } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1357, + 1298, + 1357, + 1298, + 1377, + 1221, + 1377 + ], + "score": 0.62, + "latex": "( I _ { N W J } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 1190, + 1380, + 1266, + 1380, + 1266, + 1399, + 1190, + 1399 + ], + "score": 0.57, + "latex": "( I _ { N W J } , t = 2 )" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1402, + 1266, + 1402, + 1266, + 1422, + 1187, + 1422 + ], + "score": 0.53, + "latex": "( I _ { N W J } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 669, + 1618, + 757, + 1618, + 757, + 1640, + 669, + 1640 + ], + "score": 0.51, + "latex": "( I _ { N C E } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1618, + 1264, + 1618, + 1264, + 1640, + 1176, + 1640 + ], + "score": 0.46, + "latex": "( I _ { N W J } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 668, + 1592, + 756, + 1592, + 756, + 1614, + 668, + 1614 + ], + "score": 0.46, + "latex": "( I _ { N C E } , t = 2 )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1592, + 1263, + 1592, + 1263, + 1614, + 1176, + 1614 + ], + "score": 0.45, + "latex": "( I _ { N W J } , t = 2 )" + }, + { + "category_id": 13, + "poly": [ + 690, + 1380, + 764, + 1380, + 764, + 1399, + 690, + 1399 + ], + "score": 0.45, + "latex": "( I _ { N C E } , t = 2 )" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1337, + 1298, + 1337, + 1298, + 1355, + 1222, + 1355 + ], + "score": 0.43, + "latex": "( I _ { N W J } , t = 2 )" + }, + { + "category_id": 13, + "poly": [ + 689, + 1402, + 764, + 1402, + 764, + 1421, + 689, + 1421 + ], + "score": 0.38, + "latex": "( I _ { N C E } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 706, + 1567, + 794, + 1567, + 794, + 1589, + 706, + 1589 + ], + "score": 0.37, + "latex": "( I _ { N C E } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 721, + 1357, + 796, + 1357, + 796, + 1377, + 721, + 1377 + ], + "score": 0.35, + "latex": "( I _ { N C E } , t = 4 )" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1543, + 1298, + 1543, + 1298, + 1563, + 1212, + 1563 + ], + "score": 0.31, + "latex": "( I _ { N W J } , t = 2 )" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1218.0, + 442.0, + 1218.0, + 442.0, + 1245.0, + 396.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1218.0, + 945.0, + 1218.0, + 945.0, + 1245.0, + 898.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1224.0, + 905.0, + 1224.0, + 905.0, + 1399.0, + 873.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1226.0, + 403.0, + 1226.0, + 403.0, + 1398.0, + 371.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1257.0, + 442.0, + 1257.0, + 442.0, + 1285.0, + 396.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1260.0, + 944.0, + 1260.0, + 944.0, + 1283.0, + 899.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1297.0, + 444.0, + 1297.0, + 444.0, + 1325.0, + 396.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1297.0, + 947.0, + 1297.0, + 947.0, + 1325.0, + 898.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1336.0, + 445.0, + 1336.0, + 445.0, + 1366.0, + 394.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1331.0, + 802.0, + 1331.0, + 802.0, + 1359.0, + 651.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1336.0, + 948.0, + 1336.0, + 948.0, + 1366.0, + 896.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1331.0, + 1221.0, + 1331.0, + 1221.0, + 1359.0, + 1153.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1331.0, + 1303.0, + 1331.0, + 1303.0, + 1359.0, + 1299.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1353.0, + 720.0, + 1353.0, + 720.0, + 1381.0, + 650.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1353.0, + 801.0, + 1353.0, + 801.0, + 1381.0, + 797.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1353.0, + 1220.0, + 1353.0, + 1220.0, + 1381.0, + 1153.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1353.0, + 1304.0, + 1353.0, + 1304.0, + 1381.0, + 1299.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1373.0, + 445.0, + 1373.0, + 445.0, + 1408.0, + 393.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1374.0, + 689.0, + 1374.0, + 689.0, + 1405.0, + 649.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1374.0, + 770.0, + 1374.0, + 770.0, + 1405.0, + 765.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1375.0, + 948.0, + 1375.0, + 948.0, + 1407.0, + 896.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1374.0, + 1189.0, + 1374.0, + 1189.0, + 1405.0, + 1151.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1374.0, + 1272.0, + 1374.0, + 1272.0, + 1405.0, + 1267.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1396.0, + 688.0, + 1396.0, + 688.0, + 1427.0, + 649.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1396.0, + 770.0, + 1396.0, + 770.0, + 1427.0, + 765.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1397.0, + 1186.0, + 1397.0, + 1186.0, + 1426.0, + 1151.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1397.0, + 1272.0, + 1397.0, + 1272.0, + 1426.0, + 1267.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1417.0, + 444.0, + 1417.0, + 444.0, + 1445.0, + 395.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1417.0, + 948.0, + 1417.0, + 948.0, + 1445.0, + 897.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1438.0, + 460.0, + 1438.0, + 460.0, + 1463.0, + 438.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1437.0, + 527.0, + 1437.0, + 527.0, + 1462.0, + 493.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1437.0, + 587.0, + 1437.0, + 587.0, + 1461.0, + 548.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1437.0, + 645.0, + 1437.0, + 645.0, + 1462.0, + 610.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1435.0, + 708.0, + 1435.0, + 708.0, + 1463.0, + 670.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1435.0, + 767.0, + 1435.0, + 767.0, + 1463.0, + 731.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1437.0, + 824.0, + 1437.0, + 824.0, + 1463.0, + 792.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1438.0, + 962.0, + 1438.0, + 962.0, + 1463.0, + 940.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1437.0, + 1028.0, + 1437.0, + 1028.0, + 1462.0, + 996.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1437.0, + 1088.0, + 1437.0, + 1088.0, + 1461.0, + 1052.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 1437.0, + 1149.0, + 1437.0, + 1149.0, + 1462.0, + 1113.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1435.0, + 1210.0, + 1435.0, + 1210.0, + 1463.0, + 1172.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1435.0, + 1269.0, + 1435.0, + 1269.0, + 1463.0, + 1231.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1437.0, + 1327.0, + 1437.0, + 1327.0, + 1463.0, + 1294.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1458.0, + 753.0, + 1458.0, + 753.0, + 1485.0, + 505.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1458.0, + 1256.0, + 1458.0, + 1256.0, + 1485.0, + 1007.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1516.0, + 440.0, + 1516.0, + 440.0, + 1541.0, + 418.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1516.0, + 948.0, + 1516.0, + 948.0, + 1540.0, + 927.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1536.0, + 800.0, + 1536.0, + 800.0, + 1567.0, + 626.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1536.0, + 1211.0, + 1536.0, + 1211.0, + 1567.0, + 1133.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1536.0, + 1307.0, + 1536.0, + 1307.0, + 1567.0, + 1299.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1557.0, + 439.0, + 1557.0, + 439.0, + 1582.0, + 418.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1560.0, + 705.0, + 1560.0, + 705.0, + 1594.0, + 625.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1560.0, + 801.0, + 1560.0, + 801.0, + 1594.0, + 795.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1557.0, + 947.0, + 1557.0, + 947.0, + 1582.0, + 926.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1560.0, + 1211.0, + 1560.0, + 1211.0, + 1594.0, + 1131.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1560.0, + 1308.0, + 1560.0, + 1308.0, + 1594.0, + 1301.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1589.0, + 439.0, + 1589.0, + 439.0, + 1712.0, + 394.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1585.0, + 667.0, + 1585.0, + 667.0, + 1620.0, + 624.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1585.0, + 765.0, + 1585.0, + 765.0, + 1620.0, + 757.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1589.0, + 945.0, + 1589.0, + 945.0, + 1713.0, + 899.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1585.0, + 1175.0, + 1585.0, + 1175.0, + 1620.0, + 1131.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1585.0, + 1271.0, + 1585.0, + 1271.0, + 1620.0, + 1264.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1613.0, + 668.0, + 1613.0, + 668.0, + 1644.0, + 624.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1613.0, + 764.0, + 1613.0, + 764.0, + 1644.0, + 758.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1612.0, + 1175.0, + 1612.0, + 1175.0, + 1646.0, + 1130.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1612.0, + 1271.0, + 1612.0, + 1271.0, + 1646.0, + 1265.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1638.0, + 439.0, + 1638.0, + 439.0, + 1663.0, + 418.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1635.0, + 947.0, + 1635.0, + 947.0, + 1664.0, + 926.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1679.0, + 437.0, + 1679.0, + 437.0, + 1702.0, + 419.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1678.0, + 944.0, + 1678.0, + 944.0, + 1702.0, + 928.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1720.0, + 437.0, + 1720.0, + 437.0, + 1741.0, + 419.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1720.0, + 945.0, + 1720.0, + 945.0, + 1741.0, + 928.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1762.0, + 438.0, + 1762.0, + 438.0, + 1780.0, + 421.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1762.0, + 945.0, + 1762.0, + 945.0, + 1780.0, + 928.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1779.0, + 455.0, + 1779.0, + 455.0, + 1800.0, + 436.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1777.0, + 522.0, + 1777.0, + 522.0, + 1802.0, + 490.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1777.0, + 584.0, + 1777.0, + 584.0, + 1802.0, + 549.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1777.0, + 644.0, + 1777.0, + 644.0, + 1802.0, + 609.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1777.0, + 704.0, + 1777.0, + 704.0, + 1802.0, + 670.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1777.0, + 764.0, + 1777.0, + 764.0, + 1802.0, + 731.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1777.0, + 824.0, + 1777.0, + 824.0, + 1802.0, + 792.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1778.0, + 964.0, + 1778.0, + 964.0, + 1802.0, + 942.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1777.0, + 1030.0, + 1777.0, + 1030.0, + 1802.0, + 998.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1777.0, + 1091.0, + 1777.0, + 1091.0, + 1802.0, + 1057.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 1776.0, + 1151.0, + 1776.0, + 1151.0, + 1802.0, + 1119.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1776.0, + 1212.0, + 1776.0, + 1212.0, + 1802.0, + 1179.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1776.0, + 1272.0, + 1776.0, + 1272.0, + 1802.0, + 1239.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1777.0, + 1332.0, + 1777.0, + 1332.0, + 1804.0, + 1300.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1797.0, + 751.0, + 1797.0, + 751.0, + 1824.0, + 502.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1797.0, + 1260.0, + 1797.0, + 1260.0, + 1824.0, + 1009.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1722.5, + 1271.0, + 1722.5, + 1271.0, + 1755.5, + 1174.0, + 1755.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 284.0, + 446.0, + 284.0, + 446.0, + 314.0, + 394.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 284.0, + 947.0, + 284.0, + 947.0, + 314.0, + 896.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 313.0, + 907.0, + 313.0, + 907.0, + 486.0, + 872.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 314.0, + 405.0, + 314.0, + 405.0, + 486.0, + 370.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 323.0, + 446.0, + 323.0, + 446.0, + 355.0, + 395.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 323.0, + 947.0, + 323.0, + 947.0, + 355.0, + 896.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 363.0, + 444.0, + 363.0, + 444.0, + 395.0, + 395.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 363.0, + 947.0, + 363.0, + 947.0, + 395.0, + 896.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 404.0, + 446.0, + 404.0, + 446.0, + 434.0, + 395.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 404.0, + 947.0, + 404.0, + 947.0, + 434.0, + 896.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 444.0, + 446.0, + 444.0, + 446.0, + 474.0, + 395.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 436.0, + 752.0, + 436.0, + 752.0, + 464.0, + 705.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 444.0, + 949.0, + 444.0, + 949.0, + 474.0, + 896.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 436.0, + 1255.0, + 436.0, + 1255.0, + 464.0, + 1207.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 459.0, + 782.0, + 459.0, + 782.0, + 488.0, + 705.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 458.0, + 1285.0, + 458.0, + 1285.0, + 488.0, + 1207.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 484.0, + 446.0, + 484.0, + 446.0, + 515.0, + 394.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 483.0, + 801.0, + 483.0, + 801.0, + 511.0, + 705.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 484.0, + 949.0, + 484.0, + 949.0, + 515.0, + 896.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 481.0, + 1305.0, + 481.0, + 1305.0, + 513.0, + 1207.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 526.0, + 460.0, + 526.0, + 460.0, + 551.0, + 438.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 522.0, + 650.0, + 522.0, + 650.0, + 552.0, + 493.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 525.0, + 706.0, + 525.0, + 706.0, + 550.0, + 670.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 523.0, + 767.0, + 523.0, + 767.0, + 552.0, + 730.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 525.0, + 825.0, + 525.0, + 825.0, + 551.0, + 792.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 527.0, + 962.0, + 527.0, + 962.0, + 551.0, + 940.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 521.0, + 1153.0, + 521.0, + 1153.0, + 553.0, + 995.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 525.0, + 1208.0, + 525.0, + 1208.0, + 550.0, + 1172.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 523.0, + 1271.0, + 523.0, + 1271.0, + 552.0, + 1231.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 525.0, + 1327.0, + 525.0, + 1327.0, + 551.0, + 1294.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 544.0, + 754.0, + 544.0, + 754.0, + 575.0, + 503.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 544.0, + 1257.0, + 544.0, + 1257.0, + 573.0, + 1006.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 617.0, + 433.0, + 617.0, + 433.0, + 639.0, + 416.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 622.0, + 947.0, + 622.0, + 947.0, + 642.0, + 930.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 653.0, + 435.0, + 653.0, + 435.0, + 679.0, + 415.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 659.0, + 946.0, + 659.0, + 946.0, + 680.0, + 929.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 693.0, + 435.0, + 693.0, + 435.0, + 714.0, + 417.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 696.0, + 947.0, + 696.0, + 947.0, + 716.0, + 930.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 707.0, + 436.0, + 707.0, + 436.0, + 758.0, + 392.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 713.0, + 946.0, + 713.0, + 946.0, + 754.0, + 910.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 765.0, + 437.0, + 765.0, + 437.0, + 796.0, + 413.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 770.0, + 753.0, + 770.0, + 753.0, + 797.0, + 704.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 771.0, + 946.0, + 771.0, + 946.0, + 791.0, + 930.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 772.0, + 1262.0, + 772.0, + 1262.0, + 798.0, + 1214.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 793.0, + 783.0, + 793.0, + 783.0, + 822.0, + 705.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 792.0, + 1292.0, + 792.0, + 1292.0, + 824.0, + 1213.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 806.0, + 436.0, + 806.0, + 436.0, + 833.0, + 414.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 809.0, + 946.0, + 809.0, + 946.0, + 830.0, + 930.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 818.0, + 804.0, + 818.0, + 804.0, + 849.0, + 704.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 818.0, + 1312.0, + 818.0, + 1312.0, + 849.0, + 1213.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 843.0, + 436.0, + 843.0, + 436.0, + 867.0, + 415.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 846.0, + 946.0, + 846.0, + 946.0, + 865.0, + 930.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 862.0, + 452.0, + 862.0, + 452.0, + 887.0, + 431.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 860.0, + 522.0, + 860.0, + 522.0, + 888.0, + 486.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 859.0, + 589.0, + 859.0, + 589.0, + 888.0, + 531.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 860.0, + 645.0, + 860.0, + 645.0, + 887.0, + 593.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 860.0, + 705.0, + 860.0, + 705.0, + 888.0, + 669.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 860.0, + 767.0, + 860.0, + 767.0, + 888.0, + 730.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 861.0, + 827.0, + 861.0, + 827.0, + 887.0, + 794.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 864.0, + 964.0, + 864.0, + 964.0, + 885.0, + 945.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 862.0, + 1034.0, + 862.0, + 1034.0, + 887.0, + 999.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 860.0, + 1098.0, + 860.0, + 1098.0, + 888.0, + 1053.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 859.0, + 1156.0, + 859.0, + 1156.0, + 889.0, + 1101.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 860.0, + 1216.0, + 860.0, + 1216.0, + 888.0, + 1179.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 860.0, + 1276.0, + 860.0, + 1276.0, + 888.0, + 1240.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 860.0, + 1335.0, + 860.0, + 1335.0, + 889.0, + 1301.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 882.0, + 753.0, + 882.0, + 753.0, + 909.0, + 499.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 881.0, + 1263.0, + 881.0, + 1263.0, + 910.0, + 1011.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 926.0, + 780.0, + 926.0, + 780.0, + 970.0, + 291.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 926.0, + 882.0, + 926.0, + 882.0, + 970.0, + 833.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 926.0, + 1348.0, + 926.0, + 1348.0, + 970.0, + 937.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 926.0, + 1406.0, + 926.0, + 1406.0, + 970.0, + 1402.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 717.0, + 961.0, + 717.0, + 997.0, + 294.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 997.0, + 786.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1228.0, + 991.0, + 1228.0, + 1028.0, + 294.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 991.0, + 1407.0, + 991.0, + 1407.0, + 1028.0, + 1282.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1022.0, + 942.0, + 1022.0, + 942.0, + 1058.0, + 351.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1022.0, + 1234.0, + 1022.0, + 1234.0, + 1058.0, + 997.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1875.0, + 1318.0, + 1875.0, + 1318.0, + 1911.0, + 293.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1875.0, + 1405.0, + 1875.0, + 1405.0, + 1911.0, + 1372.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1906.0, + 296.0, + 1906.0, + 296.0, + 1944.0, + 291.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 1906.0, + 471.0, + 1906.0, + 471.0, + 1944.0, + 313.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1906.0, + 1275.0, + 1906.0, + 1275.0, + 1944.0, + 980.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1906.0, + 1409.0, + 1906.0, + 1409.0, + 1944.0, + 1291.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1937.0, + 1245.0, + 1937.0, + 1245.0, + 1977.0, + 293.0, + 1977.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": [ + 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 + } + } +] \ No newline at end of file diff --git a/parse/train/rylejExC-/images/0d03a19add085f9ccec2571a862e404a0ad01dca0784570d0bb203ed7362e4f0.jpg b/parse/train/rylejExC-/images/0d03a19add085f9ccec2571a862e404a0ad01dca0784570d0bb203ed7362e4f0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03d9ebdb0a859e59ffbf758ce9eb0454e452db23 --- /dev/null +++ b/parse/train/rylejExC-/images/0d03a19add085f9ccec2571a862e404a0ad01dca0784570d0bb203ed7362e4f0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d115156cf70fac6d78ad4265540bd67797af106c0d1ffdeef21fec6ab4399f98 +size 33105 diff --git a/parse/train/rylejExC-/images/2d844f98c5e7bf242feca6951e82fc492f3fcaa000acb949408d959a784874e1.jpg b/parse/train/rylejExC-/images/2d844f98c5e7bf242feca6951e82fc492f3fcaa000acb949408d959a784874e1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c70c347fd3c19a7a813f18112b7cbdfd5e1453b7 --- /dev/null +++ b/parse/train/rylejExC-/images/2d844f98c5e7bf242feca6951e82fc492f3fcaa000acb949408d959a784874e1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5fc0325a3c39b746115541b974257cf5eaafd8097f35fe39d98209c352b8d1f +size 27485 diff --git a/parse/train/rylejExC-/images/395ee67ed00ab2fb85c7840fd12c086e648a6bfafa487b278a899dd0c0702177.jpg b/parse/train/rylejExC-/images/395ee67ed00ab2fb85c7840fd12c086e648a6bfafa487b278a899dd0c0702177.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6415c0908d13b76394e155f38cf027a669cefa1d --- /dev/null +++ b/parse/train/rylejExC-/images/395ee67ed00ab2fb85c7840fd12c086e648a6bfafa487b278a899dd0c0702177.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c1718e4b22a9c26e1867619784b521502d471f41e067fd016f6de1fc70fce68 +size 13669 diff --git a/parse/train/rylejExC-/images/4bc8cf5597c23141f033a79e48276aaa81219cf52fc55ac9f93ed6c24177b2ad.jpg b/parse/train/rylejExC-/images/4bc8cf5597c23141f033a79e48276aaa81219cf52fc55ac9f93ed6c24177b2ad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a12d729dc021d2b6bbbc7a38d7f5440bc152e08 --- /dev/null +++ b/parse/train/rylejExC-/images/4bc8cf5597c23141f033a79e48276aaa81219cf52fc55ac9f93ed6c24177b2ad.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c62a19d8897717e07e5ead59e1cf4097dc4bacaf069c13db31d44ed3ec85111 +size 39971 diff --git a/parse/train/rylejExC-/images/4e4d3bb4ef4db6d52106afe3e8c6d1d60076f30b8004db84f845cd09b2ce62d7.jpg b/parse/train/rylejExC-/images/4e4d3bb4ef4db6d52106afe3e8c6d1d60076f30b8004db84f845cd09b2ce62d7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..da20aa462631ee712d3682cf76d77bd096f0d1d9 --- /dev/null +++ b/parse/train/rylejExC-/images/4e4d3bb4ef4db6d52106afe3e8c6d1d60076f30b8004db84f845cd09b2ce62d7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede8c379fa7384db02b36a808baeb701e4abd3168978177ecdce33df3d16fdd9 +size 16597 diff --git a/parse/train/rylejExC-/images/534d64c080219da6b9bdca23ce75a547273ff55c0d33acf05b5f416a982ead0b.jpg b/parse/train/rylejExC-/images/534d64c080219da6b9bdca23ce75a547273ff55c0d33acf05b5f416a982ead0b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a087f774ab985dfd35356b9e757d04d62f37c705 --- /dev/null +++ b/parse/train/rylejExC-/images/534d64c080219da6b9bdca23ce75a547273ff55c0d33acf05b5f416a982ead0b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6dd62ab51b3e40d4bf657a9121fc0712539ba831f344c0c941df6e0798aafed +size 14314 diff --git a/parse/train/rylejExC-/images/5f15dae75475f8561b6af694b02f3b734c9ffbb8d3c6efd37acccbcf52276c68.jpg b/parse/train/rylejExC-/images/5f15dae75475f8561b6af694b02f3b734c9ffbb8d3c6efd37acccbcf52276c68.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9c09f5d7c0eb184fc58ec7f4ad3708c09e8faee --- /dev/null +++ b/parse/train/rylejExC-/images/5f15dae75475f8561b6af694b02f3b734c9ffbb8d3c6efd37acccbcf52276c68.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22deceaf22209069482c0f33209b82dcf4487e427471d3ad861c9b2ffa251315 +size 16270 diff --git a/parse/train/rylejExC-/images/6901b4ee0f413f3ad5eddce9c8e6cc4cd8e706f86ee8e8a50815fa300ae62096.jpg b/parse/train/rylejExC-/images/6901b4ee0f413f3ad5eddce9c8e6cc4cd8e706f86ee8e8a50815fa300ae62096.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c684e63f240e187c993bb87f21362ae0e70bdaf --- /dev/null +++ b/parse/train/rylejExC-/images/6901b4ee0f413f3ad5eddce9c8e6cc4cd8e706f86ee8e8a50815fa300ae62096.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934e17bd2cb3f121b3fe203b32777d3d57b74e50c73097caaf697dc3b54e790f +size 23744 diff --git a/parse/train/rylejExC-/images/6faba5fdabb32af3ac46bceac8711a4be94f80504795f5d2b0a88128021e1628.jpg b/parse/train/rylejExC-/images/6faba5fdabb32af3ac46bceac8711a4be94f80504795f5d2b0a88128021e1628.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f16727b15ad7f5bb033060f6b03428e34cd18a28 --- /dev/null +++ b/parse/train/rylejExC-/images/6faba5fdabb32af3ac46bceac8711a4be94f80504795f5d2b0a88128021e1628.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a159580b86b0a5a0f5272540c3784be8e3446d5b55ac385e0a724f2ff567c956 +size 17151 diff --git a/parse/train/rylejExC-/images/8ea7fb4cd079d70c2001068f7f075d8fb449beb2275545575bbda4c29522b8e4.jpg b/parse/train/rylejExC-/images/8ea7fb4cd079d70c2001068f7f075d8fb449beb2275545575bbda4c29522b8e4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d780e1a976e8ab08a7a2b3f782d73442f2095aa8 --- /dev/null +++ b/parse/train/rylejExC-/images/8ea7fb4cd079d70c2001068f7f075d8fb449beb2275545575bbda4c29522b8e4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768566245d5f73b642cb274968b5397f42a19c7b743b5a16ead3c64b245e0390 +size 10524 diff --git a/parse/train/rylejExC-/images/8f30b209fc6cb8655d40238e89c2393f4f10c45c1eee987d82cd0dfc93ca90f6.jpg b/parse/train/rylejExC-/images/8f30b209fc6cb8655d40238e89c2393f4f10c45c1eee987d82cd0dfc93ca90f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..219e169f1834d1220820a7aebdfb6eb50e7fa338 --- /dev/null +++ b/parse/train/rylejExC-/images/8f30b209fc6cb8655d40238e89c2393f4f10c45c1eee987d82cd0dfc93ca90f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7b2241e466e3cde941e1bc4514fac905769a55be07042e4e23b8df2dc376f1 +size 4567 diff --git a/parse/train/rylejExC-/images/93a2fa06d9f041f0d66031f0b246e394d42b5edef49ab14d08406934de129bb6.jpg b/parse/train/rylejExC-/images/93a2fa06d9f041f0d66031f0b246e394d42b5edef49ab14d08406934de129bb6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b7ad8583750ef584ee79290c1a1e03ee2184af81 --- /dev/null +++ b/parse/train/rylejExC-/images/93a2fa06d9f041f0d66031f0b246e394d42b5edef49ab14d08406934de129bb6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2f1692f1ca9bd09f8af8f49c23937c4497f68ca9c79ee81b9f97c04ff50fea +size 7793 diff --git a/parse/train/rylejExC-/images/93ed757cb3ad2de4c16531568cc8c9fe42590062ec79cda36f0e64f3b4ab4d28.jpg b/parse/train/rylejExC-/images/93ed757cb3ad2de4c16531568cc8c9fe42590062ec79cda36f0e64f3b4ab4d28.jpg new file mode 100644 index 0000000000000000000000000000000000000000..df0239497fd8779c3a889eb40570d8257ed91c9e --- /dev/null +++ b/parse/train/rylejExC-/images/93ed757cb3ad2de4c16531568cc8c9fe42590062ec79cda36f0e64f3b4ab4d28.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8b4cb5fe8b968e74d3928d6e735d45d426443cb5ed0f87d691c3bc9c893fb8 +size 36445 diff --git a/parse/train/rylejExC-/images/946f66d9865f5c9820d74e950e403cf879f173efe883305f0dc61919736cf575.jpg b/parse/train/rylejExC-/images/946f66d9865f5c9820d74e950e403cf879f173efe883305f0dc61919736cf575.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a46be18ecc571f2ae77bbf54dc03fa2945bf6239 --- /dev/null +++ b/parse/train/rylejExC-/images/946f66d9865f5c9820d74e950e403cf879f173efe883305f0dc61919736cf575.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65283b3c57d53c836176796e005902e9e1614cbfd2ccf1b9fa9cdd1a937ab23 +size 69327 diff --git a/parse/train/rylejExC-/images/94cc6870bd1eadfe5d143d926ba8f9aa085986179e8a227d6d7ac2067e1e0e06.jpg b/parse/train/rylejExC-/images/94cc6870bd1eadfe5d143d926ba8f9aa085986179e8a227d6d7ac2067e1e0e06.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ce31ad523ae52939283ef518b5e062f27fd8e65 --- /dev/null +++ b/parse/train/rylejExC-/images/94cc6870bd1eadfe5d143d926ba8f9aa085986179e8a227d6d7ac2067e1e0e06.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc8f57ea2eef55a77f89e0f5e8abd64597311180bd6293b39e803a03642860a +size 10357 diff --git a/parse/train/rylejExC-/images/9a3c35df71adac980c980b79c84c0d381197ae677eed73c6c244b6f8f727a7bd.jpg b/parse/train/rylejExC-/images/9a3c35df71adac980c980b79c84c0d381197ae677eed73c6c244b6f8f727a7bd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ecb88ac7c89320cc28fdceea74bd602877566bdf --- /dev/null +++ b/parse/train/rylejExC-/images/9a3c35df71adac980c980b79c84c0d381197ae677eed73c6c244b6f8f727a7bd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814c73510ec0ae451f9ab067f4fd4891a6c70d2c8b37422e8e3d44f231420136 +size 30808 diff --git a/parse/train/rylejExC-/images/9e01141a8001a3e78d7e263040869454238d0c81d45486664dc019732bb6b9b8.jpg b/parse/train/rylejExC-/images/9e01141a8001a3e78d7e263040869454238d0c81d45486664dc019732bb6b9b8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fcf612293155d20e4d8bd5a9b16f40491b53d81 --- /dev/null +++ b/parse/train/rylejExC-/images/9e01141a8001a3e78d7e263040869454238d0c81d45486664dc019732bb6b9b8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1562de6b7514d1765a0ab71f869bc41ccf2f99a26ef87318498984882436b84e +size 37280 diff --git a/parse/train/rylejExC-/images/ad661ecdabe8229d0410a67a14bd4e6484eefad86a2b2c0b82e2392f3777018e.jpg b/parse/train/rylejExC-/images/ad661ecdabe8229d0410a67a14bd4e6484eefad86a2b2c0b82e2392f3777018e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a18c8eb85d4701d5b07b8681a9b0db8223399b8 --- /dev/null +++ b/parse/train/rylejExC-/images/ad661ecdabe8229d0410a67a14bd4e6484eefad86a2b2c0b82e2392f3777018e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eae366bf797651ae238bdf2c6c97497abb438bf6bffe4bb4569a44a44270da6 +size 14942 diff --git a/parse/train/rylejExC-/images/b1ecde2a148e5f0a7179d2d77ae40829a74f8ae28b08122641a4f93d77c4067b.jpg b/parse/train/rylejExC-/images/b1ecde2a148e5f0a7179d2d77ae40829a74f8ae28b08122641a4f93d77c4067b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33498aa6cd547907aaf94ba1453e6730e867c76f --- /dev/null +++ b/parse/train/rylejExC-/images/b1ecde2a148e5f0a7179d2d77ae40829a74f8ae28b08122641a4f93d77c4067b.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d90247f3631f6f8c3b3c82d5dabe95c4b38369c4c64ad6771b582ebdbf886f +size 11702 diff --git a/parse/train/rylejExC-/images/b694e5f9581ff6776c71e72a3827955a13fd81b95d6e5cef63d1a26380b0c62f.jpg b/parse/train/rylejExC-/images/b694e5f9581ff6776c71e72a3827955a13fd81b95d6e5cef63d1a26380b0c62f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5aaa85dc2378559b100fcfc1b99e7bc4302ef96f --- /dev/null +++ b/parse/train/rylejExC-/images/b694e5f9581ff6776c71e72a3827955a13fd81b95d6e5cef63d1a26380b0c62f.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cbf013470a843688bbaafbe5a59ee12f81d67cec30977797e922db4d2bfd3c +size 7462 diff --git a/parse/train/rylejExC-/images/c3742762dd675969166d04f7a0f3c286c06d2f297e2dbf3cb683da6e7f6869f3.jpg b/parse/train/rylejExC-/images/c3742762dd675969166d04f7a0f3c286c06d2f297e2dbf3cb683da6e7f6869f3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4f792b4b152308bd35d0979221928be983c4e09 --- /dev/null +++ b/parse/train/rylejExC-/images/c3742762dd675969166d04f7a0f3c286c06d2f297e2dbf3cb683da6e7f6869f3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e44d53a22e039aa566470ed82fd6bd9b2219652f3e18da0cf9f135afeb585e +size 10972 diff --git a/parse/train/rylejExC-/images/c737ffa06276db0355e0752e5f4052f9344fe583fe9afca0125db0dc326c5d8e.jpg b/parse/train/rylejExC-/images/c737ffa06276db0355e0752e5f4052f9344fe583fe9afca0125db0dc326c5d8e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dd6ccc41d5723fda2aacda477cf950a6193beba2 --- /dev/null +++ b/parse/train/rylejExC-/images/c737ffa06276db0355e0752e5f4052f9344fe583fe9afca0125db0dc326c5d8e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c9ef5869e2f82d216390924274b360e16aeb66f4d225fd6730a4491da39758 +size 4542 diff --git a/parse/train/rylejExC-/images/e433a81ffc53ecde468e30007af3135a68fb611d8f9a498e7bef991ecb01db03.jpg b/parse/train/rylejExC-/images/e433a81ffc53ecde468e30007af3135a68fb611d8f9a498e7bef991ecb01db03.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1aaa803f403f4dc14c49c26f50d1b2ab833c49cc --- /dev/null +++ b/parse/train/rylejExC-/images/e433a81ffc53ecde468e30007af3135a68fb611d8f9a498e7bef991ecb01db03.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6079cfdee77da241f305cda1b03de0fedd24b5fb3d348920110bb139ca324cfd +size 3618 diff --git a/parse/train/rylejExC-/images/e5b5badf346a1a8e4d4fa3635ed2c1409dc900f5bd575b8b059f01caa8caa92c.jpg b/parse/train/rylejExC-/images/e5b5badf346a1a8e4d4fa3635ed2c1409dc900f5bd575b8b059f01caa8caa92c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a4866363446a966896602424012e57e07eab9e --- /dev/null +++ b/parse/train/rylejExC-/images/e5b5badf346a1a8e4d4fa3635ed2c1409dc900f5bd575b8b059f01caa8caa92c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe14adabb010c8f71606f19341231c3e9039414720ac6a94c30c2f457d35f88 +size 11376 diff --git a/parse/train/zx_uX-BO7CH/images/02a39ac69e1b7c100554577a28f59db2d8568360c81387ea8ec48e1940c51a5e.jpg b/parse/train/zx_uX-BO7CH/images/02a39ac69e1b7c100554577a28f59db2d8568360c81387ea8ec48e1940c51a5e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..849f7322b0c16359e9f491ec7b37255f36945ed9 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/02a39ac69e1b7c100554577a28f59db2d8568360c81387ea8ec48e1940c51a5e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867100049fc8c1515e1d6a3d2a3a99af9eeb2a68c338aa105e1ed06c85073141 +size 131328 diff --git a/parse/train/zx_uX-BO7CH/images/0392d3e551a712777caaa05a38fde3b46ea34f7749d64dbb4cb4fa5be859fad5.jpg b/parse/train/zx_uX-BO7CH/images/0392d3e551a712777caaa05a38fde3b46ea34f7749d64dbb4cb4fa5be859fad5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..371e3ed0c916b4924aa2b08fb4cb6fb153b842b2 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/0392d3e551a712777caaa05a38fde3b46ea34f7749d64dbb4cb4fa5be859fad5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845ca0b37b3ae79518ab5a36e413dbaab9f725d66a544a4fac7052e8fdbbf62f +size 27171 diff --git a/parse/train/zx_uX-BO7CH/images/214c38fb7de1099766cf5d70088ffef6abc87ce2a46332420cbbdc31ae82fb92.jpg b/parse/train/zx_uX-BO7CH/images/214c38fb7de1099766cf5d70088ffef6abc87ce2a46332420cbbdc31ae82fb92.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa8ab10aedf5f7df0dda62bfd49391043ce2e603 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/214c38fb7de1099766cf5d70088ffef6abc87ce2a46332420cbbdc31ae82fb92.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cabf20a90af6843d6b9ba9a92b1cf10444c0996b0773138ef7a2753874a8d6 +size 3709 diff --git a/parse/train/zx_uX-BO7CH/images/228431edfe146e3a405d00d039d51876f1c531be5477264e9c59b07730a7acf0.jpg b/parse/train/zx_uX-BO7CH/images/228431edfe146e3a405d00d039d51876f1c531be5477264e9c59b07730a7acf0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bacfae2310401337209b21bb439c9f472bb335b3 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/228431edfe146e3a405d00d039d51876f1c531be5477264e9c59b07730a7acf0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fd85eec20cc645e6eca75d0e80c48953777eb34074b206a35fe2156490f392 +size 185123 diff --git a/parse/train/zx_uX-BO7CH/images/3944d09c5ef6977c3ff4c7b0194e00641fa3d9e1a5ebda5bb4bdb9bc37394c13.jpg b/parse/train/zx_uX-BO7CH/images/3944d09c5ef6977c3ff4c7b0194e00641fa3d9e1a5ebda5bb4bdb9bc37394c13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a39653c36c11f59b205d571e881ff7b9f9621207 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/3944d09c5ef6977c3ff4c7b0194e00641fa3d9e1a5ebda5bb4bdb9bc37394c13.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:becdfe9da4c944a54ffedf2cae4a5d6ecb859f0ced9ae1d20145aa61fce83dcb +size 4744 diff --git a/parse/train/zx_uX-BO7CH/images/3ad2c6bef9420e80c74bdab358685d2ee664eafb38effff8e5b54325dba06571.jpg b/parse/train/zx_uX-BO7CH/images/3ad2c6bef9420e80c74bdab358685d2ee664eafb38effff8e5b54325dba06571.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fc1989b46bb7447f7542093e29ed9c720fc317c --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/3ad2c6bef9420e80c74bdab358685d2ee664eafb38effff8e5b54325dba06571.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d9bf73667b0bcad00c24943b66ae48e7a6c3e910ae0033349051feb95654fa +size 5244 diff --git a/parse/train/zx_uX-BO7CH/images/3c843e7012b34452a38dfabdeb02c57f6648d52d367fb26cf228859fb32903b4.jpg b/parse/train/zx_uX-BO7CH/images/3c843e7012b34452a38dfabdeb02c57f6648d52d367fb26cf228859fb32903b4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c8047ccb06598540c35709aa0773a81965ace75 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/3c843e7012b34452a38dfabdeb02c57f6648d52d367fb26cf228859fb32903b4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebe455f05170309cabc3284430af9e57dbee48c053a9c109bca51e081805195 +size 16079 diff --git a/parse/train/zx_uX-BO7CH/images/45f43d4a7c51da691465a47e7c616ff702ad6cd9f8e36d81e824791ce440fcf9.jpg b/parse/train/zx_uX-BO7CH/images/45f43d4a7c51da691465a47e7c616ff702ad6cd9f8e36d81e824791ce440fcf9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0472a32f5d019024ee42f320e0a10f0beb916a0 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/45f43d4a7c51da691465a47e7c616ff702ad6cd9f8e36d81e824791ce440fcf9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e884ed0c38758b8e11bea4b55ca0d2b0e8e0b745885a9ae5d9fb67750a598c3a +size 51564 diff --git a/parse/train/zx_uX-BO7CH/images/4e993108c421d46f0161ae330a7e5ce5cacf754e63a090310dd8e25aca25ddb2.jpg b/parse/train/zx_uX-BO7CH/images/4e993108c421d46f0161ae330a7e5ce5cacf754e63a090310dd8e25aca25ddb2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3dc9f26062c859f1bf5d834c982b38a4c363d265 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/4e993108c421d46f0161ae330a7e5ce5cacf754e63a090310dd8e25aca25ddb2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61617d0a868897429fbe3c9e124d6e3c6a8e2ca05dc4438041116b4712bb4f5 +size 9915 diff --git a/parse/train/zx_uX-BO7CH/images/53175591f79b9c3a7c066c72304ccfbad8f254d03201387e529b1a4ba08c29ec.jpg b/parse/train/zx_uX-BO7CH/images/53175591f79b9c3a7c066c72304ccfbad8f254d03201387e529b1a4ba08c29ec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85e86dff68e6cef3363f2191dc7f3e9bf7538500 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/53175591f79b9c3a7c066c72304ccfbad8f254d03201387e529b1a4ba08c29ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ebc979d9392084c4318429ab5a2093cd43498ce2da37205f260148cfe1bc9e +size 159132 diff --git a/parse/train/zx_uX-BO7CH/images/59e938c877c687cdd00b4b05f56c19cda3ffd2f17106100df01ffad6c97db6a9.jpg b/parse/train/zx_uX-BO7CH/images/59e938c877c687cdd00b4b05f56c19cda3ffd2f17106100df01ffad6c97db6a9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5a840c38c0b8f610623c6f43d10093ea6b1d6c3 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/59e938c877c687cdd00b4b05f56c19cda3ffd2f17106100df01ffad6c97db6a9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a068db7f418bd5fe67c7ee67e29f989a5d02a63baf9326b8cc99660ccc43c2a5 +size 8149 diff --git a/parse/train/zx_uX-BO7CH/images/5b2d2ca4c7d304de9b3be174965c42114903612ac3241e24a50f1872aab69ce0.jpg b/parse/train/zx_uX-BO7CH/images/5b2d2ca4c7d304de9b3be174965c42114903612ac3241e24a50f1872aab69ce0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3e4f27a4c152b3309452f0d8f954f001817a6456 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/5b2d2ca4c7d304de9b3be174965c42114903612ac3241e24a50f1872aab69ce0.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f3e53b079eaebf637be810b4655a51ca82088d86cab27df5c43313349123ff +size 46781 diff --git a/parse/train/zx_uX-BO7CH/images/64df215022aa0603cae03017ff12020e944a66ebdd9744d515ac86064bd54757.jpg b/parse/train/zx_uX-BO7CH/images/64df215022aa0603cae03017ff12020e944a66ebdd9744d515ac86064bd54757.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b5337136e7e3e070ed04892738079cd5a61326da --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/64df215022aa0603cae03017ff12020e944a66ebdd9744d515ac86064bd54757.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e15ea8f82e739a467f311dce2330c9149765119d206e8e89a68b6e5065d009 +size 34056 diff --git a/parse/train/zx_uX-BO7CH/images/71512d91f6d33cb4b0f08a5906a60afdce9ad8405f20c70a8a7c05b6dd98bbc5.jpg b/parse/train/zx_uX-BO7CH/images/71512d91f6d33cb4b0f08a5906a60afdce9ad8405f20c70a8a7c05b6dd98bbc5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..92db305292c6349e89988f285f67457f99e52ea2 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/71512d91f6d33cb4b0f08a5906a60afdce9ad8405f20c70a8a7c05b6dd98bbc5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cf5b152fefcb90ce51af67da52083540e3cb65496e4e82d4d77c70ba907bb4 +size 7930 diff --git a/parse/train/zx_uX-BO7CH/images/8a4cdb014d90fe65974aebc4a840dc3fd5383b35c71b9954d8cc597ff069b4f6.jpg b/parse/train/zx_uX-BO7CH/images/8a4cdb014d90fe65974aebc4a840dc3fd5383b35c71b9954d8cc597ff069b4f6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f26c916fb10196915bcdacf451ff2b68ab55d905 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/8a4cdb014d90fe65974aebc4a840dc3fd5383b35c71b9954d8cc597ff069b4f6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd5846682fedbb7719cccbdb689cf5fe0e7867dcf4f24c40884b946099092c2 +size 6294 diff --git a/parse/train/zx_uX-BO7CH/images/93cf48c6fd8c82137d064aad17acb54d093d3204e5ce168903b77e652ff02cbf.jpg b/parse/train/zx_uX-BO7CH/images/93cf48c6fd8c82137d064aad17acb54d093d3204e5ce168903b77e652ff02cbf.jpg new file mode 100644 index 0000000000000000000000000000000000000000..32c982ee0309c7336deb64fe003c5c0f6824ce0d --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/93cf48c6fd8c82137d064aad17acb54d093d3204e5ce168903b77e652ff02cbf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af360e2d5667157665f8f34ec01b1a10433ede83e5f37ef8c161d5b8259509b9 +size 73822 diff --git a/parse/train/zx_uX-BO7CH/images/9d53d6a5f05df5a97c5bffb4d8e8a4bdbe62e6ac3f6aaa8cca7085e30465d698.jpg b/parse/train/zx_uX-BO7CH/images/9d53d6a5f05df5a97c5bffb4d8e8a4bdbe62e6ac3f6aaa8cca7085e30465d698.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58bdb144b1b07cd9a2db5aee63a50d11c5927fc8 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/9d53d6a5f05df5a97c5bffb4d8e8a4bdbe62e6ac3f6aaa8cca7085e30465d698.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc3b40fd37e331c7670aebd8486a22a41c2d1184161aa9185adc50c6d8aed55 +size 12082 diff --git a/parse/train/zx_uX-BO7CH/images/a19ffa3bab8b4c6dc4728a6391fdbaeb613bacd26966e17ae783a2914899ebca.jpg b/parse/train/zx_uX-BO7CH/images/a19ffa3bab8b4c6dc4728a6391fdbaeb613bacd26966e17ae783a2914899ebca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e56bf04f489a34a60b8019a8b9787201793bf92 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/a19ffa3bab8b4c6dc4728a6391fdbaeb613bacd26966e17ae783a2914899ebca.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5968e2a19e4e259bb416a79236f6adf15c39d16a2d9b16c0a269b1e3086c006 +size 4127 diff --git a/parse/train/zx_uX-BO7CH/images/c8c621e637a1c56f5c13352c7c1e24bc67cfc2bccbdf39123afd1e22c635b490.jpg b/parse/train/zx_uX-BO7CH/images/c8c621e637a1c56f5c13352c7c1e24bc67cfc2bccbdf39123afd1e22c635b490.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dffc996123e1c927b001337185c8200914cb4863 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/c8c621e637a1c56f5c13352c7c1e24bc67cfc2bccbdf39123afd1e22c635b490.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49601896b44127910a8f903f0a398b142f00423ec259f76b62d878022204c02 +size 46687 diff --git a/parse/train/zx_uX-BO7CH/images/cbe76dfec4d861528219cf9b8d31e220de75d6e0812edd1d5f659e02b01b3d0d.jpg b/parse/train/zx_uX-BO7CH/images/cbe76dfec4d861528219cf9b8d31e220de75d6e0812edd1d5f659e02b01b3d0d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ba0702de1ef784a788662961e444d84f4eacf0fb --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/cbe76dfec4d861528219cf9b8d31e220de75d6e0812edd1d5f659e02b01b3d0d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d34ff9029c11b6a206f8b53efe75d60db24d7132ca209555ac00566fd4378b +size 4961 diff --git a/parse/train/zx_uX-BO7CH/images/db0d9276ddc19bcd9e53ef4159d8225b1d36508f264c36e96fd7e6ab8db654c5.jpg b/parse/train/zx_uX-BO7CH/images/db0d9276ddc19bcd9e53ef4159d8225b1d36508f264c36e96fd7e6ab8db654c5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3c56f51c904c36efcea40677b24a0a3b40c9c0a --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/db0d9276ddc19bcd9e53ef4159d8225b1d36508f264c36e96fd7e6ab8db654c5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3408ddcd8a3cec9ad06840c43f6dbc4ab8082d61f138a799a6455b44df283c97 +size 53278 diff --git a/parse/train/zx_uX-BO7CH/images/f15de14547ae25768725103c6aa9307f6389580291515c7e4d901ffa7a14485a.jpg b/parse/train/zx_uX-BO7CH/images/f15de14547ae25768725103c6aa9307f6389580291515c7e4d901ffa7a14485a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45dfdb898680b4e59bfb794dae4a3f7ef6cfd075 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/f15de14547ae25768725103c6aa9307f6389580291515c7e4d901ffa7a14485a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0627609dabf938356ae7d37b0a3e192692f6128ef0bf53a362482a592d5e51f +size 44352 diff --git a/parse/train/zx_uX-BO7CH/images/f7cb8936981c7e14586f9ea00126c731ab43466cd8b3e785f8ed164838a22614.jpg b/parse/train/zx_uX-BO7CH/images/f7cb8936981c7e14586f9ea00126c731ab43466cd8b3e785f8ed164838a22614.jpg new file mode 100644 index 0000000000000000000000000000000000000000..54584a92c70ff655a1093dd2e9f1dba715d77d0f --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/f7cb8936981c7e14586f9ea00126c731ab43466cd8b3e785f8ed164838a22614.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99994f58b8c324a7bd94a1c77d22614c9586717a6207fe3a3444ba86a116d507 +size 9073 diff --git a/parse/train/zx_uX-BO7CH/images/fa8d1723bbbb63a69512199d827e0a6c260e86c4e15e10f8c439cc372f7752de.jpg b/parse/train/zx_uX-BO7CH/images/fa8d1723bbbb63a69512199d827e0a6c260e86c4e15e10f8c439cc372f7752de.jpg new file mode 100644 index 0000000000000000000000000000000000000000..218c5dc1f830d00233c3ef4fc703608e4e390288 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/fa8d1723bbbb63a69512199d827e0a6c260e86c4e15e10f8c439cc372f7752de.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3603de3974527c1c05c7985cc4fde547b9e7c3d85b1856d1142b63961ab126a +size 6759 diff --git a/parse/train/zx_uX-BO7CH/images/fb3eb3083244e94ef306e7936c835983b5096bfdb50580f03ead9c995e1ec302.jpg b/parse/train/zx_uX-BO7CH/images/fb3eb3083244e94ef306e7936c835983b5096bfdb50580f03ead9c995e1ec302.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aa8462c3f71966801744208af016a7a7ae173946 --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/fb3eb3083244e94ef306e7936c835983b5096bfdb50580f03ead9c995e1ec302.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2cb6107981fc24fc3d832ff7f6b53248e32f25f1767e49d7f2506d139046847 +size 277154 diff --git a/parse/train/zx_uX-BO7CH/images/fb7cb9cd004d0dd6963a1e8b62f4a2c14487d39f7f7dd0c455ac61f7b60cf38a.jpg b/parse/train/zx_uX-BO7CH/images/fb7cb9cd004d0dd6963a1e8b62f4a2c14487d39f7f7dd0c455ac61f7b60cf38a.jpg new file mode 100644 index 0000000000000000000000000000000000000000..012e1a97fe5fd471c73fe596a736c696a8206c0c --- /dev/null +++ b/parse/train/zx_uX-BO7CH/images/fb7cb9cd004d0dd6963a1e8b62f4a2c14487d39f7f7dd0c455ac61f7b60cf38a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976b4b95c8f67e94ead0a948a5fd397f7c16befbf5bb4ce3c87d0bd0cc516f1e +size 13106